diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 57bdc60f2f9e..c1e6a0480cb2 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -1,7 +1,7 @@ name: 🐛 Bug Report description: | Describe your problem here. -labels: [bug] +type: "bug" body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 18489e986b0c..2ce3e4bd9aed 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,7 +1,7 @@ name: 🚀 Feature Request description: | What feature would you like to see added to Mixxx? -labels: [feature] +type: "feature" body: - type: markdown attributes: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 315377015fba..c7a532cb4a31 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,6 +31,10 @@ on: required: false MACOS_NOTARIZATION_APP_SPECIFIC_PASSWORD: required: false + ANDROID_SIGNING_KEYSTORE_BASE64: + required: false + ANDROID_SIGNING_PASSWORD: + required: false NETLIFY_BUILD_HOOK: required: false RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY: @@ -173,11 +177,36 @@ jobs: artifacts_slug: windows-winarm qt_qpa_platform: windows arch: arm64 + - name: Android 15 arm64 + os: ubuntu-24.04 + # DBUILD_TESTING=OFF: error: OpenMP support and version of OpenMP (31, 40 or 45) differs + cmake_args: >- + -DBULK=ON + -DQT6=ON + -DQML=ON + -DHID=ON + -DVCPKG_TARGET_TRIPLET=arm64-android + -DVCPKG_DEFAULT_HOST_TRIPLET=x64-linux-release + -DCMAKE_SYSTEM_NAME=Android + -DBUILD_TESTING=OFF + -DBUILD_BENCH=OFF + buildenv_basepath: /home/runner/buildenv + buildenv_script: tools/android_buildenv.sh + artifacts_name: Android 15 APK + artifacts_path: build/android-build/build/outputs/apk/release/*.apk + artifacts_slug: android-15 + compiler_cache: ccache + compiler_cache_path: /home/runner/.cache/ccache + crosscompile: true + arch: arm64 env: # macOS codesigning MACOS_CODESIGN_CERTIFICATE_P12_BASE64: ${{ secrets.MACOS_CODESIGN_CERTIFICATE_P12_BASE64 }} MACOS_CODESIGN_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CODESIGN_CERTIFICATE_PASSWORD }} + # Android signing + ANDROID_SIGNING_KEYSTORE_BASE64: ${{ secrets.ANDROID_SIGNING_KEYSTORE_BASE64 }} + ANDROID_SIGNING_PASSWORD: ${{ secrets.ANDROID_SIGNING_PASSWORD }} runs-on: ${{ matrix.os }} name: ${{ matrix.name }} @@ -279,6 +308,33 @@ jobs: echo "CMAKE_ARGS_EXTRA=${CMAKE_ARGS_EXTRA} -DAPPLE_CODESIGN_IDENTITY=${APPLE_CODESIGN_IDENTITY}" >> "${GITHUB_ENV}" echo "APPLE_CODESIGN_IDENTITY=${APPLE_CODESIGN_IDENTITY}" >> $GITHUB_ENV + - name: "[android] Setup signing key" + if: startsWith(matrix.artifacts_slug, 'android') + run: | + if [ -z "${ANDROID_SIGNING_KEYSTORE_BASE64}" ]; then + # If no signing key is available (e.g running on a fork), generate a temporary key + keytool \ + -genkey \ + -keystore mixxx.keystore \ + -alias mixxx \ + -keyalg RSA \ + -keysize 2048 \ + -validity 365 \ + -keypass mixxxandroid \ + -storepass mixxxandroid \ + -dname "CN=${{ github.actor }}" + echo "QT_ANDROID_KEYSTORE_ALIAS=mixxx" >> $GITHUB_ENV + echo "QT_ANDROID_KEYSTORE_KEY_PASS=mixxxandroid" >> $GITHUB_ENV + echo "QT_ANDROID_KEYSTORE_STORE_PASS=mixxxandroid" >> $GITHUB_ENV + echo "QT_ANDROID_KEYSTORE_PATH=${{ github.workspace }}/mixxx.keystore" >> $GITHUB_ENV + else + echo "${{ env.ANDROID_SIGNING_KEYSTORE_BASE64 }}" | base64 -d > ${{ github.workspace }}/mixxx.keystore + echo "QT_ANDROID_KEYSTORE_ALIAS=mixxx" >> $GITHUB_ENV + echo "QT_ANDROID_KEYSTORE_KEY_PASS=${{ env.ANDROID_SIGNING_PASSWORD }}" >> $GITHUB_ENV + echo "QT_ANDROID_KEYSTORE_STORE_PASS=${{ env.ANDROID_SIGNING_PASSWORD }}" >> $GITHUB_ENV + echo "QT_ANDROID_KEYSTORE_PATH=${{ github.workspace }}/mixxx.keystore" >> $GITHUB_ENV + fi + - name: "[macOS/Linux] Set up build environment" if: matrix.buildenv_script != null && runner.os != 'Windows' run: ${{ matrix.buildenv_script }} setup @@ -312,6 +368,29 @@ jobs: ${{ matrix.compiler_cache }} --max-size=2G if: runner.os != 'windows' + # Remove unused pre-installed software as the runner runs out of space otherwise + # Currently freeing up about 17.7G, ~20% + - name: "[android] Free up disk space" + if: startsWith(matrix.artifacts_slug, 'android') + run: | + sudo apt-get autoremove -y && sudo apt-get clean + sudo rm -rf /home/packer # Free up 677M + sudo rm -rf /opt/az # Free up 649M + sudo rm -rf /opt/google # Free up 378M + sudo rm -rf /opt/hostedtoolcache/CodeQL # Free up 1.6G + sudo rm -rf /opt/hostedtoolcache/go # Free up 808M + sudo rm -rf /opt/hostedtoolcache/node # Free up 532M + sudo rm -rf /opt/hostedtoolcache/PyPy # Free up 520M + sudo rm -rf /opt/hostedtoolcache/Python # Free up 1.5G + sudo rm -rf /opt/microsoft # Free up 781M + sudo rm -rf /opt/pipx # Free up 499M + sudo rm -rf /usr/lib/google-cloud-sdk # Free up 957M + sudo rm -rf /usr/local/julia1.11.7 # Free up 996M + sudo rm -rf /usr/local/share/powershell # Free up 1.3G + sudo rm -rf /usr/share/dotnet # Free up 3.4G + sudo rm -rf /usr/share/swift # Free up 3.2G + sudo rm -rf /usr/local/share/vcpkg # Size unknown, but obvious duplicate + - name: "Create build directory" run: mkdir build @@ -424,7 +503,7 @@ jobs: path: ${{ github.workspace }}/build/_CPack_Packages/win64/WIX/wix.log - name: "[Ubuntu] Import PPA GPG key" - if: startsWith(matrix.os, 'ubuntu') && env.RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY != null + if: startsWith(matrix.os, 'ubuntu') && matrix.crosscompile != true && env.RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY != null run: gpg --import <(echo "${{ secrets.RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY }}") env: RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY: ${{ secrets.RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY }} @@ -496,6 +575,15 @@ jobs: --dest-url 'https://downloads.mixxx.org' ${{ matrix.artifacts_path }} + # TODO create a F-droid repo? + # - name: fdroid nightly + # run: | + # sudo add-apt-repository ppa:fdroid/fdroidserver + # sudo apt-get update + # sudo apt-get install apksigner fdroidserver --no-install-recommends + # export DEBUG_KEYSTORE=$ + # fdroid nightly --archive-older 10 + # Warning: do not move this step before restoring caches or it will break caching due to # https://github.com/actions/cache/issues/531 - name: "[Windows] Install rsync and openssh" @@ -549,9 +637,9 @@ jobs: ssh-keyscan "${SSH_HOST}" >> "${HOME}/.ssh/known_hosts" echo "SSH_AUTH_SOCK=${SSH_AUTH_SOCK}" >> "${GITHUB_ENV}" - - name: "[macOS/Windows] Upload build to downloads.mixxx.org" + - name: "[Android/macOS/Windows] Upload build to downloads.mixxx.org" # skip deploying Ubuntu builds to downloads.mixxx.org because these are deployed to the PPA - if: runner.os != 'Linux' && inputs.publish && env.SSH_AUTH_SOCK != null + if: startsWith(matrix.artifacts_slug, 'ubuntu') != true && inputs.publish && env.SSH_AUTH_SOCK != null shell: bash --login -eo pipefail "{0}" run: rsync --verbose --recursive --checksum --times --delay-updates "deploy/" "${SSH_USER}@${SSH_HOST}:${DESTDIR}/" env: diff --git a/.github/workflows/download_cleanup.yml b/.github/workflows/download_cleanup.yml index 5e79705e9e01..724614343ffa 100644 --- a/.github/workflows/download_cleanup.yml +++ b/.github/workflows/download_cleanup.yml @@ -27,71 +27,21 @@ jobs: mkdir empty_folder echo 2.5.1 >> include_file.txt echo 2.5.1/manifest.json >> include_file.txt - echo 2.5.1/mixxx-2.6-alpha-174-g2c2dda9781-win64* >> include_file.txt - echo AzureCodeSigning >> include_file.txt - echo AzureCodeSigning/manifest.json >> include_file.txt - echo AzureCodeSigning/mixxx-2.6-alpha-* >> include_file.txt - echo CAStreamBasicDescription >> include_file.txt - echo CAStreamBasicDescription/manifest.json >> include_file.txt - echo CAStreamBasicDescription/mixxx-2.4.1-46-* >> include_file.txt - echo PR_13709 >> include_file.txt - echo PR_13709/manifest.json >> include_file.txt - echo PR_13709/mixxx-2.4.1-81-* >> include_file.txt - echo azure_signing_update >> include_file.txt - echo azure_signing_update/manifest.json >> include_file.txt - echo azure_signing_update/mixxx-2.4.1-61-* >> include_file.txt - echo chore >> include_file.txt - echo chore/upgrade-macos13-xcode15.2 >> include_file.txt - echo chore/upgrade-macos13-xcode15.2/manifest.json >> include_file.txt - echo chore/upgrade-macos13-xcode15.2/mixxx-2.6-alpha-76-* >> include_file.txt - echo daschuer-patch-1 >> include_file.txt - echo daschuer-patch-1/manifest.json >> include_file.txt - echo daschuer-patch-1/mixxx-2.6-alpha-284-* >> include_file.txt - echo dependabot >> include_file.txt - echo dependabot/github_actions >> include_file.txt - echo dependabot/github_actions/actions >> include_file.txt - echo dependabot/github_actions/actions/stale-6 >> include_file.txt - echo dependabot/github_actions/actions/stale-6/manifest.json >> include_file.txt - echo dependabot/github_actions/actions/stale-6/mixxx-2.4-alpha-1318-* >> include_file.txt - echo dependabot/github_actions/actions/upload-artifact-3.1.2 >> include_file.txt - echo dependabot/github_actions/actions/upload-artifact-3.1.2/manifest.json >> include_file.txt - echo dependabot/github_actions/actions/upload-artifact-3.1.2/mixxx-2.3.3-117-* >> include_file.txt - echo fix-14326 >> include_file.txt - echo fix-14326/manifest.json >> include_file.txt - echo fix-14326/mixxx-2.5.0-68-* >> include_file.txt - echo inpulse >> include_file.txt - echo inpulse/manifest.json >> include_file.txt - echo inpulse/mixxx-2.* >> include_file.txt - echo pr >> include_file.txt - echo pr/13709 >> include_file.txt - echo pr/13709/manifest.json >> include_file.txt - echo pr/13709/mixxx-2.4.1-81-* >> include_file.txt - echo resolve-from-urls-2.5 >> include_file.txt - echo resolve-from-urls-2.5/manifest.json >> include_file.txt - echo resolve-from-urls-2.5/mixxx-2.5-beta-100-* >> include_file.txt - echo revert-13208-gh13206 >> include_file.txt - echo revert-13208-gh13206/mixxx-2.4.1-5-gc71a48b76e-* >> include_file.txt - echo revert-13271-revert-13208-gh13206 >> include_file.txt - echo revert-13271-revert-13208-gh13206/mixxx-2.4.1-6-* >> include_file.txt - echo rg-use-opengl-node-and-add-shaders >> include_file.txt - echo rg-use-opengl-node-and-add-shaders/manifest.json >> include_file.txt - echo rg-use-opengl-node-and-add-shaders/mixxx-2.6-alpha-* >> include_file.txt - echo traktor-s3-updates >> include_file.txt - echo traktor-s3-updates/manifest.json >> include_file.txt - echo traktor-s3-updates/mixxx-2.6-alpha-* >> include_file.txt - echo ts_source_copy_check >> include_file.txt - echo ts_source_copy_check/manifest.json >> include_file.txt - echo ts_source_copy_check/mixxx-2.4.1-42-* >> include_file.txt - echo tsan-fix-13893 >> include_file.txt - echo tsan-fix-13893/manifest.json >> include_file.txt - echo tsan-fix-13893/mixxx-2.5-beta-83-* >> include_file.txt - echo tsan-fix-13895 >> include_file.txt - echo tsan-fix-13895/manifest.json >> include_file.txt - echo tsan-fix-13895/mixxx-2.5-beta-83-* >> include_file.txt - echo waveformwidgetinfo >> include_file.txt - echo waveformwidgetinfo/mixxx-2.5-alpha-3* >> include_file.txt rsync --verbose --archive --times --recursive --delete --include-from=include_file.txt --exclude=* "empty_folder/" "${SSH_USER}@${SSH_HOST}:${DESTDIR}/snapshots/" env: DESTDIR: public_html/downloads SSH_HOST: downloads-hostgator.mixxx.org SSH_USER: mixxx + + - name: Move manifest + if: env.SSH_AUTH_SOCK != null + run: | + ssh "${SSH_USER}@${SSH_HOST}" " + set -euo pipefail + mv ${DESTDIR}/releases/2.5.3-3-g7a940a8588/manifest.json ${DESTDIR}/releases/2.5.3/manifest.json + rm -rf ${DESTDIR}/releases/2.5.3-3-g7a940a8588 + " + env: + DESTDIR: public_html/downloads + SSH_HOST: downloads-hostgator.mixxx.org + SSH_USER: mixxx diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c38ef10995b..a2acd7f688fa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,6 +42,8 @@ jobs: MACOS_CODESIGN_CERTIFICATE_P12_BASE64: ${{ secrets.MACOS_CODESIGN_CERTIFICATE_P12_BASE64 }} MACOS_CODESIGN_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CODESIGN_CERTIFICATE_PASSWORD }} MACOS_NOTARIZATION_APP_SPECIFIC_PASSWORD: ${{ secrets.MACOS_NOTARIZATION_APP_SPECIFIC_PASSWORD }} + ANDROID_SIGNING_KEYSTORE_BASE64: ${{ secrets.ANDROID_SIGNING_KEYSTORE_BASE64 }} + ANDROID_SIGNING_PASSWORD: ${{ secrets.ANDROID_SIGNING_PASSWORD }} NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }} RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY: ${{ secrets.RRYAN_AT_MIXXX_DOT_ORG_GPG_PRIVATE_KEY }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3b77b37d6090..f9c7f3edf76a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -126,7 +126,7 @@ repos: - id: prettier types: [yaml] - repo: https://github.com/qarmin/qml_formatter.git - rev: 37c2513b1b8275a475a160ed2f5b044910335d5f # No release tag yet including #6 fix + rev: 706250038bb565f4c630ca3aab09f764faabae67 # No release tag yet including #9 fix hooks: - id: qml_formatter - repo: https://github.com/BlankSpruce/gersemi @@ -168,6 +168,8 @@ repos: language: system types: [text] files: ^.*\.qml$ + stages: + - manual - id: metainfo name: metainfo description: Update AppStream metainfo releases from CHANGELOG.md. diff --git a/.tx/config b/.tx/config index 2fec46c1f484..7b5c8801a000 100644 --- a/.tx/config +++ b/.tx/config @@ -1,7 +1,7 @@ [main] host = https://www.transifex.com -[o:mixxx-dj-software:p:mixxxdj:r:mixxx2-6] +[o:mixxx-dj-software:p:mixxxdj:r:mixxx2-7] file_filter = res/translations/mixxx_.ts source_file = res/translations/mixxx.ts source_lang = en diff --git a/CHANGELOG.md b/CHANGELOG.md index 297cd016c9e7..6390472c51f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## [2.7.0](https://github.com/mixxxdj/mixxx/milestone/47) (Unreleased) + ## [2.6.0](https://github.com/mixxxdj/mixxx/milestone/44) (Unreleased) ### STEM file support diff --git a/CMakeLists.txt b/CMakeLists.txt index 01aa82d514fd..387627f1ba77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,6 +36,11 @@ if(POLICY CMP0099) cmake_policy(SET CMP0099 NEW) endif() +# Add support for cmake_dependent_option +if(POLICY CMP0127) + cmake_policy(SET CMP0127 NEW) +endif() + # An imported target missing its location property fails during generation. if(POLICY CMP0111) cmake_policy(SET CMP0111 NEW) @@ -48,7 +53,54 @@ if(POLICY CMP0135) cmake_policy(SET CMP0135 NEW) endif() -if(((APPLE AND NOT IOS) OR WIN32) AND NOT IS_DIRECTORY "${MIXXX_VCPKG_ROOT}") +if(CMAKE_SYSTEM_NAME STREQUAL Android) + if(NOT DEFINED ENV{JAVA_HOME}) + message(FATAL_ERROR "JAVA_HOME is not set. Did you source the setup file?") + endif() + if((NOT CMAKE_ANDROID_NDK) AND DEFINED ENV{ANDROID_NDK_HOME}) + set(CMAKE_ANDROID_NDK "$ENV{ANDROID_NDK_HOME}") + endif() + set(ANDROID ON) + if(DEFINED ENV{QT_ANDROID_KEYSTORE_PATH}) + set(QT_ANDROID_SIGN_APK ON) + endif() + + set(QT_ANDROID_APP_PATH "$") + set( + QT_ANDROID_APP_PACKAGE_SOURCE_ROOT + "${CMAKE_SOURCE_DIR}/packaging/android" + ) + + if((NOT ANDROID_SDK_ROOT) AND DEFINED ENV{ANDROID_SDK}) + set(ANDROID_SDK_ROOT "$ENV{ANDROID_SDK}") + endif() + set(ANDROID_ABI arm64-v8a) + set(ANDROID_NDK_HOST_SYSTEM_NAME linux-x86_64) + set(CMAKE_SYSTEM_VERSION 35) # API level + set(ANDROID_PLATFORM "android-${CMAKE_SYSTEM_VERSION}") + set(ANDROID_API_VERSION "android-${CMAKE_SYSTEM_VERSION}") + set(CMAKE_ANDROID_ARCH_ABI "${ANDROID_ABI}") # or x86_64, armeabi-v7a, etc. + set(CMAKE_ANDROID_NDK_TOOLCHAIN_VERSION clang) + set(CMAKE_ANDROID_STL_TYPE c++_shared) + set( + CMAKE_SYSROOT + "${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/sysroot" + ) + include_directories( + BEFORE + SYSTEM + "${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/sysroot/usr/include/" + ) + set( + CMAKE_LIBRARY_PATH + "${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/sysroot/usr/lib/aarch64-linux-android/${CMAKE_SYSTEM_VERSION}/;${CMAKE_LIBRARY_PATH}" + ) +endif() + +if( + ((APPLE AND NOT IOS) OR WIN32 OR ANDROID) + AND NOT IS_DIRECTORY "${MIXXX_VCPKG_ROOT}" +) if(NOT DEFINED BUILDENV_BASEPATH) if(DEFINED ENV{BUILDENV_BASEPATH}) set(BUILDENV_BASEPATH "$ENV{BUILDENV_BASEPATH}") @@ -172,7 +224,7 @@ function(fatal_error_missing_env) "Did you download the Mixxx build environment using `source ${CMAKE_SOURCE_DIR}/tools/macos_release_buildenv.sh setup` or `source ${CMAKE_SOURCE_DIR}/tools/macos_buildenv.sh setup` (includes Debug)?" ) endif() - elseif(UNIX AND NOT APPLE) + elseif(UNIX AND NOT APPLE AND NOT ANDROID) # Linux, BSD, Solaris, Minix if(EXISTS "/etc/debian_version") # exists also on Ubuntu and Mint message( @@ -284,8 +336,8 @@ set( # Set a default build type if none was specified # See https://blog.kitware.com/cmake-and-the-default-build-type/ for details. set(default_build_type "RelWithDebInfo") -if(EXISTS "${CMAKE_SOURCE_DIR}/.git" AND NOT WIN32) - # On Windows, Debug builds are linked to unoptimized libs +if(EXISTS "${CMAKE_SOURCE_DIR}/.git" AND NOT WIN32 AND NOT ANDROID) + # On Windows and Android, Debug builds are linked to unoptimized libs # generating unusable slow Mixxx builds. set(default_build_type "Debug") endif() @@ -319,14 +371,13 @@ endif() include(CMakeDependentOption) option(QT6 "Build with Qt6" ON) - -# Because of multiple concurrent definition of symbols caused by the rendergraph -# compile definition we need to disable QML by default. This avoids the risk of -# undefined behaviour in a stable build. -# See: https://github.com/mixxxdj/mixxx/issues/14766 -# Once this is fixed we can revert the commit introducing this. -option(QML "Build with QML" OFF) - +cmake_dependent_option( + QML + "Build with QML" + ON + "QT6" + OFF +) option(QOPENGL "Use QOpenGLWindow based widget instead of QGLWidget" ON) if(QOPENGL) @@ -431,9 +482,9 @@ elseif(APPLE) endif() endif() -project(mixxx VERSION 2.6.0 LANGUAGES C CXX) +project(mixxx VERSION 2.7.0 LANGUAGES C CXX) # Work around missing version suffixes support https://gitlab.kitware.com/cmake/cmake/-/issues/16716 -set(MIXXX_VERSION_PRERELEASE "beta") # set to "alpha" "beta" or "" +set(MIXXX_VERSION_PRERELEASE "alpha") # set to "alpha" "beta" or "" set(CMAKE_PROJECT_HOMEPAGE_URL "https://www.mixxx.org") set( @@ -947,7 +998,7 @@ else() else() message(STATUS "Could NOT find ccache (missing executable)") endif() - default_option(CCACHE_SUPPORT "Enable ccache support" "CCACHE_EXECUTABLE") + default_option(CCACHE_SUPPORT "Enable ccache support" "CCACHE_EXECUTABLE;NOT ANDROID") if(NOT DEFINED CMAKE_DISABLE_PRECOMPILE_HEADERS) set(CMAKE_DISABLE_PRECOMPILE_HEADERS ${CCACHE_SUPPORT}) @@ -1014,7 +1065,7 @@ if(NOT MSVC) set(MOLD_SYMLINK_FOUND TRUE) endif() default_option(MOLD_SUPPORT "Use 'mold' for linking" "MOLD_FUSE_FOUND OR MOLD_SYMLINK_FOUND") - if(MOLD_SUPPORT) + if(MOLD_SUPPORT AND NOT ANDROID) if(MOLD_FUSE_FOUND) message(STATUS "Selecting mold as linker") add_link_options("-fuse-ld=mold") @@ -1193,6 +1244,7 @@ add_library( src/effects/backends/builtin/metronomeclick.cpp src/effects/backends/builtin/moogladder4filtereffect.cpp src/effects/backends/builtin/compressoreffect.cpp + src/effects/backends/builtin/autogaincontroleffect.cpp src/effects/backends/builtin/parametriceqeffect.cpp src/effects/backends/builtin/phasereffect.cpp src/effects/backends/builtin/reverbeffect.cpp @@ -1657,6 +1709,7 @@ add_library( src/widget/wbasewidget.cpp src/widget/wbattery.cpp src/widget/wbeatspinbox.cpp + src/widget/wbpmeditor.cpp src/widget/wcollapsiblegroupbox.cpp src/widget/wcolorpicker.cpp src/widget/wcolorpickeraction.cpp @@ -1729,6 +1782,8 @@ add_library( src/widget/wwidget.cpp src/widget/wwidgetgroup.cpp src/widget/wwidgetstack.cpp + src/controllers/scripting/javascriptplayerproxy.cpp + src/controllers/scripting/javascriptplayerproxy.h ) set(MIXXX_COMMON_PRECOMPILED_HEADER src/util/assert.h) set( @@ -2244,6 +2299,8 @@ if(WIN32) elseif(UNIX) if(APPLE) target_compile_definitions(mixxx-lib PUBLIC __APPLE__) + elseif(ANDROID) + target_compile_definitions(mixxx-lib PUBLIC __ANDROID__) else() target_compile_definitions(mixxx-lib PUBLIC __UNIX__) if(CMAKE_SYSTEM_NAME STREQUAL Linux) @@ -2265,7 +2322,92 @@ if(QT6) # below that takes care of the correct object order in the resulting binary # According to https://doc.qt.io/qt-6/qt-finalize-target.html it is importand for # builds with Qt < 3.21 - qt_add_executable(mixxx WIN32 src/main.cpp MANUAL_FINALIZATION) + if(ANDROID) + target_compile_definitions( + mixxx-lib + PUBLIC __STDC_CONSTANT_MACROS __STDC_LIMIT_MACROS __STDC_FORMAT_MACROS + ) + set_property(TARGET mixxx-lib PROPERTY ANDROID_ABIS "arm64-v8a") + target_compile_definitions( + mixxx-lib + PUBLIC ANDROID_PACKAGE_NAME="org.mixxx" + ) + qt_add_executable(mixxx src/main.cpp MANUAL_FINALIZATION) + set_property( + TARGET mixxx + PROPERTY + QT_ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_SOURCE_DIR}/packaging/android" + ) + set_target_properties(mixxx PROPERTIES QT_ANDROID_ABIS "${ANDROID_ABI}") + set_target_properties(mixxx PROPERTIES QT_ANDROID_PACKAGE_NAME "org.mixxx") + set_target_properties( + mixxx + PROPERTIES QT_ANDROID_VERSION_NAME "${MIXXX_VERSION}" + ) + set_target_properties( + mixxx + PROPERTIES + QT_ANDROID_APPLICATION_ARGUMENTS "--qml --log-level debug --developer" + ) + qt_add_android_permission(mixxx + NAME android.permission.ACCESS_NETWORK_STATE + ) + qt_add_android_permission(mixxx + NAME android.permission.INTERNET + ) + qt_add_android_permission(mixxx + NAME android.permission.MODIFY_AUDIO_SETTINGS + ) + qt_add_android_permission(mixxx + NAME android.permission.RECORD_AUDIO + ) + qt_add_android_permission(mixxx + NAME android.permission.WRITE_EXTERNAL_STORAGE + ) + qt_add_android_permission(mixxx + NAME android.permission.MANAGE_EXTERNAL_STORAGE + ) + qt_add_android_permission(mixxx + NAME android.permission.WAKE_LOCK + ) + qt_add_android_permission(mixxx + NAME android.permission.USB_PERMISSION + ) + set( + CMAKE_LINKER + "${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/bin/ld" + ) + set( + CMAKE_C_COMPILER + "${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/bin/clang" + ) + set( + CMAKE_CXX_COMPILER + "${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/bin/clang++" + ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fPIC") + set_target_properties( + mixxx + PROPERTIES + QT_ANDROID_EXTRA_LIBS + ${CMAKE_ANDROID_NDK}/toolchains/llvm/prebuilt/${ANDROID_NDK_HOST_SYSTEM_NAME}/lib/clang/18/lib/linux/aarch64/libomp.so + ) + add_custom_target( + copy-resource-android + COMMENT "Copy resources folder to Android build asset directory" + COMMAND + ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/packaging/android + ${CMAKE_CURRENT_BINARY_DIR}/android + COMMAND + ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/res + ${CMAKE_CURRENT_BINARY_DIR}/android-build/assets + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + ) + add_dependencies(mixxx copy-resource-android) + target_link_libraries(mixxx PUBLIC omp) + else() + qt_add_executable(mixxx WIN32 src/main.cpp MANUAL_FINALIZATION) + endif() else() find_package(Qt5 COMPONENTS Core) # For Qt Core cmake functions # This is the first package form the environment, if this fails give hints how to install the environment @@ -2354,37 +2496,41 @@ if(WIN32) include(InstallRequiredSystemLibraries) endif() -install( - TARGETS mixxx - RUNTIME DESTINATION "${MIXXX_INSTALL_BINDIR}" - BUNDLE DESTINATION . -) +if(NOT ANDROID) + install( + TARGETS mixxx + RUNTIME DESTINATION "${MIXXX_INSTALL_BINDIR}" + BUNDLE DESTINATION . + ) -# Skins -install( - DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/skins" - DESTINATION "${MIXXX_INSTALL_DATADIR}" -) + # Skins + install( + DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/skins" + DESTINATION "${MIXXX_INSTALL_DATADIR}" + ) -# Controller mappings -install( - DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/controllers" - DESTINATION "${MIXXX_INSTALL_DATADIR}" -) + # Controller mappings + install( + DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/controllers" + DESTINATION "${MIXXX_INSTALL_DATADIR}" + ) -# Effect presets -install( - DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/effects" - DESTINATION "${MIXXX_INSTALL_DATADIR}" -) + # Effect presets + install( + DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/effects" + DESTINATION "${MIXXX_INSTALL_DATADIR}" + ) -# Translation files -install( - DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/translations" - DESTINATION "${MIXXX_INSTALL_DATADIR}" - FILES_MATCHING - PATTERN "*.qm" -) + # Translation files + install( + DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/res/translations" + DESTINATION "${MIXXX_INSTALL_DATADIR}" + FILES_MATCHING + PATTERN "*.qm" + ) + # else() + # qt_finalize_target(mixxx-lib) +endif() # Font files # @@ -2800,12 +2946,20 @@ if(BUILD_TESTING) add_executable(mixxx-test ${src-mixxx-test}) + if(HID) + target_sources( + mixxx-test + PRIVATE src/test/controller_hid_reportdescriptor_test.cpp + ) + endif() + if(QML) target_sources( mixxx-test PRIVATE src/test/controller_mapping_file_handler_test.cpp src/test/controllerrenderingengine_test.cpp + src/test/qmlcontrolproxytest.cpp ) endif() @@ -3025,7 +3179,7 @@ option(ENGINEPRIME "Support for library export to Denon Engine Prime" ON) if(ENGINEPRIME) # libdjinterop does not currently have a stable ABI, so we fetch sources for a specific tag, build here, and link # statically. This situation should be reviewed once libdjinterop hits version 1.x. - set(LIBDJINTEROP_VERSION 0.26.1) + set(LIBDJINTEROP_VERSION 0.27.0) # Look whether an existing installation of libdjinterop matches the required version. find_package(DjInterop ${LIBDJINTEROP_VERSION} EXACT CONFIG) if(NOT DjInterop_FOUND) @@ -3088,7 +3242,7 @@ if(ENGINEPRIME) "https://github.com/xsco/libdjinterop/archive/refs/tags/${LIBDJINTEROP_VERSION}.tar.gz" "https://launchpad.net/~xsco/+archive/ubuntu/djinterop/+sourcefiles/libdjinterop/${LIBDJINTEROP_VERSION}-0ubuntu1/libdjinterop_${LIBDJINTEROP_VERSION}.orig.tar.gz" URL_HASH - SHA256=f4fbe728783c14acdc999b74ce3f03d680f9187e1ff676d6bf1233fdb64ae7b2 + SHA256=c4e73bf3907fd45be1c9767bcd9f367cbb7c279b4fe047bf2216bc92ae3d1668 DOWNLOAD_DIR "${CMAKE_CURRENT_BINARY_DIR}/downloads" DOWNLOAD_NAME "libdjinterop-${LIBDJINTEROP_VERSION}.tar.gz" PREFIX "libdjinterop-${LIBDJINTEROP_VERSION}" @@ -3403,8 +3557,8 @@ else() set(CMAKE_FIND_FRAMEWORK FIRST) endif() set(OpenGL_GL_PREFERENCE "GLVND") - find_package(OpenGL REQUIRED) if(EMSCRIPTEN) + find_package(OpenGL REQUIRED) # Emscripten's FindOpenGL.cmake does not create OpenGL::GL target_link_libraries(mixxx-lib PRIVATE ${OPENGL_gl_LIBRARY}) target_compile_definitions(mixxx-lib PUBLIC QT_OPENGL_ES_2) @@ -3415,8 +3569,17 @@ else() mixxx-lib PUBLIC -sMIN_WEBGL_VERSION=2 -sMAX_WEBGL_VERSION=2 -sFULL_ES2=1 ) + elseif(ANDROID) + find_library(GLESv2_LIBRARY GLESv2) + target_link_libraries(mixxx-lib PRIVATE "${GLESv2_LIBRARY}") + target_compile_definitions(mixxx-lib PUBLIC QT_OPENGL_ES_2) else() - target_link_libraries(mixxx-lib PRIVATE OpenGL::GL) + find_package(WrapOpenGL REQUIRED) + if(OPENGL_opengl_LIBRARY) + target_link_libraries(mixxx-lib PRIVATE OpenGL::OpenGL) + else() + target_link_libraries(mixxx-lib PRIVATE OpenGL::GL) + endif() endif() if(UNIX AND QGLES2) target_compile_definitions(mixxx-lib PUBLIC QT_OPENGL_ES_2) @@ -3442,6 +3605,11 @@ target_link_libraries( find_package(PortAudio REQUIRED) target_link_libraries(mixxx-lib PUBLIC PortAudio::PortAudio) +if(ANDROID) + target_link_libraries(mixxx-lib PUBLIC OpenSLES android) + target_compile_definitions(mixxx-lib PUBLIC PA_USE_OBOE) +endif() + # PortAudio Ring Buffer add_library( PortAudioRingBuffer @@ -3453,7 +3621,7 @@ target_include_directories(mixxx-lib SYSTEM PUBLIC lib/portaudio) target_link_libraries(mixxx-lib PRIVATE PortAudioRingBuffer) # PortMidi -option(PORTMIDI "Enable the PortMidi backend for MIDI controllers" ON) +default_option(PORTMIDI "Enable the PortMidi backend for MIDI controllers" "NOT ANDROID") if(PORTMIDI) target_compile_definitions(mixxx-lib PUBLIC __PORTMIDI__) find_package(PortMidi REQUIRED) @@ -3544,6 +3712,10 @@ if(QT_EXTRA_COMPONENTS) endforeach() endif() +if(QT_KNOWN_POLICY_QTP0002 AND ANDROID) + qt6_policy(SET QTP0002 NEW) +endif() + if(QML) if(QT_KNOWN_POLICY_QTP0004) # See: https://doc.qt.io/qt-6/qt-cmake-policy-qtp0004.html @@ -3559,6 +3731,15 @@ if(QML) set(QT_QML_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/qml) qt_add_library(mixxx-qml-lib STATIC) + + if(WIN32) + target_compile_definitions(mixxx-qml-lib PUBLIC __WINDOWS__) + endif() + + if(ENGINEPRIME) + target_compile_definitions(mixxx-qml-lib PUBLIC __ENGINEPRIME__) + endif() + foreach(component ${QT_COMPONENTS}) target_link_libraries( mixxx-qml-lib @@ -3631,23 +3812,31 @@ if(QML) src/qml/qmlapplication.cpp src/qml/qmlautoreload.cpp src/qml/qmlbeatsmodel.cpp - src/qml/qmlcuesmodel.cpp - src/qml/qmlcontrolproxy.cpp + src/qml/qmlchainpresetmodel.cpp src/qml/qmlconfigproxy.cpp + src/qml/qmlcontrolproxy.cpp + src/qml/qmlcuesmodel.cpp src/qml/qmldlgpreferencesproxy.cpp src/qml/qmleffectmanifestparametersmodel.cpp - src/qml/qmleffectsmanagerproxy.cpp src/qml/qmleffectslotproxy.cpp + src/qml/qmleffectsmanagerproxy.cpp src/qml/qmllibraryproxy.cpp + src/qml/qmllibrarysource.cpp + src/qml/qmllibrarysourcetree.cpp src/qml/qmllibrarytracklistmodel.cpp + src/qml/qmlmixxxcontrollerscreen.cpp src/qml/qmlplayermanagerproxy.cpp src/qml/qmlplayerproxy.cpp + src/qml/qmlsidebarmodelproxy.cpp + src/qml/qmllibrarytracklistcolumn.cpp + src/qml/qmltrackproxy.cpp src/qml/qmlvisibleeffectsmodel.cpp - src/qml/qmlchainpresetmodel.cpp - src/qml/qmlwaveformoverview.cpp - src/qml/qmlmixxxcontrollerscreen.cpp src/qml/qmlwaveformdisplay.cpp + src/qml/qmlwaveformoverview.cpp src/qml/qmlwaveformrenderer.cpp + src/qml/qmlsettingparameter.cpp + src/qml/qmltrackproxy.cpp + src/qml/qmlsoundmanagerproxy.cpp src/waveform/renderers/allshader/digitsrenderer.cpp src/waveform/renderers/allshader/waveformrenderbeat.cpp src/waveform/renderers/allshader/waveformrenderer.cpp @@ -4107,7 +4296,7 @@ if(APPLE) # Used for battery measurements and controlling the screensaver on macOS. target_link_libraries(mixxx-lib PRIVATE "-weak_framework IOKit") endif() -elseif(UNIX AND NOT APPLE AND NOT EMSCRIPTEN) +elseif(UNIX AND NOT APPLE AND NOT EMSCRIPTEN AND NOT ANDROID) if(QT6) find_package(X11) else() @@ -4118,6 +4307,7 @@ elseif(UNIX AND NOT APPLE AND NOT EMSCRIPTEN) if(${X11_FOUND}) target_include_directories(mixxx-lib SYSTEM PUBLIC "${X11_INCLUDE_DIR}") target_link_libraries(mixxx-lib PRIVATE "${X11_LIBRARIES}") + target_compile_definitions(mixxx-lib PUBLIC __X11__) endif() find_package(Qt${QT_VERSION_MAJOR} COMPONENTS DBus REQUIRED) target_link_libraries(mixxx-lib PUBLIC Qt${QT_VERSION_MAJOR}::DBus) @@ -4332,6 +4522,9 @@ if(RUBBERBAND) find_package(rubberband REQUIRED) target_link_libraries(mixxx-lib PRIVATE rubberband::rubberband) target_compile_definitions(mixxx-lib PUBLIC __RUBBERBAND__) + if(QML) + target_compile_definitions(mixxx-qml-lib PUBLIC __RUBBERBAND__) + endif() target_sources( mixxx-lib PRIVATE @@ -4382,7 +4575,7 @@ cmake_dependent_option( BATTERY "Battery meter support" ON - "WIN32 OR UNIX" + "WIN32 OR (UNIX AND NOT ANDROID)" OFF ) if(BATTERY) @@ -4832,10 +5025,21 @@ if(HID) src/controllers/hid/hidiooutputreport.cpp src/controllers/hid/hiddevice.cpp src/controllers/hid/hidenumerator.cpp + src/controllers/hid/hidreportdescriptor.cpp src/controllers/hid/hidusagetables.cpp src/controllers/hid/legacyhidcontrollermapping.cpp src/controllers/hid/legacyhidcontrollermappingfilehandler.cpp ) + + if(ANDROID) + target_sources(mixxx-lib PRIVATE src/controllers/android.cpp) + else() + # Android doesn't support QWidget and is not able to compile this manager due to compiler lacking support for structure binding (error: capturing a structured binding is not yet supported) + target_sources( + mixxx-lib + PRIVATE src/controllers/controllerhidreporttabsmanager.cpp + ) + endif() target_compile_definitions(mixxx-lib PUBLIC __HID__) endif() @@ -4894,7 +5098,14 @@ if(VINYLCONTROL) add_library(mixxx-xwax STATIC EXCLUDE_FROM_ALL) target_sources( mixxx-xwax - PRIVATE lib/xwax/timecoder.c lib/xwax/lut.c lib/xwax/pitch_kalman.c + PRIVATE + lib/xwax/timecoder.c + lib/xwax/timecoder_mk2.c + lib/xwax/lut.c + lib/xwax/lut_mk2.c + lib/xwax/filters.c + lib/xwax/delayline.c + lib/xwax/pitch_kalman.c ) target_include_directories(mixxx-xwax SYSTEM PUBLIC lib/xwax) target_link_libraries(mixxx-lib PRIVATE mixxx-xwax) diff --git a/LICENSE b/LICENSE index 006f0725fcc2..1bfecb19b6d8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Mixxx 2.6-beta, Digital DJ'ing software. +Mixxx 2.7-alpha, Digital DJ'ing software. Copyright (C) 2001-2025 Mixxx Development Team Mixxx is free software; you can redistribute it and/or modify diff --git a/README.md b/README.md index 828888e70ecb..8fa765250728 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ corresponding command for your operating system: | macOS | `source tools/macos_buildenv.sh setup` | ~1.5 GB download, ~3 GB disk space | | Debian/Ubuntu | `tools/debian_buildenv.sh setup` | ~200 MB download, ~1 GB disk space | | Fedora | `tools/rpm_buildenv.sh setup` | ~200 MB download, ~1 GB disk space | +| Android | `tools/android_buildenv.sh setup` (see the [wiki article](https://github.com/mixxxdj/mixxx/wiki/Building-for-Android)) | ~3.4 GB download, 13GB disk space | | Other Linux distros | See the [wiki article](https://github.com/mixxxdj/mixxx/wiki/Compiling%20on%20Linux) | | To build Mixxx, run diff --git a/cmake/modules/FindOboe.cmake b/cmake/modules/FindOboe.cmake new file mode 100644 index 000000000000..d12ef492639f --- /dev/null +++ b/cmake/modules/FindOboe.cmake @@ -0,0 +1,71 @@ +#[=======================================================================[.rst: +FindOboe +-------- + +Finds the Oboe library. + +Imported Targets +^^^^^^^^^^^^^^^^ + +This module provides the following imported targets, if found: + +``Oboe::Oboe`` + The Oboe library + +#]=======================================================================] + +# Prefer finding the libraries from pkgconfig rather than find_library. This is +# required to build with PipeWire's reimplementation of the Oboe library. +# +# This also enables using PortAudio with the Oboe port in vcpkg. That only +# builds OboeWeakAPI (not the Oboe server) which dynamically loads the real +# Oboe library and forwards API calls to it. OboeWeakAPI requires linking `dl` +# in addition to Oboe, as specified in the pkgconfig file in vcpkg. +find_package(PkgConfig QUIET) +if(PkgConfig_FOUND) + pkg_check_modules(Oboe Oboe) +endif() + +find_path( + Oboe_INCLUDE_DIR + NAMES oboe/Oboe.h + HINTS ${PC_Oboe_INCLUDE_DIRS} + DOC "Oboe include directory" +) +mark_as_advanced(Oboe_INCLUDE_DIR) + +find_library( + Oboe_LIBRARY + NAMES oboe + HINTS ${PC_Oboe_LIBRARY_DIRS} + DOC "Oboe library" +) +mark_as_advanced(Oboe_LIBRARY) + +if(DEFINED PC_Oboe_VERSION AND NOT PC_Oboe_VERSION STREQUAL "") + set(Oboe_VERSION "${PC_Oboe_VERSION}") +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args( + Oboe + REQUIRED_VARS Oboe_LIBRARY Oboe_INCLUDE_DIR + VERSION_VAR Oboe_VERSION +) + +if(Oboe_FOUND) + set(Oboe_LIBRARIES "${Oboe_LIBRARY}") + set(Oboe_INCLUDE_DIRS "${Oboe_INCLUDE_DIR}") + set(Oboe_DEFINITIONS ${PC_Oboe_CFLAGS_OTHER}) + + if(NOT TARGET Oboe::Oboe) + add_library(Oboe::Oboe UNKNOWN IMPORTED) + set_target_properties( + Oboe::Oboe + PROPERTIES + IMPORTED_LOCATION "${Oboe_LIBRARY}" + INTERFACE_COMPILE_OPTIONS "${PC_Oboe_CFLAGS_OTHER}" + INTERFACE_INCLUDE_DIRECTORIES "${Oboe_INCLUDE_DIR}" + ) + endif() +endif() diff --git a/cmake/modules/FindPortAudio.cmake b/cmake/modules/FindPortAudio.cmake index cbd5377f51b1..c92beafe090a 100644 --- a/cmake/modules/FindPortAudio.cmake +++ b/cmake/modules/FindPortAudio.cmake @@ -110,6 +110,17 @@ if(PortAudio_FOUND) PROPERTY INTERFACE_LINK_LIBRARIES JACK::jack ) endif() + if(CMAKE_SYSTEM_NAME STREQUAL Android) + find_package(Oboe) + if(NOT (OBOE_FOUND)) + message(FATAL_ERROR "Oboe: not found") + endif() + set_property( + TARGET PortAudio::PortAudio + APPEND + PROPERTY INTERFACE_LINK_LIBRARIES Oboe::Oboe + ) + endif() endif() if(PortAudio_ALSA_H) target_compile_definitions(PortAudio::PortAudio INTERFACE PA_USE_ALSA) diff --git a/lib/xwax/delayline.c b/lib/xwax/delayline.c new file mode 100644 index 000000000000..853abde3ee92 --- /dev/null +++ b/lib/xwax/delayline.c @@ -0,0 +1,115 @@ +#include +#include +#include + +#include "delayline.h" + +/* + * Gets the sample at index i in the delayline + */ + +int *delayline_at(struct delayline *delayline, ptrdiff_t i) +{ + if (!delayline) { + fprintf(stderr, "%s: Null pointer exception\n", __func__); + return NULL; + } + + if (delayline->current < 0) + delayline->current += delayline->size; + + ptrdiff_t index = delayline->current + i; + + if ((size_t)index >= delayline->size) + index -= delayline->size; + + return &delayline->array[index]; +} + +/* + * Initializes the delayline + */ + +void delayline_init(struct delayline *delayline) +{ + if (!delayline) { + fprintf(stderr, "%s: Null pointer exception\n", __func__); + return; + } + + delayline->size = DELAYLINE_SIZE; + delayline->current = delayline->size -1; + + for (int i = 0; i < DELAYLINE_SIZE; i++) + delayline->array[i] = 0; +} + +/* + * Decrements the delayline pointer + */ + +void delayline_decrement(struct delayline *delayline) +{ + if (!delayline) { + fprintf(stderr, "%s: Null pointer exception\n", __func__); + return; + } + + delayline->current--; + if (delayline->current < 0) + delayline->current += delayline->size; +} + +/* + * Pushes a new sample to the delayline + */ + +void delayline_push(struct delayline *delayline, int sample) +{ + if (!delayline) { + fprintf(stderr, "%s: Null pointer exception\n", __func__); + return; + } + + delayline_decrement(delayline); + delayline->array[delayline->current] = sample; +} + +/* + * Computes the average value of all samples in the delayline + */ + +int delayline_avg(struct delayline *delayline) +{ + if (!delayline) { + fprintf(stderr, "%s: Null pointer exception\n", __func__); + return -EINVAL; + } + + int sum = 0; + + for (int i = 0; i < delayline->size; i++) + sum += delayline->array[i]; + + return (sum / delayline->size); +} + +/* + * Prints the delayline starting at the current pointer + */ + +void delayline_print(struct delayline *delayline) +{ + if (!delayline) { + fprintf(stderr, "%s: Null pointer exception\n", __func__); + return; + } + + fprintf(stdout, "{"); + for (int i = 0; i < delayline->size; i++) { + fprintf(stdout, "%d", *delayline_at(delayline, i)); + if (i < delayline->size - 1) + fprintf(stdout, ", "); + } + fprintf(stdout, "}\n"); +} diff --git a/lib/xwax/delayline.h b/lib/xwax/delayline.h new file mode 100644 index 000000000000..c41fab96751b --- /dev/null +++ b/lib/xwax/delayline.h @@ -0,0 +1,21 @@ +#ifndef DELAYLINE_H + +#define DELAYLINE_H + +#include + +#define DELAYLINE_SIZE 5 + +struct delayline { + size_t size; + int array[DELAYLINE_SIZE]; + ptrdiff_t current; +}; + +void delayline_init(struct delayline *delayline); +int *delayline_at(struct delayline *delayline, ptrdiff_t i); +void delayline_push(struct delayline *delayline, int sample); +int delayline_avg(struct delayline *delayline); +void delayline_print(struct delayline *delayline); + +#endif /* end of include guard DELAYLINE_H */ diff --git a/lib/xwax/filters.c b/lib/xwax/filters.c new file mode 100644 index 000000000000..d528a47aa3ee --- /dev/null +++ b/lib/xwax/filters.c @@ -0,0 +1,108 @@ + +#include +#include +#include +#include + +#include "filters.h" + +/* + * Initializes the exponential moving average filter. + */ + +void ema_init(struct ema_filter *filter, const double alpha) +{ + if (!filter) { + errno = EINVAL; + perror(__func__); + return; + } + + filter->alpha = alpha; + filter->y_old = 0; +} + +/* + * Computes an exponential moving average with the possibility to weight newly added + * values with a factor alpha. + */ + +int ema(struct ema_filter *filter, const int x) +{ + if (!filter) { + errno = EINVAL; + perror(__func__); + return -EINVAL; + } + + int y = filter->alpha * x + (1 - filter->alpha) * filter->y_old; + filter->y_old = y; + + return y; +} + +/* + * Initializes the derivative filter. + */ + +void derivative_init(struct differentiator *filter) +{ + if (!filter) { + errno = EINVAL; + perror(__func__); + return; + } + + filter->x_old = 0; +} + +/* + * Computes a simple derivative, i.e. the slope of the input signal without gain compensation. + */ + +int derivative(struct differentiator *filter, const int x) +{ + int y = x - filter->x_old; + filter->x_old = x; + + return y; +} + +/* + * Initializes the RMS filter + */ + +void rms_init(struct root_mean_square *filter, const float alpha) +{ + if (!filter) { + errno = EINVAL; + perror(__func__); + return; + } + + filter->squared_old = 0; + filter->alpha = alpha; +} + +/* + * Computes the RMS value over a running sum. + * The 1.0 > alpha > 0 determines the smoothness of the result: + */ + +int rms(struct root_mean_square *filter, const int x) +{ + if (!filter) { + errno = EINVAL; + perror(__func__); + return -EINVAL; + } + + /* Compute squared value */ + unsigned long long squared = (unsigned long long)x * (unsigned long long)x; + + /* Apply EMA filter to squared values */ + filter->squared_old = (1.0 - filter->alpha) * filter->squared_old + filter->alpha * squared; + + /* Take square root at the end */ + return (int)sqrt(filter->squared_old); +} diff --git a/lib/xwax/filters.h b/lib/xwax/filters.h new file mode 100644 index 000000000000..f3e79f541eff --- /dev/null +++ b/lib/xwax/filters.h @@ -0,0 +1,28 @@ +#ifndef FILTERS_H + +#define FILTERS_H + +struct ema_filter { + double alpha; + int y_old; +}; + +void ema_init(struct ema_filter *, const double alpha); +int ema(struct ema_filter *, const int x); + +struct differentiator { + int x_old; +}; + +void derivative_init(struct differentiator *filter); +int derivative(struct differentiator *, const int x); + +struct root_mean_square { + float alpha; + unsigned long long squared_old; +}; + +void rms_init(struct root_mean_square *filter, const float alpha); +int rms(struct root_mean_square *filter, const int x); + +#endif /* end of include guard FILTERS_H */ diff --git a/lib/xwax/lut.c b/lib/xwax/lut.c index d9d16585d240..f137a39f21ed 100644 --- a/lib/xwax/lut.c +++ b/lib/xwax/lut.c @@ -28,7 +28,7 @@ #define HASH_BITS 16 #define HASH(timecode) ((timecode) & ((1 << HASH_BITS) - 1)) -#define NO_SLOT ((unsigned)-1) +#define NO_SLOT ((slot_no_t)-1) /* Initialise an empty hash lookup table to store the given number @@ -74,7 +74,7 @@ void lut_clear(struct lut *lut) } -void lut_push(struct lut *lut, unsigned int timecode) +void lut_push(struct lut *lut, bits_t timecode) { unsigned int hash; slot_no_t slot_no; @@ -91,7 +91,7 @@ void lut_push(struct lut *lut, unsigned int timecode) } -unsigned int lut_lookup(struct lut *lut, unsigned int timecode) +slot_no_t lut_lookup(struct lut *lut, bits_t timecode) { unsigned int hash; slot_no_t slot_no; @@ -107,5 +107,5 @@ unsigned int lut_lookup(struct lut *lut, unsigned int timecode) slot_no = slot->next; } - return (unsigned)-1; + return (slot_no_t)-1; } diff --git a/lib/xwax/lut.h b/lib/xwax/lut.h index 9667705446ab..da98f56b2754 100644 --- a/lib/xwax/lut.h +++ b/lib/xwax/lut.h @@ -20,10 +20,13 @@ #ifndef LUT_H #define LUT_H +#include "types.h" + typedef unsigned int slot_no_t; +typedef unsigned int bits_t; struct slot { - unsigned int timecode; + bits_t timecode; slot_no_t next; /* next slot with the same hash */ }; @@ -36,7 +39,7 @@ struct lut { int lut_init(struct lut *lut, int nslots); void lut_clear(struct lut *lut); -void lut_push(struct lut *lut, unsigned int timecode); -unsigned int lut_lookup(struct lut *lut, unsigned int timecode); +void lut_push(struct lut *lut, bits_t timecode); +unsigned int lut_lookup(struct lut *lut, bits_t timecode); #endif diff --git a/lib/xwax/lut_mk2.c b/lib/xwax/lut_mk2.c new file mode 100644 index 000000000000..2b09a7b25979 --- /dev/null +++ b/lib/xwax/lut_mk2.c @@ -0,0 +1,117 @@ +#include +#include + +#include "lut_mk2.h" + +/* + * The number of bits to form the hash, which governs the overall size + * of the hash lookup table, and hence the amount of chaining + */ + +#define HASH_BITS 16 + +#define HASH(timecode) ((timecode) & ((1 << HASH_BITS) - 1)) +#define NO_SLOT ((slot_no_t)-1) + +/* + * Hash function that takes all 110-bits of the MK2s into account + */ + +unsigned short HASH110(mk2bits_t *value) { + + /* Simple hash mixing using bit shifts and XORs */ + unsigned short hash = (unsigned short)(value->low ^ (value->low >> 16) ^ (value->low >> 32) ^ + (value->low >> 48)); + hash ^= (unsigned short)(value->high ^ (value->high << 5) ^ (value->high >> 3)); + + /* Final scrambling to improve distribution */ + hash ^= (hash >> 7) ^ (hash << 9); + + return hash; +} + +/* + * Initialise an empty hash lookup table to store the given number * of timecode -> position + * lookups (Traktor MK2 version) + */ + +int lut_init_mk2(struct lut_mk2 *lut, int nslots) +{ + size_t bytes; + int n, hashes; + + hashes = 1 << HASH_BITS; + bytes = sizeof(struct slot_mk2) * nslots + sizeof(slot_no_t) * hashes; + + fprintf(stderr, "Lookup table has %d hashes to %d slots" + " (%d slots per hash, %zuKb)\n", + hashes, nslots, nslots / hashes, bytes / 1024); + + lut->slot = malloc(sizeof(struct slot_mk2) * nslots); + if (lut->slot == NULL) { + perror("malloc"); + return -1; + } + + lut->table = malloc(sizeof(slot_no_t) * hashes); + if (lut->table == NULL) { + perror("malloc"); + return -1; + } + + for (n = 0; n < hashes; n++) + lut->table[n] = NO_SLOT; + + lut->avail = 0; + + return 0; +} + +void lut_clear_mk2(struct lut_mk2 *lut) +{ + free(lut->table); + free(lut->slot); +} + +/* + * Traktor MK2 version holding 110-bit integers as timecode + */ + +void lut_push_mk2(struct lut_mk2 *lut, mk2bits_t *timecode) +{ + unsigned int hash; + slot_no_t slot_no; + struct slot_mk2 *slot; + + slot_no = lut->avail++; /* take the next available slot */ + + slot = &lut->slot[slot_no]; + slot->timecode = *timecode; + + hash = HASH110(timecode); + slot->next = lut->table[hash]; + lut->table[hash] = slot_no; +} + +/* + * Traktor MK2 version holding 110-bit integers as timecode + */ + +slot_no_t lut_lookup_mk2(struct lut_mk2 *lut, mk2bits_t *timecode) +{ + unsigned int hash; + slot_no_t slot_no; + struct slot_mk2 *slot; + + hash = HASH110(timecode); + slot_no = lut->table[hash]; + + while (slot_no != NO_SLOT) { + slot = &lut->slot[slot_no]; + if (u128_eq(slot->timecode, *timecode)) + return slot_no; + slot_no = slot->next; + } + + return (slot_no_t)-1; +} diff --git a/lib/xwax/lut_mk2.h b/lib/xwax/lut_mk2.h new file mode 100644 index 000000000000..8f0b4b16eec5 --- /dev/null +++ b/lib/xwax/lut_mk2.h @@ -0,0 +1,25 @@ +#ifndef LUT_MK2_H + +#define LUT_MK2_H + +#include "lut.h" + +typedef u128 mk2bits_t; + +struct slot_mk2 { + mk2bits_t timecode; + slot_no_t next; /* next slot with the same hash */ +}; + +struct lut_mk2 { + struct slot_mk2 *slot; + slot_no_t *table, /* hash -> slot lookup */ + avail; /* next available slot */ +}; + +int lut_init_mk2(struct lut_mk2 *lut, int nslots); +void lut_clear_mk2(struct lut_mk2 *lut); +void lut_push_mk2(struct lut_mk2 *lut, mk2bits_t *timecode); +slot_no_t lut_lookup_mk2(struct lut_mk2 *lut, mk2bits_t *timecode); + +#endif /* end of include guard LUT_MK2_H */ diff --git a/lib/xwax/timecoder.c b/lib/xwax/timecoder.c index fa8af7f08f45..73412666b428 100755 --- a/lib/xwax/timecoder.c +++ b/lib/xwax/timecoder.c @@ -27,9 +27,13 @@ #ifndef _MSC_VER #include #endif +#define _USE_MATH_DEFINES +#include #include "debug.h" +#include "filters.h" #include "timecoder.h" +#include "timecoder_mk2.h" #define ZERO_RC 0.001 /* time constant for zero/rumble filter */ @@ -51,6 +55,7 @@ #define SWITCH_PHASE 0x1 /* tone phase difference of 270 (not 90) degrees */ #define SWITCH_PRIMARY 0x2 /* use left channel (not right) as primary */ #define SWITCH_POLARITY 0x4 /* read bit values in negative (not positive) */ +#define TRAKTOR_MK2 0x8 /* use for Traktor MK2 timecode*/ static struct timecode_def timecodes[] = { { @@ -110,6 +115,60 @@ static struct timecode_def timecodes[] = { .safe = 907000, .threshold = (128 << 16), }, + { + .name = "traktor_mk2_a", + .desc = "Traktor Scratch MK2, side A", + .resolution = 2500, + .flags = TRAKTOR_MK2, + .bits = 110, + .seed_mk2 = { + .high = 0xc6007c63e, + .low = 0x3fc00c60f8c1f00 + }, + .taps_mk2 = { + .high = 0x400000000040, + .low = 0x0000010800000001 + }, + .length = 1820000, + .safe = 1800000, + .threshold = (128 << 16), + }, + { + .name = "traktor_mk2_b", + .desc = "Traktor Scratch MK2, side B", + .resolution = 2500, + .flags = TRAKTOR_MK2, + .bits = 110, + .seed_mk2 = { + .high = 0x1ff9f00003, + .low = 0xe73ff00f9fe0c7c1 + }, + .taps_mk2 = { + .high = 0x400000000040, + .low = 0x0000010800000001 + }, + .length = 2570000, + .safe = 2550000, + .threshold = (128 << 16), + }, + { + .name = "traktor_mk2_cd", + .desc = "Traktor Scratch MK2, CD", + .resolution = 3000, + .flags = TRAKTOR_MK2, + .bits = 110, + .seed_mk2 = { + .high = 0x7ce73, + .low = 0xe0e0fff1fc1cf8c1 + }, + .taps_mk2 = { + .high = 0x400000000000, + .low = 0x1000010800000001 + }, + .length = 4500000, + .safe = 4495000, + .threshold = (128 << 16), + }, { .name = "mixvibes_v2", .desc = "MixVibes V2", @@ -256,7 +315,7 @@ static int build_lookup(struct timecode_def *def) * Return: pointer to timecode definition, or NULL if not available */ -struct timecode_def* timecoder_find_definition(const char *name) +struct timecode_def* timecoder_find_definition(const char *name, const char *lut_dir_path) { unsigned int n; @@ -266,9 +325,24 @@ struct timecode_def* timecoder_find_definition(const char *name) if (strcmp(def->name, name) != 0) continue; - if (build_lookup(def) == -1) - return NULL; /* error */ - + if (!def->lookup) { + if (def->flags & TRAKTOR_MK2) { + if (!lut_load_mk2(def, lut_dir_path)) + return def; + + if (build_lookup_mk2(def) == -1) + return NULL; /* error */ + + if (lut_store_mk2(def, lut_dir_path)) { + timecoder_free_lookup(); + fprintf(stderr, "Couldn't store LUT on disk\n"); + return NULL; + } + } else { + if (build_lookup(def) == -1) + return NULL; /* error */ + } + } return def; } @@ -285,19 +359,64 @@ void timecoder_free_lookup(void) { for (n = 0; n < ARRAY_SIZE(timecodes); n++) { struct timecode_def *def = &timecodes[n]; - if (def->lookup) - lut_clear(&def->lut); + if (def->flags & TRAKTOR_MK2) { + if (def->lookup) + lut_clear_mk2(&def->lut_mk2); + } else { + if (def->lookup) + lut_clear(&def->lut); + } } } +/* + * Initialise a subcode decoder for the Traktor MK2 + */ + +void mk2_subcode_init(struct mk2_subcode *sc) +{ + sc->valid_counter = 0; + sc->avg_reading = INT_MAX/2; + sc->avg_slope = INT_MAX/2; + sc->bit = U128_ZERO; + + delayline_init(&sc->readings); + + /* Initialise smoothing filters */ + ema_init(&sc->ema_reading, 0.01); + ema_init(&sc->ema_slope, 0.01); +} + +/* + * Initialise filter values for the MK2 demodulation + */ + +static void init_mk2_channel(struct timecoder_channel *ch) +{ + ch->mk2.deriv_scaled = INT_MAX/2; + ch->mk2.rms = INT_MAX/2; + ch->mk2.rms_deriv = 0; + + delayline_init(&ch->mk2.delayline); + + ema_init(&ch->mk2.ema_filter, 3e-1); + derivative_init(&ch->mk2.differentiator); + rms_init(&ch->mk2.rms_filter, 1e-3); + rms_init(&ch->mk2.rms_deriv_filter, 1e-3); +} + + /* * Initialise filter values for one channel */ -static void init_channel(struct timecoder_channel *ch) +static void init_channel(struct timecode_def *def, struct timecoder_channel *ch) { ch->positive = false; ch->zero = 0; + + if (def->flags & TRAKTOR_MK2) + init_mk2_channel(ch); } /* @@ -319,6 +438,7 @@ void timecoder_init(struct timecoder *tc, struct timecode_def *def, tc->speed = speed; tc->dt = 1.0 / sample_rate; + tc->sample_rate = sample_rate; tc->zero_alpha = tc->dt / (ZERO_RC + tc->dt); tc->threshold = tc->def->threshold; @@ -327,8 +447,8 @@ void timecoder_init(struct timecoder *tc, struct timecode_def *def, tc->threshold >>= 5; /* approx -36dB */ tc->forwards = 1; - init_channel(&tc->primary); - init_channel(&tc->secondary); + init_channel(tc->def, &tc->primary); + init_channel(tc->def, &tc->secondary); tc->use_legacy_pitch_filter = pitch_estimator; /* Switch for pitch filter type */ @@ -358,6 +478,12 @@ void timecoder_init(struct timecoder *tc, struct timecode_def *def, tc->timecode_ticker = 0; tc->mon = NULL; + + /* Compute the factor the scale up the derivative to the original level */ + tc->gain_compensation = 1.0 / (M_PI * tc->def->resolution / tc->sample_rate); + + mk2_subcode_init(&tc->upper_bitstream); + mk2_subcode_init(&tc->lower_bitstream); } /* @@ -367,6 +493,13 @@ void timecoder_init(struct timecoder *tc, struct timecode_def *def, void timecoder_clear(struct timecoder *tc) { assert(tc->mon == NULL); + + if (tc->def->flags & TRAKTOR_MK2) { + delayline_init(&tc->primary.mk2.delayline); + delayline_init(&tc->secondary.mk2.delayline); + delayline_init(&tc->upper_bitstream.readings); + delayline_init(&tc->lower_bitstream.readings); + } } /* @@ -579,8 +712,18 @@ static void track_quadrature_phase(struct timecoder *tc, bool direction_changed) static void process_sample(struct timecoder *tc, signed int primary, signed int secondary) { - detect_zero_crossing(&tc->primary, primary, tc->zero_alpha, tc->threshold); - detect_zero_crossing(&tc->secondary, secondary, tc->zero_alpha, tc->threshold); + if (tc->def->flags & TRAKTOR_MK2) { + mk2_process_carrier(tc, primary, secondary); + + detect_zero_crossing(&tc->primary, tc->primary.mk2.deriv_scaled, tc->zero_alpha, + tc->threshold); + detect_zero_crossing(&tc->secondary, tc->secondary.mk2.deriv_scaled, tc->zero_alpha, + tc->threshold); + + } else { + detect_zero_crossing(&tc->primary, primary, tc->zero_alpha, tc->threshold); + detect_zero_crossing(&tc->secondary, secondary, tc->zero_alpha, tc->threshold); + } /* If an axis has been crossed, use the direction of the crossing * to work out the direction of the vinyl */ @@ -637,14 +780,22 @@ static void process_sample(struct timecoder *tc, /* If we have crossed the primary channel in the right polarity, * it's time to read off a timecode 0 or 1 value */ - if (tc->secondary.swapped && - tc->primary.positive == ((tc->def->flags & SWITCH_POLARITY) == 0)) - { - signed int m; - - /* scale to avoid clipping */ - m = abs(primary / 2 - tc->primary.zero / 2); - process_bitstream(tc, m); + if (tc->def->flags & TRAKTOR_MK2) { + if (tc->secondary.swapped) + { + int reading = *delayline_at(&tc->secondary.mk2.delayline, 3); + mk2_process_timecode(tc, reading); + } + } else { + if (tc->secondary.swapped && + tc->primary.positive == ((tc->def->flags & SWITCH_POLARITY) == 0)) + { + signed int m; + + /* scale to avoid clipping */ + m = abs(primary / 2 - tc->primary.zero / 2); + process_bitstream(tc, m); + } } tc->timecode_ticker++; @@ -704,8 +855,22 @@ void timecoder_submit(struct timecoder *tc, signed short *pcm, size_t npcm) secondary = left; } - process_sample(tc, primary, secondary); - update_monitor(tc, left, right); + if (tc->def->flags & TRAKTOR_MK2) { + process_sample(tc, primary, secondary); + + /* + * Display the derivative in the monitor. Since the signal is not + * a perfect ring on the x-y-plane, but jumps up and down a bit, + * it looks to small in the scope. Therefore a multiplication by + * two is necessary. + */ + + update_monitor(tc, tc->primary.mk2.deriv_scaled * 2, + tc->secondary.mk2.deriv_scaled * 2); + } else { + process_sample(tc, primary, secondary); + update_monitor(tc, left, right); + } pcm += TIMECODER_CHANNELS; } @@ -730,9 +895,15 @@ signed int timecoder_get_position(struct timecoder *tc, double *when) if (tc->valid_counter <= VALID_BITS) return -1; - r = lut_lookup(&tc->def->lut, tc->bitstream); - if (r == -1) - return -1; + if (tc->def->flags & TRAKTOR_MK2) { + r = lut_lookup_mk2(&tc->def->lut_mk2, &tc->mk2_bitstream); + if (r == -1) + return -1; + } else { + r = lut_lookup(&tc->def->lut, tc->bitstream); + if (r == -1) + return -1; + } if (r >= 0) { // normalize position to milliseconds, not timecode steps -- Owen diff --git a/lib/xwax/timecoder.h b/lib/xwax/timecoder.h index 0e9a197ebeaf..f9272e72b57c 100644 --- a/lib/xwax/timecoder.h +++ b/lib/xwax/timecoder.h @@ -22,15 +22,17 @@ #include +#include "filters.h" #include "lut.h" +#include "lut_mk2.h" #include "pitch.h" #include "pitch_kalman.h" +#include "delayline.h" #define TIMECODER_CHANNELS 2 #ifdef __cplusplus extern "C" { - #endif // __cplusplus typedef unsigned int bits_t; @@ -42,11 +44,24 @@ struct timecode_def { flags; bits_t seed, /* LFSR value at timecode zero */ taps; /* central LFSR taps, excluding end taps */ + mk2bits_t seed_mk2, /* MK2 version */ + taps_mk2; /* MK2 version */ unsigned int length, /* in cycles */ safe; /* last 'safe' timecode number (for auto disconnect) */ signed int threshold; /* threshold for detection of zero-crossings */ bool lookup; /* true if lut has been generated */ struct lut lut; + struct lut_mk2 lut_mk2; /* MK2 version */ +}; + +struct timecoder_channel_mk2 { + int rms, rms_deriv; /* RMS values for the signal and its derivative */ + signed int deriv, deriv_scaled; /* Derivative and its scaled version */ + + struct delayline delayline; /* needed for the Traktor MK2 demodulation */ + struct ema_filter ema_filter; + struct differentiator differentiator; + struct root_mean_square rms_filter, rms_deriv_filter; }; struct timecoder_channel { @@ -54,6 +69,23 @@ struct timecoder_channel { swapped; /* wave recently swapped polarity */ signed int zero; unsigned int crossing_ticker; /* samples since we last crossed zero */ + + struct timecoder_channel_mk2 mk2; +}; + +struct mk2_subcode { + mk2bits_t bitstream; + mk2bits_t timecode; + mk2bits_t bit; + + unsigned int valid_counter; + signed int avg_reading; + signed int avg_slope; + bool recent_bit_flip; + + struct delayline readings; + struct ema_filter ema_reading; + struct ema_filter ema_slope; }; struct timecoder { @@ -63,6 +95,7 @@ struct timecoder { /* Precomputed values */ double dt, zero_alpha; + int sample_rate; signed int threshold; /* Pitch information */ @@ -81,16 +114,22 @@ struct timecoder { signed int ref_level; bits_t bitstream, /* actual bits from the record */ timecode; /* corrected timecode */ + mk2bits_t mk2_bitstream, /* Traktor MK2 version */ + mk2_timecode; /* Traktor MK2 version */ unsigned int valid_counter, /* number of successful error checks */ timecode_ticker; /* samples since valid timecode was read */ + double dB; /* Decibels to detect phono level */ /* Feedback */ unsigned char *mon; /* x-y array */ int mon_size, mon_counter; + + struct mk2_subcode upper_bitstream, lower_bitstream; + double gain_compensation; /* Scaling factor for the derivative */ }; -struct timecode_def* timecoder_find_definition(const char *name); +struct timecode_def* timecoder_find_definition(const char *name, const char *lut_dir_path); void timecoder_free_lookup(void); void timecoder_init(struct timecoder *tc, struct timecode_def *def, diff --git a/lib/xwax/timecoder_mk2.c b/lib/xwax/timecoder_mk2.c new file mode 100644 index 000000000000..125f683ef43a --- /dev/null +++ b/lib/xwax/timecoder_mk2.c @@ -0,0 +1,465 @@ +#include +#include +#include +#include +#include +#include +#include + +#include "timecoder_mk2.h" + +#define REF_PEAKS_AVG 48 /* in wave cycles */ + +/* + * Compute the LFSR bit (Traktor MK2 version) + */ + +static inline mk2bits_t lfsr_mk2(mk2bits_t code, mk2bits_t taps) +{ + mk2bits_t taken; + mk2bits_t xrs; + + taken = u128_and(code, taps); + xrs = U128_ZERO; + + while (u128_neq(taken, U128_ZERO)) { + xrs = u128_add(xrs, u128_and(taken, U128_ONE)); + taken = u128_rshift(taken, 1); + } + + return u128_and(xrs, U128_ONE); +} + +/* + * Linear Feedback Shift Register in the forward direction. New values + * are generated at the least-significant bit. (Traktor MK2 version) + */ + +inline mk2bits_t fwd_mk2(mk2bits_t current, struct timecode_def *def) +{ + if (!def) { + errno = -EINVAL; + perror(__func__); + return U128_ZERO; + } + + mk2bits_t l; + + /* New bits are added at the MSB; shift right by one */ + l = lfsr_mk2(current, u128_or(def->taps_mk2, U128_ONE)); + return u128_or(u128_rshift(current, 1), u128_lshift(l, (def->bits - 1))); +} + +/* + * Linear Feedback Shift Register in the reverse direction + * (Traktor MK2 version) + */ + +inline mk2bits_t rev_mk2(mk2bits_t current, struct timecode_def *def) +{ + if (!def) { + errno = -EINVAL; + perror(__func__); + return U128_ZERO; + } + + mk2bits_t l, mask; + + /* New bits are added at the LSB; shift left one and mask */ + mask = u128_sub(u128_lshift(U128_ONE, def->bits), U128_ONE); + l = lfsr_mk2(current, + u128_or(u128_rshift(def->taps_mk2, 1), + u128_lshift(U128_ONE, (def->bits - 1)))); + + return u128_or(u128_and(u128_lshift(current, 1), mask), l); +} + +/* + * Where necessary, build the lookup table required for this timecode + * (Traktor MK2 version) + * + * Return: -1 if not enough memory could be allocated, otherwise 0 + */ + +int build_lookup_mk2(struct timecode_def *def) +{ + if (!def) { + errno = -EINVAL; + perror(__func__); + return -1; + } + + unsigned int n; + mk2bits_t current, next; + + if (def->lookup) + return 0; + + fprintf(stderr, "Building LUT for %d bit %dHz timecode (%s)\n", + def->bits, def->resolution, def->desc); + + if (lut_init_mk2(&def->lut_mk2, def->length) == -1) + return -1; + + current = def->seed_mk2; + + for (n = 0; n < def->length; n++) { + + /* timecode must not wrap */ + assert(lut_lookup_mk2(&def->lut_mk2, ¤t) == (unsigned)-1); + lut_push_mk2(&def->lut_mk2, ¤t); + + /* check symmetry of the lfsr functions */ + next = fwd_mk2(current, def); + assert(u128_eq(rev_mk2(next, def), current)); + + current = next; + } + + def->lookup = true; + + return 0; +} + +/* + * Caches the generated LUT on the disk. + * + * This is only necessary for the Traktor MK2, since the size of its hash + * table is quite large. + */ + +int lut_store_mk2(struct timecode_def *def, const char *lut_dir_path) +{ + if (!def || !lut_dir_path) + return -1; + + struct slot_mk2 *slot; + slot_no_t *hash; + + int i, j, len, hashes; + char path[1024]; + FILE *fp = NULL; + int r = 0; + int size; + + sprintf(path, "%s/%s%s", lut_dir_path, def->name, ".lut"); + + fprintf(stdout, "Storing LUT at %s\n", path); + fp = fopen(path, "wb"); + if (!fp) { + perror("fopen"); + return -1; + } + + for (i = 0; i < def->length; i++) { + slot = &def->lut_mk2.slot[i]; + + if (!slot) { + printf("slot_no: %d doesn't exist'\n", i); + r = -1; + goto out; + } + size = fwrite(slot, sizeof(struct slot_mk2), 1, fp); + + if (!size) { + perror("fwrite"); + r = -1; + goto out; + } + } + + hashes = 1 << 16; + for (j = 0; j < hashes; j++) { + hash = &def->lut_mk2.table[j]; + + size = fwrite(hash, sizeof(slot_no_t), 1, fp); + if (!size) { + perror("fwrite"); + r = -1; + goto out; + } + } + + size = fwrite(&def->lut_mk2.avail, sizeof(slot_no_t), 1, fp); + if (!size) { + perror("fwrite"); + r = -1; + goto out; + } + +out: + fclose(fp); + + if (hashes != j || def->length != i) + fprintf(stderr, "Something went wrong: "); + + fprintf(stderr, "Wrote %d hashes and %d slots to disk\n", j, i); + + return r; +} + + +/* + * Loads the stored LUT from the disk. + * + * This is only necessary for the Traktor MK2, since the size of its hash + * table is quite large. + */ + +int lut_load_mk2(struct timecode_def *def, const char *lut_dir_path) +{ + if (!def || !lut_dir_path) + return -1; + + struct slot_mk2 *slot; + + char path[1024]; + int i, j, hashes; + int r = 0; + int size; + FILE *fp; + int len; + + sprintf(path, "%s/%s%s", lut_dir_path, def->name, ".lut"); + + fprintf(stdout, "Loading LUT from %s\n", path); + fp = fopen(path, "rb"); + if (!fp) { + fprintf(stderr, "LUT for %s not found on disk\n", def->desc); + return -1; + } + + r = lut_init_mk2(&def->lut_mk2, def->length); + if (r) { + fprintf(stderr, "Couldn't initialise LUT\n"); + goto out; + } + + fprintf(stdout, "Loading LUT from %s\n", path); + for (i = 0; i < def->length; i++) { + slot = &def->lut_mk2.slot[i]; + + size = fread(slot, sizeof(struct slot_mk2), 1, fp); + if (!size) { + perror("fread"); + r = -1; + goto out; + } + } + + hashes = 1 << 16; + for (j = 0; j < hashes; j++) { + + slot_no_t *hash = &def->lut_mk2.table[j]; + + size = fread(hash, sizeof(slot_no_t), 1, fp); + if (!size) { + perror("fread"); + r = -1; + goto out; + } + } + + size = fread(&def->lut_mk2.avail, sizeof(slot_no_t), 1, fp); + if (!size) { + perror("fwrite"); + r = -1; + } + + +out: + fclose(fp); + + if (hashes == j && def->length == i) + def->lookup = true; + else + fprintf(stderr, "Something went wrong: "); + + fprintf(stderr, "Loaded %d hashes and %d slots from disk\n", j, i); + + return r; +} + +/* + * Do Traktor-MK2-specific processing of the carrier wave + * + * Pushes samples into a delayline, computes the derivative, computes RMS + * values and scales the derivative back up to the original signal's level. + * Afterards the upscaled derivative can by processed by the pitch detection + * algorithm. + * + * NOTE: Ideally the gain compensation should be done in the derivative and lowpass + * filter structures by determining the amplitude response. I had this + * implemented previously, but chose gain compensation by using the RMS value, + * since it is easier to understand for developers not trained in signal + * processing. Additionally it's nice to have the dB level at hand. + * + */ + +void mk2_process_carrier(struct timecoder *tc, signed int primary, signed int secondary) +{ + if (!tc) { + errno = -EINVAL; + perror(__func__); + return; + } + + /* Push the samples into the ringbuffer */ + delayline_push(&tc->primary.mk2.delayline, primary); + delayline_push(&tc->secondary.mk2.delayline, secondary); + + /* Compute the discrete derivative */ + tc->primary.mk2.deriv = derivative(&tc->primary.mk2.differentiator, + ema(&tc->primary.mk2.ema_filter, primary)); + tc->secondary.mk2.deriv = derivative(&tc->secondary.mk2.differentiator, + ema(&tc->secondary.mk2.ema_filter, secondary)); + + /* Compute the smoothed RMS value */ + tc->primary.mk2.rms = rms(&tc->primary.mk2.rms_filter, primary); + tc->secondary.mk2.rms = rms(&tc->secondary.mk2.rms_filter, secondary); + + /* Compute the smoothed RMS value for the derivative */ + tc->primary.mk2.rms_deriv = rms(&tc->primary.mk2.rms_deriv_filter, tc->primary.mk2.deriv); + tc->secondary.mk2.rms_deriv = rms(&tc->secondary.mk2.rms_deriv_filter, tc->secondary.mk2.deriv); + + /* Compute the gain compensation for the derivative*/ + tc->gain_compensation = (double)tc->secondary.mk2.rms / tc->secondary.mk2.rms_deriv; + + /* Without this limit pitch becomes too sensitive */ + if (tc->gain_compensation > 25.0) + tc->gain_compensation = 25.0; + + tc->dB = 20 * log10((double)tc->secondary.mk2.rms / INT_MAX); + + /* Compute the scaled derivative */ + tc->primary.mk2.deriv_scaled = tc->primary.mk2.deriv * tc->gain_compensation; + tc->secondary.mk2.deriv_scaled = tc->secondary.mk2.deriv * tc->gain_compensation; +} + +/* + * Detect if the upward or downward slope hits a threshold. + * Upwards signifies a one and downwards a zero. + */ + +static inline void detect_bit_flip(const int slope[2], int rms, int reading, int avg_reading, + mk2bits_t *bit, bool *bit_flipped, bool forwards, mk2bits_t one) +{ + static const double reverse_factor = 1.75; + static const double forward_factor = 1.5; + double threshold; + + if (*bit_flipped == false) { + if (forwards) { + threshold = rms / forward_factor; + } else { + threshold = rms / reverse_factor; + one = u128_not(one); + } + + if (u128_eq(*bit, u128_not(one)) && slope[0] > threshold && slope[1] > threshold) { + *bit = one; + *bit_flipped = true; + } else if (u128_eq(*bit, one) && slope[0] < -threshold && slope[1] < -threshold) { + *bit = u128_not(one); + *bit_flipped = true; + } + } else { + *bit_flipped = false; + } +} + +/* + * Verify the new LFSR state in the forward or reverse direction. + */ + +static inline bool lfsr_verify(struct timecode_def *def, mk2bits_t *timecode, mk2bits_t *bitstream, + mk2bits_t bit, bool forwards) +{ + if (forwards) { + *timecode = fwd_mk2(*timecode, def); + *bitstream = u128_add(u128_rshift(*bitstream, 1), u128_lshift(bit, (def->bits - 1))); + } else { + mk2bits_t mask = u128_sub(u128_lshift(U128_ONE, def->bits), U128_ONE); + *timecode = rev_mk2(*timecode, def); + *bitstream = u128_add(u128_and(u128_lshift(*bitstream, 1), mask), bit); + } + + if (u128_eq(*timecode, *bitstream)) + return true; + else + return false; +} + +/* + * Process the upper or lower bitstream contained in the Traktor MK2 signal + */ + +inline static void mk2_process_bitstream(struct timecoder *tc, struct mk2_subcode *sc, + signed int reading) +{ + int current_slope[2]; + + delayline_push(&sc->readings, reading); + sc->avg_reading = ema(&sc->ema_reading, reading); + + /* Calculate absolute of average slope */ + sc->avg_slope = ema(&sc->ema_slope, abs(reading - *delayline_at(&sc->readings, 1))); + + /* Calculate current and last slope */ + current_slope[0] = (reading - *delayline_at(&sc->readings, 1)); + current_slope[1] = (reading - *delayline_at(&sc->readings, 2)); + + /* The bits only change when an offset jump occurs. Else the previous bit is taken */ + detect_bit_flip(current_slope, tc->secondary.mk2.rms, reading, sc->avg_reading, &sc->bit, + &sc->recent_bit_flip, tc->forwards, U128(0x0, !tc->secondary.positive)); + + if (lfsr_verify(tc->def, &sc->timecode, &sc->bitstream, sc->bit, tc->forwards)) { + (sc->valid_counter)++; + } else { + sc->timecode = sc->bitstream; + sc->valid_counter = 0; + } +} + +/* + * Process the upper or lower bitstream contained in the Traktor MK2 signal + */ + +void mk2_process_timecode(struct timecoder *tc, signed int reading) +{ + /* + * Detect if the offset jumps on upper and lower bitstream + */ + + if (tc->secondary.positive) + mk2_process_bitstream(tc, &tc->upper_bitstream, reading); + else if (!tc->secondary.positive) + mk2_process_bitstream(tc, &tc->lower_bitstream, reading); + + if (tc->lower_bitstream.valid_counter > tc->upper_bitstream.valid_counter) { + tc->mk2_bitstream = tc->lower_bitstream.bitstream; + tc->mk2_timecode = tc->lower_bitstream.timecode; + } else { + tc->mk2_bitstream = tc->upper_bitstream.bitstream; + tc->mk2_timecode = tc->upper_bitstream.timecode; + } + + if (u128_eq(tc->mk2_timecode, tc->mk2_bitstream)) { + tc->valid_counter++; + } else { + tc->timecode = tc->bitstream; + tc->valid_counter = 0; + } + /* Take note of the last time we read a valid timecode */ + + tc->timecode_ticker = 0; + + tc->ref_level -= tc->ref_level / REF_PEAKS_AVG; + tc->ref_level += abs((int)(tc->secondary.mk2.rms_deriv * tc->gain_compensation)) + / REF_PEAKS_AVG; + + debug("upper.valid_counter: %d, lower.valid_counter %d, forwards: %b\n", */ + tc->upper.valid_counter, + tc->lower.valid_counter, + tc->forwards); +} diff --git a/lib/xwax/timecoder_mk2.h b/lib/xwax/timecoder_mk2.h new file mode 100644 index 000000000000..8e5afa84b7cf --- /dev/null +++ b/lib/xwax/timecoder_mk2.h @@ -0,0 +1,18 @@ +#ifndef TIMECODER_MK2_H + +#define TIMECODER_MK2_H + +#include "lut_mk2.h" +#include "timecoder.h" + +mk2bits_t fwd_mk2(mk2bits_t current, struct timecode_def *def); +mk2bits_t rev_mk2(mk2bits_t current, struct timecode_def *def); + +int build_lookup_mk2(struct timecode_def *def); +int lut_load_mk2(struct timecode_def *def, const char *lut_dir_path); +int lut_store_mk2(struct timecode_def *def, const char *lut_dir_path); + +void mk2_process_carrier(struct timecoder *tc, signed int primary, signed int secondary); +void mk2_process_timecode(struct timecoder *tc, signed int reading); + +#endif /* end of include guard TIMECODER_MK2_H */ diff --git a/lib/xwax/types.h b/lib/xwax/types.h new file mode 100644 index 000000000000..3fe87e1cd81b --- /dev/null +++ b/lib/xwax/types.h @@ -0,0 +1,148 @@ +#ifndef TYPES_H +#define TYPES_H + +#include +#include + +/* + * Define the u128 struct using two 64-bit unsigned integers, with high part first. + */ + +typedef struct { + uint64_t high; /* Most significant part */ + uint64_t low; /* Least significant part */ +} u128; + +/* + * Inline constructor for u128. + * Works in all compilers, including MSVC. + */ + +static inline u128 make_u128(uint64_t high, uint64_t low) +{ + u128 v; + + v.high = high; + v.low = low; + + return v; +} + +/* + * Macro to preserve U128() syntax, but call the portable constructor. + * + * Used to be only the macro before, but MSVC doesn't like C99 compound + * literals. + */ + +#define U128(high, low) make_u128((high), (low)) +#define U128_ZERO make_u128(0ULL, 0ULL) +#define U128_ONE make_u128(0ULL, 1ULL) + +static inline int u128_eq(u128 a, u128 b) +{ + return (a.high == b.high) && (a.low == b.low); +} + +/* + * Not-equal comparison. + */ + +static inline int u128_neq(u128 a, u128 b) +{ + return (a.high != b.high) || (a.low != b.low); +} + +/* + * Addition of two u128 values. + */ + +static inline u128 u128_add(u128 a, u128 b) +{ + uint64_t sum = a.low + b.low; + uint64_t carry = (sum < a.low) ? 1 : 0; + + return U128(a.high + b.high + carry, sum); +} + +/* + * Subtraction of two u128 values. + */ + +static inline u128 u128_sub(u128 a, u128 b) +{ + uint64_t diff = a.low - b.low; + uint64_t borrow = (a.low < b.low) ? 1 : 0; + + return U128(a.high - b.high - borrow, diff); +} + +/* + * Left shift by n bits. + */ + +static inline u128 u128_lshift(u128 a, uint32_t n) +{ + if (n >= 128) + return U128_ZERO; + else if (n >= 64) + return U128(a.low << (n - 64), 0ULL); + else + return U128((a.high << n) | (a.low >> (64 - n)), a.low << n); +} + +/* + * Right shift by n bits. + */ + +static inline u128 u128_rshift(u128 a, uint32_t n) +{ + if (n >= 128) + return U128_ZERO; + else if (n >= 64) + return U128(0ULL, a.high >> (n - 64)); + else + return U128(a.high >> n, (a.low >> n) | (a.high << (64 - n))); +} + +/* + * Bitwise AND of two u128 values. + */ + +static inline u128 u128_and(u128 a, u128 b) +{ + return U128(a.high & b.high, a.low & b.low); +} + +/* + * Bitwise OR of two u128 values. + */ + +static inline u128 u128_or(u128 a, u128 b) +{ + return U128(a.high | b.high, a.low | b.low); +} + +/* + * Logical NOT (negation) of a u128 value. + */ + +static inline u128 u128_not(u128 a) +{ + if (!a.low && !a.high) + return U128(0ULL, 1ULL); + else + return U128(0ULL, 0ULL); +} + +/* + * Print a u128 value in hexadecimal format (lowercase). + */ + +static inline void u128_print(u128 a) +{ + printf("%016llx%016llx\n", (unsigned long long)a.high, (unsigned long long)a.low); +} + +#endif /* end of include guard TYPES_H */ + diff --git a/packaging/android/AndroidManifest.xml b/packaging/android/AndroidManifest.xml new file mode 100644 index 000000000000..f4822732c543 --- /dev/null +++ b/packaging/android/AndroidManifest.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packaging/android/res/drawable/ic_launcher_background.xml b/packaging/android/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000000..9c3a415e54a1 --- /dev/null +++ b/packaging/android/res/drawable/ic_launcher_background.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + diff --git a/packaging/android/res/drawable/ic_launcher_foreground.xml b/packaging/android/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 000000000000..248038dd13df --- /dev/null +++ b/packaging/android/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packaging/android/res/mipmap-anydpi-v26/ic_launcher.xml b/packaging/android/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000000..d378acd7ac99 --- /dev/null +++ b/packaging/android/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/android/src/org/mixxx/UsbPermission.java b/packaging/android/src/org/mixxx/UsbPermission.java new file mode 100644 index 000000000000..731f6082083b --- /dev/null +++ b/packaging/android/src/org/mixxx/UsbPermission.java @@ -0,0 +1,51 @@ +package org.mixxx; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.content.IntentFilter; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbManager; +import android.util.Log; + +public class UsbPermission { + private static final String ACTION_USB_PERMISSION = + "org.mixxx.permissions.USB_PERMISSION"; + private static final String TAG = "MixxxUsbPermission"; + private static native void usbDeviceAccessResult(Object device, boolean granted); + public boolean registerServiceBroadcastReceiver(Context context) { + try { + IntentFilter intentFilter = new IntentFilter(ACTION_USB_PERMISSION); + context.registerReceiver(usbPermissionReceiver, intentFilter, Context.RECEIVER_NOT_EXPORTED); + Log.i(TAG, "Registered broadcast receiver"); + return true; + } catch (Exception e) { + Log.w(TAG, "Unable to register the broadcast receiver: " + e.toString()); + return false; + } + } + + private final BroadcastReceiver usbPermissionReceiver = new BroadcastReceiver() { + @Override + public void onReceive(Context context, Intent intent) { + String action = intent.getAction(); + Log.v(TAG, "Received " + action); + if (ACTION_USB_PERMISSION.equals(action)) { + synchronized (this) { + UsbDevice usbDevice = intent.getParcelableExtra(UsbManager.EXTRA_DEVICE); + if (usbDevice == null) { + Log.e(TAG, "USB device is null"); + return; + } + boolean granted = intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false); + usbDeviceAccessResult(usbDevice, granted); + if (!granted) { + Log.w(TAG, "Permission was denied"); + } else { + Log.i(TAG, "Permission was granted"); + } + } + } + } + }; +} diff --git a/res/controllers/Traktor Kontrol S4 MK3.bulk.xml b/res/controllers/Traktor Kontrol S4 MK3.bulk.xml new file mode 100644 index 000000000000..9ff549336099 --- /dev/null +++ b/res/controllers/Traktor Kontrol S4 MK3.bulk.xml @@ -0,0 +1,636 @@ + + + + Traktor Kontrol S4 MK3 (Screens) + A. Colombier + Mapping for Traktor Kontrol S4 MK3 screens + native_instruments_traktor_kontrol_s4_mk3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/controllers/TraktorKontrolS4MK3Screens.qml b/res/controllers/TraktorKontrolS4MK3Screens.qml new file mode 100644 index 000000000000..10a2df52539c --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens.qml @@ -0,0 +1,217 @@ +import QtQuick 2.15 +import QtQuick.Window 2.3 + +import QtQuick.Controls 2.15 +import QtQuick.Shapes 1.11 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.15 + +import Qt5Compat.GraphicalEffects + +import "." as Skin +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +import S4MK3 as S4MK3 + +Mixxx.ControllerScreen { + id: root + + required property string screenId + property color fontColor: Qt.rgba(242/255,242/255,242/255, 1) + property color smallBoxBorder: Qt.rgba(44/255,44/255,44/255, 1) + + property string group: screenId == "rightdeck" ? "[Channel2]" : "[Channel1]" + property string theme: engine.getSetting("theme") || "stock" + + readonly property bool isStockTheme: theme == "stock" + + property var lastFrame: null + + init: function(_controllerName, isDebug) { + console.log(`Screen ${root.screenId} has started with theme ${root.theme}`) + root.state = "Live" + } + + shutdown: function() { + console.log(`Screen ${root.screenId} is stopping`) + root.state = "Stop" + } + + transformFrame: function(input, timestamp) { + let updated = new Uint8Array(320*240); + updated.fill(0) + + let updatedPixelCount = 0; + let updated_zones = []; + + if (!root.lastFrame) { + root.lastFrame = new ArrayBuffer(input.byteLength); + updatedPixelCount = input.byteLength / 2; + updated_zones.push({ + x: 0, + y: 0, + width: 320, + height: 240, + }) + } else { + const view_input = new Uint8Array(input); + const view_last = new Uint8Array(root.lastFrame); + + for (let i = 0; i < 320 * 240; i++) { + } + + let current_rect = null; + + for (let y = 0; y < 240; y++) { + let line_changed = false; + for (let x = 0; x < 320; x++) { + let i = y * 320 + x; + if (view_input[2 * i] != view_last[2 * i] || view_input[2 * i + 1] != view_last[2 * i + 1]) { + line_changed = true; + updatedPixelCount++; + break; + } + } + if (current_rect !== null && line_changed) { + current_rect.height++; + } else if (current_rect !== null) { + updated_zones.push(current_rect); + current_rect = null; + } else if (current_rect === null && line_changed) { + current_rect = { + x: 0, + y, + width: 320, + height: 1, + }; + } + } + if (current_rect !== null) { + updated_zones.push(current_rect); + } + } + new Uint8Array(root.lastFrame).set(new Uint8Array(input)); + + if (!updatedPixelCount) { + return new ArrayBuffer(0); + } else if (root.renderDebug) { + console.log(`Pixel updated: ${updatedPixelCount}, ${updated_zones.length} areas`); + } + + // No redraw needed, stop right there + + let totalPixelToDraw = 0; + for (const area of updated_zones) { + area.x -= Math.min(2, area.x); + area.y -= Math.min(2, area.y); + area.width += Math.min(4, 320 - area.x - area.width); + area.height += Math.min(4, 240 - area.y - area.height); + totalPixelToDraw += area.width*area.height; + } + + if (totalPixelToDraw != 320*240 && (totalPixelToDraw > 320 * 180 || updated_zones.length > 20)) { + if (root.renderDebug) { + console.log(`Full redraw instead of ${totalPixelToDraw} pixels/${updated_zones.length} areas`) + } + totalPixelToDraw = 320*240 + updated_zones = [{ + x: 0, + y: 0, + width: 320, + height: 240, + }] + } else if (root.renderDebug) { + console.log(`Redrawing ${totalPixelToDraw} pixels`) + } + + const screenIdx = screenId === "leftdeck" ? 0 : 1; + + const outputData = new ArrayBuffer(totalPixelToDraw*2 + 20*updated_zones.length); // Number of pixel + 20 (header/footer size) x the number of region + let offset = 0; + + for (const area of updated_zones) { + const header = new Uint8Array(outputData, offset, 16); + const payload = new Uint8Array(outputData, offset + 16, area.width*area.height*2); + const footer = new Uint8Array(outputData, offset + area.width*area.height*2 + 16, 4); + + header.fill(0) + footer.fill(0) + header[0] = 0x84; + header[2] = screenIdx; + header[3] = 0x21; + + header[8] = area.x >> 8; + header[9] = area.x & 0xff; + header[10] = area.y >> 8; + header[11] = area.y & 0xff; + + header[12] = area.width >> 8; + header[13] = area.width & 0xff; + header[14] = area.height >> 8; + header[15] = area.height & 0xff; + + if (area.x === 0 && area.width === 320) { + payload.set(new Uint8Array(input, area.y * 320 * 2, area.width*area.height*2)); + } else { + for (let y = 0; y < area.height; y++) { + payload.set( + new Uint8Array(input, ((area.y + y) * 320 + area.x) * 2, area.width * 2), + y * area.width * 2); + } + } + footer[0] = 0x40; + footer[2] = screenIdx; + offset += area.width*area.height*2 + 20 + } + if (root.renderDebug) { + console.log(`Generated ${offset} bytes to be sent`) + } + // return new ArrayBuffer(0); + return outputData; + } + + Component { + id: splashOff + S4MK3.SplashOff { + anchors.fill: parent + } + } + Component { + id: stockLive + S4MK3.StockScreen { + group: root.group + screenId: root.screenId + anchors.fill: parent + } + } + Component { + id: advancedLive + S4MK3.AdvancedScreen { + isLeftScreen: root.screenId == "leftdeck" + } + } + + Loader { + id: loader + anchors.fill: parent + sourceComponent: splashOff + } + + states: [ + State { + name: "Live" + PropertyChanges { + target: loader + sourceComponent: isStockTheme ? stockLive : advancedLive + } + }, + State { + name: "Stop" + PropertyChanges { + target: loader + sourceComponent: splashOff + } + } + ] +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen.qml new file mode 100755 index 000000000000..77032739cda1 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen.qml @@ -0,0 +1,64 @@ +import QtQuick 2.15 + +import './AdvancedScreen/Defines' as Defines +import './AdvancedScreen/Views' as Views +import './AdvancedScreen' as S4MK3 + +//---------------------------------------------------------------------------------------------------------------------- +// S4MK3 Screen - manage top/bottom deck of one screen +//---------------------------------------------------------------------------------------------------------------------- + +Item { + id: screen + + required property bool isLeftScreen + + //-------------------------------------------------------------------------------------------------------------------- + + readonly property int topDeckId: isLeftScreen ? 1 : 2 + readonly property int bottomDeckId: isLeftScreen ? 3 : 4 + property bool propTopDeckFocus: true + + Defines.Font {id: fonts} + Defines.Utils {id: utils} + Defines.Settings {id: settings} + Defines.Durations {id: durations} + Defines.Colors {id: colors} + + Component.onCompleted: { + if (typeof engine.makeSharedDataConnection === "function") { + engine.makeSharedDataConnection(screen.onSharedDataUpdate) + screen.onSharedDataUpdate(engine.getSharedData()) + } + } + + function onSharedDataUpdate(data) { + if (typeof data === "object" && typeof data.group === "object") { + propTopDeckFocus = data.group[isLeftScreen ? 'leftdeck' : 'rightdeck'] === `[Channel${screen.topDeckId}]` + } + } + + width: 320 + height: 240 + clip: true + + /* + A screen is visible if - + The deck is in focus and the linked deck is not selecting a sample slot + OR + The deck is not in focus but a sample slot is selected + */ + S4MK3.DeckScreen { + id: topDeckScreen + deckId: topDeckId + visible: propTopDeckFocus + anchors.fill: parent + } + + S4MK3.DeckScreen { + id: bottomDeckScreen + deckId: bottomDeckId + visible: !propTopDeckFocus + anchors.fill: parent + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/BrowserFooter.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/BrowserFooter.qml new file mode 100755 index 000000000000..edd2dea43929 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/BrowserFooter.qml @@ -0,0 +1,340 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Defines' as Defines +import '../Defines' as Defines +import '../ViewModels' as ViewModels + +//------------------------------------------------------------------------------------------------------------------ +// LIST ITEM - DEFINES THE INFORMATION CONTAINED IN ONE LIST ITEM +//------------------------------------------------------------------------------------------------------------------ +Rectangle { + id: footer + + Defines.Colors { id: colors } + + required property var deckInfo + + property string propertiesPath: "" + property real sortingKnobValue: 0.0 + property bool isContentList: qmlBrowser.isContentList + property int maxCount: 0 + property int count: 0 + + // the given numbers are determined by the EContentListColumns in Traktor + readonly property variant sortIds: [0 ,1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] + readonly property variant sortNames: ["Sort By #", "Sort By #", "Title", "Artist", "Time", "BPM", "Track #", "Release", "Label", "Genre", "Key Text", "Comment", "Lyrics", "Comment 2", "Path", "Analysed", "Remixer", "Producer", "Mix", "CAT #", "Rel. Date", "Bitrate", "Rating", "Count", "Sort By #", "Cover Art", "Last Played", "Import Date", "Key", "Color", "File Name"] + readonly property int selectedFooterId: (selectedFooterItem.value === undefined) ? 0 : ( ( selectedFooterItem.value % 2 === 1 ) ? 1 : 4 ) // selectedFooterItem.value takes values from 1 to 4. + + property real preSortingKnobValue: 0.0 + + //-------------------------------------------------------------------------------------------------------------------- + + // AppProperty { id: previewIsLoaded; path : "app.traktor.browser.preview_player.is_loaded" } + QtObject { + id: previewIsLoaded + property string description: "Description" + property var value: 0 + } + // AppProperty { id: previewTrackLenght; path : "app.traktor.browser.preview_content.track_length" } + QtObject { + id: previewTrackLenght + property string description: "Description" + property var value: 0 + } + // AppProperty { id: previewTrackElapsed; path : "app.traktor.browser.preview_player.elapsed_time" } + QtObject { + id: previewTrackElapsed + property string description: "Description" + property var value: 0 + } + + // MappingProperty { id: overlayState; path: propertiesPath + ".overlay" } + QtObject { + id: overlayState + property string description: "Description" + property var value: 0 + } + // MappingProperty { id: isContentListProp; path: propertiesPath + ".browser.is_content_list" } + QtObject { + id: isContentListProp + property string description: "Description" + property var value: 0 + } + // MappingProperty { id: selectedFooterItem; path: propertiesPath + ".selected_footer_item" } + QtObject { + id: selectedFooterItem + property string description: "Description" + property var value: 0 + } + + //-------------------------------------------------------------------------------------------------------------------- + // Behavior on Sorting Changes (show/hide sorting widget, select next allowed sorting) + //-------------------------------------------------------------------------------------------------------------------- + + onIsContentListChanged: { + // We need this to be able do disable mappings (e.g. sorting ascend/descend) + isContentListProp.value = isContentList; + } + + onSortingKnobValueChanged: { + if (!footer.isContentList) + return; + + overlayState.value = Overlay.sorting; + sortingOverlayTimer.restart(); + + var val = clamp(footer.sortingKnobValue - footer.preSortingKnobValue, -1, 1); + val = parseInt(val); + if (val != 0) { + qmlBrowser.sortingId = getSortingIdWithDelta( val ); + footer.preSortingKnobValue = footer.sortingKnobValue; + } + } + + Timer { + id: sortingOverlayTimer + interval: 800 // duration of the scrollbar opacity + repeat: false + + onTriggered: overlayState.value = Overlay.none; + } + + //-------------------------------------------------------------------------------------------------------------------- + // View + //-------------------------------------------------------------------------------------------------------------------- + + clip: true + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + height: 21 + (settings.raiseBrowserFooter ? 4 : 0) // set in state + color: "transparent" + + // background color + Rectangle { + id: browserFooterBg + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + height: 15 + (settings.raiseBrowserFooter ? 4 : 0) + color: colors.colorBrowserHeader // footer background color + } + + Row { + id: sortingRow + anchors.left: browserFooterBg.left + anchors.leftMargin: 1 + anchors.top: browserFooterBg.top + + Item { + width: 100 + height: 15 + (settings.raiseBrowserFooter ? 4 : 0) + + Text { + font.pixelSize: fonts.scale(12) + anchors.left: parent.left + anchors.leftMargin: 3 + font.capitalization: Font.AllUppercase + color: selectedFooterId == 1 ? "white" : colors.colorFontBrowserHeader + text: getSortingNameForSortId(qmlBrowser.sortingId) + visible: qmlBrowser.isContentList + } + // Arrow (Sorting Direction Indicator) + Triangle { + id: sortDirArrow + width: 10 + height: 10 + anchors.top: parent.top + anchors.right: parent.right + anchors.topMargin: 2 + anchors.rightMargin: 6 + antialiasing: false + visible: qmlBrowser.sortingId > 0 + color: colors.colorGrey80 + rotation: ((qmlBrowser.sortingDirection == 1) ? 0 : 180) + } + Rectangle { + id: divider + height: 15 + width: 1 + color: colors.colorGrey40 // footer divider color + anchors.right: parent.right + } + } + + // Preview Player footer + Item { + width: 120 + height: 15 + + Text { + font.pixelSize: fonts.scale(12) + anchors.left: parent.left + anchors.leftMargin: 5 + font.capitalization: Font.AllUppercase + visible: !previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : "green" + text: deckInfo.masterDeckLetter + } + + Text { + font.pixelSize: fonts.scale(12) + anchors.left: parent.left + anchors.leftMargin: 20 + font.capitalization: Font.AllUppercase + visible: !previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : colors.colorFontBrowserHeader + text: deckInfo.masterBPMFooter + } + + Text { + font.pixelSize: fonts.scale(12) + anchors.right: parent.right + anchors.rightMargin: 5 + font.capitalization: Font.AllUppercase + visible: !previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : colors.musicalKeyColorsDark[deckInfo.masterKeyIndex] + text: settings.camelotKey ? utils.camelotConvert(deckInfo.masterKey) : deckInfo.masterKey + } + + Text { + font.pixelSize: fonts.scale(12) + anchors.left: parent.left + anchors.leftMargin: 5 + font.capitalization: Font.AllUppercase + visible: previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : colors.colorFontBrowserHeader + text: "Preview" + } + + // Image { + // anchors.top: parent.top + // anchors.right: parent.right + // anchors.topMargin: 2 + // anchors.rightMargin: 45 + // visible: previewIsLoaded.value + // antialiasing: false + // source: "../Images/PreviewIcon_Small.png" + // fillMode: Image.Pad + // clip: true + // cache: false + // sourceSize.width: width + // sourceSize.height: height + // } + Text { + width: 40 + clip: true + horizontalAlignment: Text.AlignRight + visible: previewIsLoaded.value + anchors.top: parent.top + anchors.right: parent.right + anchors.topMargin: 2 + anchors.rightMargin: 7 + font.pixelSize: fonts.scale(12) + font.capitalization: Font.AllUppercase + font.family: "Pragmatica" + color: colors.browser.prelisten + text: utils.convertToTimeString(previewTrackElapsed.value) + } + Rectangle { + id: divider2 + height: 15 + width: 1 + color: colors.colorGrey40 // footer divider color + anchors.right: parent.right + } + } + + Item { + width: 80 + height: 15 + + Text { + Text { + font.pixelSize: fonts.scale(12) + anchors.left: parent.left + anchors.leftMargin: 5 + font.capitalization: Font.AllUppercase + visible: true + color: colors.colorFontBrowserHeader + text: count+"/"+maxCount + } + } + } + } + + //-------------------------------------------------------------------------------------------------------------------- + // black border & shadow + //-------------------------------------------------------------------------------------------------------------------- + + Rectangle { + id: browserHeaderBottomGradient + height: 3 + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: browserHeaderBlackBottomLine.top + gradient: Gradient { + GradientStop { position: 0.0; color: colors.colorBlack0 } + GradientStop { position: 1.0; color: colors.colorBlack38 } + } + } + + Rectangle { + id: browserHeaderBlackBottomLine + height: 2 + color: colors.colorBlack + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: browserFooterBg.top + } + + //------------------------------------------------------------------------------------------------------------------ + + state: "show" + states: [ + State { + name: "show" + PropertyChanges { target: footer; height: 21 + (settings.raiseBrowserFooter ? 4 : 0) } + }, + State { + name: "hide" + PropertyChanges { target: footer; height: 0 } + } + ] + + //-------------------------------------------------------------------------------------------------------------------- + // Necessary Functions + //-------------------------------------------------------------------------------------------------------------------- + + function getSortingIdWithDelta( delta ) { + var curPos = getPosForSortId( qmlBrowser.sortingId ); + var pos = curPos + delta; + var count = sortIds.length; + + pos = (pos < 0) ? count-1 : pos; + pos = (pos >= count) ? 0 : pos; + + return sortIds[pos]; + } + + function getPosForSortId(id) { + if (id == -1) return 0; // -1 is a special case which should be interpreted as "0" + for (var i=0; i= 0 && pos < sortNames.length) + return sortNames[pos]; + return "SORTED"; + } + + function clamp(val, min, max) { + return Math.max( Math.min(val, max) , min ); + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/BrowserHeader.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/BrowserHeader.qml new file mode 100755 index 000000000000..5e258cd4995b --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/BrowserHeader.qml @@ -0,0 +1,223 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Defines' as Defines +import '../ViewModels' as ViewModels + +//------------------------------------------------------------------------------------------------------------------ +// BROWSER HEADER - SHOWS THE CURRENT BROWSER PATH +//------------------------------------------------------------------------------------------------------------------ +Item { + id: header + + Defines.Colors { id: colors } + + property int currentDeck: 0 + property int nodeIconId: 0 + + readonly property color itemColor: colors.colorWhite19 + property int highlightIndex: 0 + + readonly property var letters: ["","A", "B", "C", "D"] + + property string pathStrings: "" // the complete path in one string given by QBrowser with separator " | " + property var stringList: [""] // list of separated path elements (calculated in "updateStringList") + property int stringListModelSize: 0 // nr of entries which can be displayed in the header ( calc in updateStringList) + readonly property int maxTextWidth: 150 // if a single text path block is bigger than this: ElideMiddle + readonly property int arrowContainerWidth: 18 // width of the graphical separator arrow. includes left / right spacing + readonly property int fontSize: 13 + + clip: true + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + height: 17 // set in state + + onPathStringsChanged: { updateStringList(textLengthDummy) } + + //-------------------------------------------------------------------------------------------------------------------- + // NOTE: text item used within the 'updateStringList' function to determine how many of the stringList items can be fit + // in the header! + // IMPORTANT EXTRA NOTE: all texts in the header should have the same Capitalization and font size settings as the "dummy" + // as the dummy is used to calculate the number of text blocks fitting into the header. + //-------------------------------------------------------------------------------------------------------------------- + Text { + id: textLengthDummy + visible: false + font.capitalization: Font.AllUppercase + font.pixelSize: header.fontSize + } + + // calculates the number of entries to be displayed in the header + function updateStringList(dummy) { + var sum = 0 + var count = 0 + + stringList = pathStrings.split(" | ") + + for (var i = 0; i < stringList.length; ++i) { + dummy.text = header.stringList[stringList.length - i - 1] + + sum += (dummy.width) > maxTextWidth ? header.maxTextWidth : dummy.width + sum += arrowContainerWidth + + if (sum > (textContainter.width - header.arrowContainerWidth)) { + header.stringListModelSize = count + return + } + count++ + } + header.stringListModelSize = stringList.length; + } + + //-------------------------------------------------------------------------------------------------------------------- + // background color + Rectangle { + id: browserHeaderBg + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + height: 17 + color: colors.colorBrowserHeader //colors.colorGrey24 + } + + //-------------------------------------------------------------------------------------------------------------------- + + Item { + id: textContainter + readonly property int spaceToDeckLetter: 20 + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.left: parent.left + anchors.right: deckLetter.left + anchors.leftMargin: 3 + anchors.rightMargin: spaceToDeckLetter + clip: true + + // dots appear at the left side of the browser in case the full path does not fit into the header anymore. + Item { + id: dots + anchors.left: parent.left + anchors.top: parent.top + anchors.leftMargin: (stringListModelSize < stringList.length) ? 0 : -width + visible: (stringListModelSize < stringList.length) + width: 30 + + Text { + anchors.left: parent.left + anchors.top: parent.top + text: "..." + font.capitalization: Font.AllUppercase + font.pixelSize: header.fontSize + color: colors.colorFontBrowserHeader + } + } + + // the text flow + Flow { + id: textFlow + layoutDirection: Qt.RightToLeft + + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.left: dots.right + + Repeater { + model: stringListModelSize + Item { + id: textContainer + property string displayTxt: (stringList[stringList.length - index - 1] == undefined) ? "" : stringList[stringList.length - index - 1] + + width: headerPath.width + arrowContainerWidth + height: 20 + + // arrows + // the graphical separator between texts anchors on the left side of each text block. The space of "arrowContainerWidth" is reserved for that + // Widgets.TextSeparatorArrow { + // color: colors.colorGrey80 + // visible: true + // anchors.top: parent.top + // anchors.right: headerPath.left + // anchors.topMargin: 4 + // anchors.rightMargin: 6 // left margin is set via "arrowContainerWidth" + // } + + Text { + id: dummy + // NOTE: dummyTextPath is only used to get the displayWidth of the strings. (otherwise dynamic text sizes are hard/impossible) + text: displayTxt + visible: false + font.capitalization: Font.AllUppercase + font.pixelSize: header.fontSize + } + + Text { + id: headerPath + // dummy.width is determined by the string contained in it and ceil to whole pixels (ceil instead of round to avoid unwanted elides) + width: (dummy.width > maxTextWidth) ? maxTextWidth : Math.ceil(dummy.width ) + elide: Text.ElideMiddle + text: displayTxt + visible: true + color: (index == 0) ? colors.colorDeckBlueBright : colors.colorGrey88 + font.capitalization: Font.AllUppercase + font.pixelSize: header.fontSize + } + } + } + } + } + + //-------------------------------------------------------------------------------------------------------------------- + + Text { + id: deckLetter + anchors.right: parent.right + anchors.top: parent.top + height: parent.height + width: parent.height + + text: header.letters[header.currentDeck] + font.capitalization: Font.AllUppercase + font.pixelSize: header.fontSize + color: colors.colorDeckBlueBright + } + + //-------------------------------------------------------------------------------------------------------------------- + // black border & shadow + + Rectangle { + id: browserHeaderBlackBottomLine + anchors.left: parent.left + anchors.right: parent.right + anchors.top: browserHeaderBg.bottom + height: 2 + color: colors.colorBlack + } + + Rectangle { + id: browserHeaderBottomGradient + anchors.left: parent.left + anchors.right: parent.right + anchors.top: browserHeaderBlackBottomLine.bottom + height: 3 + gradient: Gradient { + GradientStop { position: 0.0; color: colors.colorBlack38 } + GradientStop { position: 1.0; color: colors.colorBlack0 } + } + } + + //-------------------------------------------------------------------------------------------------------------------- + + state: "show" + states: [ + State { + name: "show" + PropertyChanges {target: header; height: 15} + }, + State { + name: "hide" + PropertyChanges {target: header; height: 0} + } + ] +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/ListDelegate.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/ListDelegate.qml new file mode 100755 index 000000000000..54e8525fa5e6 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/ListDelegate.qml @@ -0,0 +1,262 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +//------------------------------------------------------------------------------------------------------------------ +// LIST ITEM - DEFINES THE INFORMATION CONTAINED IN ONE LIST ITEM +//------------------------------------------------------------------------------------------------------------------ + +// the model contains the following roles: +// dataType, nodeIconId, nodeName, nrOfSubnodes, coverUrl, artistName, trackName, bpm, key, keyIndex, rating, loadedInDeck, prevPlayed, prelisten + +Item { + id: contactDelegate + + Defines.Settings {id: settings} + + property string masterBPM: "" + property string masterKey: "" + property int keyIndex: 0 + property bool isPlaying: false + property bool adjacentKeys: false + property string newIndex: keyIndex || "" + property string masterKeyIndex: keyIndex + property color deckColor: qmlBrowser.focusColor + property color textColor: !ListView.isCurrentItem ? "White" : deckColor + property bool isCurrentItem: ListView.isCurrentItem + readonly property int textTopMargin: 5 // centers text vertically + // readonly property bool isLoaded: (dataType == "Track") ? model.loadedInDeck.length > 0 : false + readonly property bool isLoaded: false + // visible: !ListView.isCurrentItem + readonly property string dataType: "Track" + readonly property string artistName: model.artist + readonly property string trackName: model.title + readonly property string key: "" + readonly property string bpmText: "---" + readonly property real bpm: 0 + + readonly property string bpmMatch: tempoNeeded(masterBPM, bpm).toFixed(2).toString() + + property bool deck1: deckInfo.is1Playing + property bool deck2: deckInfo.is2Playing + property bool deck3: deckInfo.is3Playing + property bool deck4: deckInfo.is4Playing + + readonly property bool deckPlaying: deck1 || deck2 || deck3 || deck4 + + function tempoNeeded(master, current) { + if (master > current) { + return (1-(current/master))*100; + } + + return ((master/current)-1)*100; + } + + readonly property int key1m: 21 + readonly property int key2m: 16 + readonly property int key3m: 23 + readonly property int key4m: 18 + readonly property int key5m: 13 + readonly property int key6m: 20 + readonly property int key7m: 15 + readonly property int key8m: 22 + readonly property int key9m: 17 + readonly property int key10m: 12 + readonly property int key11m: 19 + readonly property int key12m: 14 + readonly property int key1d: 0 + readonly property int key2d: 7 + readonly property int key3d: 2 + readonly property int key4d: 9 + readonly property int key5d: 4 + readonly property int key6d: 11 + readonly property int key7d: 6 + readonly property int key8d: 1 + readonly property int key9d: 8 + readonly property int key10d: 3 + readonly property int key11d: 10 + readonly property int key12d: 5 + + function colorKey(newKey,masterKey) { + if (!contactDelegate.adjacentKeys) {return true} + else if ((newKey == masterKey)) {return true} + else if (masterKey == "") {return false} + else if (masterKey == "21" && (newKey == "14" || newKey == "16" || newKey == "0")) {return true} + else if (masterKey == "16" && (newKey == "21" || newKey == "23" || newKey == "7")) {return true} + else if (masterKey == "23" && (newKey == "16" || newKey == "18" || newKey == "2")) {return true} + else if (masterKey == "18" && (newKey == "23" || newKey == "13" || newKey == "9")) {return true} + else if (masterKey == "13" && (newKey == "18" || newKey == "20" || newKey == "4")) {return true} + else if (masterKey == "20" && (newKey == "13" || newKey == "15" || newKey == "11")) {return true} + else if (masterKey == "15" && (newKey == "20" || newKey == "22" || newKey == "6")) {return true} + else if (masterKey == "22" && (newKey == "15" || newKey == "17" || newKey == "1")) {return true} + else if (masterKey == "17" && (newKey == "22" || newKey == "12" || newKey == "8")) {return true} + else if (masterKey == "12" && (newKey == "17" || newKey == "19" || newKey == "3")) {return true} + else if (masterKey == "19" && (newKey == "12" || newKey == "14" || newKey == "10")) {return true} + else if (masterKey == "14" && (newKey == "19" || newKey == "21" || newKey == "5")) {return true} + else if (masterKey == "0" && (newKey == "5" || newKey == "7" || newKey == "21")) {return true} + else if (masterKey == "7" && (newKey == "0" || newKey == "2" || newKey == "16")) {return true} + else if (masterKey == "2" && (newKey == "7" || newKey == "9" || newKey == "23")) {return true} + else if (masterKey == "9" && (newKey == "2" || newKey == "4" || newKey == "18")) {return true} + else if (masterKey == "4" && (newKey == "9" || newKey == "11" || newKey == "13")) {return true} + else if (masterKey == "11" && (newKey == "4" || newKey == "6" || newKey == "20")) {return true} + else if (masterKey == "6" && (newKey == "11" || newKey == "1" || newKey == "15")) {return true} + else if (masterKey == "1" && (newKey == "6" || newKey == "8" || newKey == "22")) {return true} + else if (masterKey == "8" && (newKey == "1" || newKey == "3" || newKey == "17")) {return true} + else if (masterKey == "3" && (newKey == "8" || newKey == "10" || newKey == "12")) {return true} + else if (masterKey == "10" && (newKey == "3" || newKey == "5" || newKey == "19")) {return true} + else if (masterKey == "5" && (newKey == "10" || newKey == "0" || newKey == "14")) {return true} + else {return false}; + } + + // MappingProperty { id: propShift1; path: "mapping.state.left.shift" } + QtObject { + id: propShift1 + property string description: "Description" + property var value: 0 + } + // MappingProperty { id: propShift2; path: "mapping.state.right.shift" } + QtObject { + id: propShift2 + property string description: "Description" + property var value: 0 + } + readonly property bool isShift: propShift1.value || propShift2.value + readonly property bool isShiftleft: propShift1.value + readonly property bool isShiftRight: propShift2.value + + height: settings.browserFontSize*2 + anchors.left: parent.left + anchors.right: parent.right + + // container for zebra & track infos + Rectangle { + // when changing colors here please remember to change it in the GridView in Templates/Browser.qml + color: (index%2 == 0) ? colors.colorGrey32 : "Black" + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: settings.showTrackTitleColumn ? 3 : 0 + anchors.rightMargin: 3 + height: parent.height + + // folder name + Text { + id: firstFieldFolder + anchors.left: parent.left + anchors.top: parent.top + anchors.topMargin: contactDelegate.textTopMargin + anchors.leftMargin: 37 + color: textColor + clip: true + text: (dataType == "Folder") ? model.nodeName : "" + font.pixelSize: settings.browserFontSize + elide: Text.ElideRight + visible: (dataType != "Track") + width: 190 + } + + // Image { + // id: prepListIcon + // visible: (dataType == "Track") ? model.prepared : false + // source: "../Images/PrepListIcon" + (!contactDelegate.isCurrentItem ? "White" : "Blue") + ".png" + // width: 10 + // height: 17 + // // anchors.left: firstFieldText.right + // anchors.top: parent.top + // anchors.topMargin: 6 + // anchors.leftMargin: 5 + // } + + // track name + Text { + id: firstFieldTrack + width: settings.swapArtistTitleColumns ? (settings.showArtistColumn ? (settings.hideBPM ? 110 : 77) + (settings.hideKey ? 30 : 0) : 0) + (!settings.showTrackTitleColumn ? 150 : 0) : !settings.showTrackTitleColumn ? 0 : (!settings.showArtistColumn && settings.hideBPM ? 280 : (settings.showArtistColumn ? 150 : 230)) + (!settings.showArtistColumn && settings.hideKey ? 30 : 0) + visible: (dataType == "Track") + anchors.top: parent.top + anchors.topMargin: contactDelegate.textTopMargin + anchors.left: parent.left + anchors.leftMargin: model.prepared ? 10 : 0 + elide: Text.ElideRight + text: settings.swapArtistTitleColumns ? ((dataType == "Track") ? artistName : "") : (settings.showArtistColumn && settings.showTrackTitleColumn ? ((dataType == "Track") ? trackName : "") : (!isShift && !settings.showArtistColumn && settings.showTrackTitleColumn ? ((dataType == "Track") ? trackName : "") : ((dataType == "Track") ? artistName : ""))) + font.pixelSize: settings.browserFontSize + color: isLoaded ? "lime" : ((model.prevPlayed && !model.prelisten) ? "yellow" : (!bpm ? "red" : textColor)) + } + + // artist name + Text { + id: trackTitleField + anchors.leftMargin: settings.showArtistColumn && settings.showTrackTitleColumn ? 4 : 0 + anchors.left: (dataType == "Track") ? firstFieldTrack.right : firstFieldFolder.right + anchors.top: parent.top + anchors.topMargin: contactDelegate.textTopMargin + width: settings.swapArtistTitleColumns ? !settings.showTrackTitleColumn ? 0 : (!settings.showArtistColumn && settings.hideBPM ? 280 : (settings.showArtistColumn ? 150 : 230)) + (!settings.showArtistColumn && settings.hideKey ? 30 : 0) : (settings.showArtistColumn ? (settings.hideBPM ? 110 : 77) + (settings.hideKey ? 30 : 0) : 0) + (!settings.showTrackTitleColumn ? 150 : 0) + color: isLoaded ? "lime" : ((model.prevPlayed && !model.prelisten) ? "yellow" : (!bpm ? "red" : textColor)) + clip: true + text: settings.swapArtistTitleColumns ? (dataType == "Track") ? trackName : "" : (settings.showArtistColumn && settings.showTrackTitleColumn ? ((dataType == "Track") ? artistName : "") : (!isShift && settings.showArtistColumn && !settings.showTrackTitleColumn ? ((dataType == "Track") ? artistName : "") : (dataType == "Track") ? trackName : "")) + font.pixelSize: settings.browserFontSize + elide: Text.ElideRight + } + + // bpm + Text { + id: bpmField + anchors.right: keyField.left + anchors.top: parent.top + anchors.topMargin: contactDelegate.textTopMargin + horizontalAlignment: Text.AlignLeft + width: settings.hideBPM ? 0 :53 + color: settings.bpmBrowserTextColor ? (bpm == "0.00") ? "red" : (bpmMatch <= settings.browserBpmGreen) && (bpmMatch >= -(settings.browserBpmGreen)) ? "lime" : (!((bpmMatch >= settings.browserBpmRed) || (bpmMatch <= -(settings.browserBpmRed)) && (masterBPM != "0.00")) ? textColor : settings.accentColor) : textColor + clip: true + text: (dataType == "Track") ? bpmText : "" + font.pixelSize: settings.browserFontSize + } + + function colorForKey(keyIndex) { + return colors.musicalKeyColors[keyIndex] + } + + // key + Text { + id: keyField + anchors.right: parent.right + anchors.top: parent.top + anchors.topMargin: contactDelegate.textTopMargin + anchors.leftMargin: 5 + + color: (dataType == "Track") ? (((key == "none") || (key == "None")) ? "White" : ((colorKey(contactDelegate.newIndex, contactDelegate.masterKeyIndex) && contactDelegate.deckPlaying) ? parent.colorForKey(keyIndex) : "White")) : "White" + width: settings.hideKey ? 0 : 30 + clip: true + text: (dataType == "Track") ? (((key == "none") || (key == "None")) ? "n.a." : (settings.camelotKey ? utils.camelotConvert(key) : key)) : "" + font.pixelSize: settings.browserFontSize + } + + ListHighlight { + anchors.fill: parent + visible: contactDelegate.isCurrentItem + anchors.leftMargin: 0 + anchors.rightMargin: 0 + } + + // folder icon + Image { + id: folderIcon + source: (dataType == "Folder") ? ("image://icons/" + model.nodeIconId ) : "" + width: 33 + height: 33 + fillMode: Image.PreserveAspectFit + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 3 + clip: true + cache: false + visible: (dataType == "Folder") + } + + // ColorOverlay { + // id: folderIconColorOverlay + // color: isCurrentItem == false ? colors.colorFontsListBrowser : contactDelegate.deckColor // unselected vs. selected + // anchors.fill: folderIcon + // source: folderIcon + // } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/ListHighlight.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/ListHighlight.qml new file mode 100755 index 000000000000..28dadb00bdb5 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/ListHighlight.qml @@ -0,0 +1,19 @@ +import QtQuick 2.15 + +Item { + Rectangle { + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + height: 1 + color: "blue" + } + + Rectangle { + anchors.bottom: parent.bottom + anchors.left: parent.left + anchors.right: parent.right + height: 1 + color: "blue" + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/TrackFooter.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/TrackFooter.qml new file mode 100755 index 000000000000..f6c0213cb83b --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/TrackFooter.qml @@ -0,0 +1,353 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Defines' as Defines +import '../Defines' as Defines +import '../ViewModels' as ViewModels + +//------------------------------------------------------------------------------------------------------------------ +// LIST ITEM - DEFINES THE INFORMATION CONTAINED IN ONE LIST ITEM +//------------------------------------------------------------------------------------------------------------------ +Rectangle { + id: footer + + Defines.Colors { id: colors } + + required property var deckInfo + + property string propertiesPath: "" + property real sortingKnobValue: 0.0 + property bool isContentList: qmlBrowser.isContentList + property int maxCount: 0 + property int count: 0 + + // the given numbers are determined by the EContentListColumns in Traktor + readonly property variant sortIds: [0 ,1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] + readonly property variant sortNames: ["Sort By #", "Sort By #", "Title", "Artist", "Time", "BPM", "Track #", "Label", "Release", "Label", "Key Text", "Comment", "Lyrics", "Comment 2", "Path", "Analysed", "Remixer", "Producer", "Mix", "CAT #", "Rel. Date", "Bitrate", "Rating", "Count", "Sort By #", "Cover Art", "Last Played", "Import Date", "Key", "Color", "File Name"] + readonly property int selectedFooterId: (selectedFooterItem.value === undefined) ? 0 : ( ( selectedFooterItem.value % 2 === 1 ) ? 1 : 4 ) // selectedFooterItem.value takes values from 1 to 4. + + property real preSortingKnobValue: 0.0 + + //-------------------------------------------------------------------------------------------------------------------- + + // AppProperty { id: previewIsLoaded; path : "app.traktor.browser.preview_player.is_loaded" } + QtObject { + id: previewIsLoaded + property string description: "Description" + property var value: 0 + } + // AppProperty { id: previewTrackLenght; path : "app.traktor.browser.preview_content.track_length" } + QtObject { + id: previewTrackLenght + property string description: "Description" + property var value: 0 + } + // AppProperty { id: previewTrackElapsed; path : "app.traktor.browser.preview_player.elapsed_time" } + QtObject { + id: previewTrackElapsed + property string description: "Description" + property var value: 0 + } + + // MappingProperty { id: overlayState; path: propertiesPath + ".overlay" } + QtObject { + id: overlayState + property string description: "Description" + property var value: 0 + } + // MappingProperty { id: isContentListProp; path: propertiesPath + ".browser.is_content_list" } + QtObject { + id: isContentListProp + property string description: "Description" + property var value: 0 + } + // MappingProperty { id: selectedFooterItem; path: propertiesPath + ".selected_footer_item" } + QtObject { + id: selectedFooterItem + property string description: "Description" + property var value: 0 + } + + //-------------------------------------------------------------------------------------------------------------------- + // Behavior on Sorting Changes (show/hide sorting widget, select next allowed sorting) + //-------------------------------------------------------------------------------------------------------------------- + + onIsContentListChanged: { + // We need this to be able do disable mappings (e.g. sorting ascend/descend) + isContentListProp.value = isContentList; + } + + onSortingKnobValueChanged: { + if (!footer.isContentList) + return; + + overlayState.value = Overlay.sorting; + sortingOverlayTimer.restart(); + + var val = clamp(footer.sortingKnobValue - footer.preSortingKnobValue, -1, 1); + val = parseInt(val); + if (val != 0) { + qmlBrowser.sortingId = getSortingIdWithDelta( val ); + footer.preSortingKnobValue = footer.sortingKnobValue; + } + } + + Timer { + id: sortingOverlayTimer + interval: 800 // duration of the scrollbar opacity + repeat: false + + onTriggered: overlayState.value = Overlay.none; + } + + //-------------------------------------------------------------------------------------------------------------------- + // View + //-------------------------------------------------------------------------------------------------------------------- + + clip: false + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + height: 36 + (settings.raiseBrowserFooter ? 4 : 0) // set in state + color: "transparent" + + // background color + Rectangle { + id: browserFooterBg + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + height: 30 + (settings.raiseBrowserFooter ? 4 : 0) + color: colors.colorBrowserHeader // footer background color + } + + Row { + id: sortingRow + anchors.left: browserFooterBg.left + anchors.leftMargin: 1 + anchors.top: browserFooterBg.top + + Item { + width: 100 + height: 30 + (settings.raiseBrowserFooter ? 4 : 0) + + Text { + font.pixelSize: fonts.scale(15) + anchors.left: parent.left + anchors.leftMargin: 3 + anchors.top: parent.top + anchors.topMargin: 3 + font.capitalization: Font.AllUppercase + color: selectedFooterId == 1 ? "white" : colors.colorFontBrowserHeader + text: getSortingNameForSortId(qmlBrowser.sortingId) + visible: qmlBrowser.isContentList + } + // Arrow (Sorting Direction Indicator) + Triangle { + id: sortDirArrow + width: 15 + height: 15 + anchors.top: parent.top + anchors.right: parent.right + anchors.topMargin: 4 + anchors.rightMargin: 6 + antialiasing: false + visible: qmlBrowser.sortingId > 0 + color: colors.colorGrey80 + rotation: ((qmlBrowser.sortingDirection == 1) ? 0 : 180) + } + Rectangle { + id: divider + height: 30 + width: 1 + color: colors.colorGrey40 // footer divider color + anchors.right: parent.right + } + } + + // Preview Player footer + Item { + width: 150 + height: 30 + + Text { + font.pixelSize: fonts.scale(18) + anchors.left: parent.left + anchors.leftMargin: 1 + anchors.top: parent.top + anchors.topMargin: 3 + font.capitalization: Font.AllUppercase + visible: !previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : "green" + text: deckInfo.masterDeckLetter + } + + Text { + font.pixelSize: fonts.scale(18) + anchors.left: parent.left + anchors.leftMargin: 15 + anchors.top: parent.top + anchors.topMargin: 3 + font.capitalization: Font.AllUppercase + visible: !previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : colors.colorFontBrowserHeader + text: deckInfo.masterBPMFooter2 + } + + Text { + font.pixelSize: fonts.scale(18) + anchors.right: parent.right + anchors.rightMargin: 2 + anchors.top: parent.top + anchors.topMargin: 3 + font.capitalization: Font.AllUppercase + visible: !previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : colors.musicalKeyColorsDark[deckInfo.masterKeyIndex] + text: settings.camelotKey ? utils.camelotConvert(deckInfo.masterKey) : deckInfo.masterKey + } + + Text { + font.pixelSize: fonts.scale(16) + anchors.left: parent.left + anchors.leftMargin: 5 + anchors.top: parent.top + anchors.topMargin: 3 + font.capitalization: Font.AllUppercase + visible: previewIsLoaded.value + color: selectedFooterId == 4 ? "white" : colors.colorFontBrowserHeader + text: "Preview" + } + + // Image { + // anchors.top: parent.top + // anchors.right: parent.right + // anchors.topMargin: 3 + // anchors.rightMargin: 49 + // visible: previewIsLoaded.value + // antialiasing: false + // source: "../Images/PreviewIcon_Small.png" + // fillMode: Image.Pad + // clip: true + // cache: false + // width: 20 + // height: 20 + // } + Text { + width: 40 + clip: true + horizontalAlignment: Text.AlignRight + visible: previewIsLoaded.value + anchors.top: parent.top + anchors.right: parent.right + anchors.topMargin: 2 + anchors.rightMargin: 7 + font.pixelSize: fonts.scale(18) + font.capitalization: Font.AllUppercase + font.family: "Pragmatica" + color: colors.browser.prelisten + text: utils.convertToTimeString(previewTrackElapsed.value) + } + Rectangle { + id: divider2 + height: 30 + width: 1 + color: colors.colorGrey40 // footer divider color + anchors.right: parent.right + } + } + + Item { + + width: 150 + height: 30 + + Text { + Text { + font.pixelSize: fonts.scale(20) + anchors.left: parent.right + anchors.leftMargin: 3 + anchors.top: parent.top + anchors.topMargin: 3 + font.capitalization: Font.AllUppercase + visible: true + color: colors.colorFontBrowserHeader + text: count + } + } + } + } + + //-------------------------------------------------------------------------------------------------------------------- + // black border & shadow + //-------------------------------------------------------------------------------------------------------------------- + + Rectangle { + id: browserHeaderBottomGradient + height: 3 + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: browserHeaderBlackBottomLine.top + gradient: Gradient { + GradientStop { position: 0.0; color: colors.colorBlack0 } + GradientStop { position: 1.0; color: colors.colorBlack38 } + } + } + + Rectangle { + id: browserHeaderBlackBottomLine + height: 2 + color: colors.colorBlack + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: browserFooterBg.top + } + + //------------------------------------------------------------------------------------------------------------------ + + state: "show" + states: [ + State { + name: "show" + PropertyChanges { target: footer; height: 36 + (settings.raiseBrowserFooter ? 4 : 0) } + }, + State { + name: "hide" + PropertyChanges { target: footer; height: 0 } + } + ] + + //-------------------------------------------------------------------------------------------------------------------- + // Necessary Functions + //-------------------------------------------------------------------------------------------------------------------- + + function getSortingIdWithDelta( delta ) { + var curPos = getPosForSortId( qmlBrowser.sortingId ); + var pos = curPos + delta; + var count = sortIds.length; + + pos = (pos < 0) ? count-1 : pos; + pos = (pos >= count) ? 0 : pos; + + return sortIds[pos]; + } + + function getPosForSortId(id) { + if (id == -1) return 0; // -1 is a special case which should be interpreted as "0" + for (var i=0; i= 0 && pos < sortNames.length) + return sortNames[pos]; + return "SORTED"; + } + + function clamp(val, min, max) { + return Math.max( Math.min(val, max) , min ); + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/TrackView.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/TrackView.qml new file mode 100755 index 000000000000..7ec1eb1a2f64 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/TrackView.qml @@ -0,0 +1,202 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +//------------------------------------------------------------------------------------------------------------------ +// LIST ITEM - DEFINES THE INFORMATION CONTAINED IN ONE LIST ITEM +//------------------------------------------------------------------------------------------------------------------ + +// the model contains the following roles: +// dataType, nodeIconId, nodeName, nrOfSubnodes, coverUrl, artistName, trackName, bpm, key, keyIndex, rating, loadedInDeck, prevPlayed, prelisten + +Item { + id: contactDelegate + + Defines.Settings {id: settings} + + property string masterBPM: "" + property color deckColor: qmlBrowser.focusColor + property color textColor: !ListView.isCurrentItem ? "White" : deckColor + property bool isCurrentItem: ListView.isCurrentItem + readonly property int textTopMargin: 5 // centers text vertically + readonly property bool isLoaded: (model.dataType == "Track") ? model.loadedInDeck.length > 0 : false + readonly property int rating: (model.dataType == "Track") ? ((model.rating == "") ? 0 : model.rating ) : 0 + // visible: !ListView.isCurrentItem + readonly property string bpm: (model.bpm || 0).toFixed(2).toString() + + readonly property string bpmMatch: tempoNeeded(masterBPM, bpm).toFixed(2).toString() + + function tempoNeeded(master, current) { + if (master > current) { + + return (1-(current/master))*100; + + } else if (master < current) { + + return ((master/current)-1)*100; + } + } + + // MappingProperty { id: propShift1; path: "mapping.state.left.shift" } + QtObject { + id: propShift1 + property string description: "Description" + property var value: 0 + } + // MappingProperty { id: propShift2; path: "mapping.state.right.shift" } + QtObject { + id: propShift2 + property string description: "Description" + property var value: 0 + } + readonly property bool isShift: propShift1.value || propShift2.value + readonly property bool isShiftleft: propShift1.value + readonly property bool isShiftRight: propShift2.value + + height: 240 + anchors.left: parent.left + anchors.right: parent.right + + // container for zebra & track infos + Rectangle { + // when changing colors here please remember to change it in the GridView in Templates/Browser.qml + color: (index%2 == 0) ? colors.colorGrey32 : "Black" + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: settings.showTrackTitleColumn ? 3 : 0 + anchors.rightMargin: 3 + height: parent.height + + // track name + Text { + id: firstFieldTrack + width: 300 + clip: true + anchors.top: trackImage.bottom + anchors.topMargin: contactDelegate.textTopMargin + anchors.left: parent.left + anchors.leftMargin: 5 + text: (model.dataType == "Track") ? model.trackName : "" + font.pixelSize: 20 + color: isLoaded ? "lime" : ((model.prevPlayed && !model.prelisten) ? "yellow" : (((model.bpm || 0).toFixed(4) == "0.0000" ) ? "red" : textColor)) + } + + // artist name + Text { + id: trackTitleField + anchors.top: firstFieldTrack.bottom + anchors.topMargin: contactDelegate.textTopMargin + anchors.left: parent.left + anchors.leftMargin: 5 + width: 300 + color: isLoaded ? "lime" : ((model.prevPlayed && !model.prelisten) ? "yellow" : (((model.bpm || 0).toFixed(4) == "0.0000" ) ? "red" : textColor)) + clip: true + text: (model.dataType == "Track") ? model.artistName : "" + font.pixelSize: 20 + } + + //bpm text + Text { + id: bpmFieldText + anchors.top: parent.top + anchors.left: trackImage.right + anchors.leftMargin: 5 + anchors.topMargin: 5 + horizontalAlignment: Text.AlignLeft + + color: "white" + text: "BPM:" + font.pixelSize: 28 + } + + //bpm + Text { + id: bpmField + anchors.top: parent.top + anchors.rightMargin: 0 + anchors.right: parent.right + anchors.topMargin: 5 + horizontalAlignment: Text.AlignRight + + color: settings.bpmBrowserTextColor ? (bpm == "0.00") ? "red" : (bpmMatch <= settings.browserBpmGreen) && (bpmMatch >= -(settings.browserBpmGreen)) ? "lime" : (!((bpmMatch >= settings.browserBpmRed) || (bpmMatch <= -(settings.browserBpmRed)) && (masterBPM != "0.00")) ? textColor : settings.accentColor) : textColor + clip: true + text: (model.dataType == "Track") ? bpm : "" + font.pixelSize: 30 + } + + function colorForKey(keyIndex) { + return colors.musicalKeyColors[keyIndex] + } + + // key text + Text { + id: keyFieldText + anchors.top: bpmField.bottom + anchors.left: trackImage.right + anchors.topMargin: 8 + anchors.leftMargin: 5 + + color: "white" + clip: true + text: "Key:" + font.pixelSize: 30 + } + + // key + Text { + id: keyField + anchors.top: bpmField.bottom + anchors.right: parent.right + anchors.topMargin: 8 + anchors.rightMargin: 0 + + color: (model.dataType == "Track") ? (((model.key == "none") || (model.key == "None")) ? textColor : parent.colorForKey(model.keyIndex)) : textColor + clip: true + text: (model.dataType == "Track") ? (((model.key == "none") || (model.key == "None")) ? "n.a." : (settings.camelotKey ? utils.camelotConvert(model.key) : model.key)) : "" + font.pixelSize: 30 + } + + Widgets.TrackRating { + id: trackRating + + anchors.top: keyFieldText.bottom + anchors.left: trackImage.right + anchors.topMargin: 8 + anchors.leftMargin: 5 + rating: (model.dataType == "Track") ? ((model.rating == "") ? 0 : model.rating ) : 0 + } + + ListHighlight { + anchors.fill: parent + visible: contactDelegate.isCurrentItem + anchors.leftMargin: 0 + anchors.rightMargin: 0 + } + + Rectangle { + id: trackImage + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 5 + anchors.topMargin: 10 + width: 125 + height: 125 + color: (model.coverUrl != "") ? "transparent" : ((contactDelegate.screenFocus < 2) ? colors.colorDeckBlueBright50Full : colors.colorGrey128 ) + visible: (model.dataType == "Track") && !settings.hideAlbumArt + + Image { + id: cover + anchors.fill: parent + source: (model.dataType == "Track") ? ("image://covers/" + model.coverUrl ) : "" + fillMode: Image.PreserveAspectFit + clip: true + cache: false + sourceSize.width: width + sourceSize.height: height + // the image either provides the cover of the track, or if not available the traktor logo on colored background ( opacity == 0.3) + opacity: (model.coverUrl != "") ? 1.0 : 0.3 + } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/Triangle.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/Triangle.qml new file mode 100755 index 000000000000..97cbe25ab4da --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Browser/Triangle.qml @@ -0,0 +1,29 @@ +import QtQuick 2.15 +import QtQuick.Shapes 1.7 + +Item { + id: root + + property int borderWidth: 0 + property color color: "black" + property color borderColor: "transparent" + + property alias antialiasing: triangle.antialiasing + + clip: false + + Shape { + id: triangle + anchors.centerIn: parent + + ShapePath { + strokeWidth: root.borderWidth + strokeColor: root.borderColor + fillColor: root.color + startX: 0; startY: 0 + PathLine { x: root.width; y: 0 } + PathLine { x: 0.5* root.width; y: root.height } + PathLine { x: 0; y: 0 } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/DeckScreen.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/DeckScreen.qml new file mode 100755 index 000000000000..bb4fccc836f8 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/DeckScreen.qml @@ -0,0 +1,185 @@ +import QtQuick 2.15 +import './Defines' as Dfeines +import './Views' as Views +import './ViewModels' as ViewModels +import './Overlays' as Overlays + +Item { + id: deckscreen + + property int deckId: 1 + + property bool active: true + + //-------------------------------------------------------------------------------------------------------------------- + // Deck Screen: show information for track, stem, remix decks + //-------------------------------------------------------------------------------------------------------------------- + QtObject { + id: deckType + property string description: deckInfoModel.isStemsActive ? "Stem Deck" : "Track Deck" + property var value: 1 + } + + QtObject { + id: propShift1 + property var value: false + } + QtObject { + id: propShift2 + property var value: false + } + readonly property bool isShift: propShift1.value || propShift2.value + + property bool browser: settings.showBrowserOnFavorites ? ((deckInfoModel.viewButton) || (deckInfoModel.favorites)) : (deckInfoModel.viewButton) + + Component.onCompleted: { + if (typeof engine.makeSharedDataConnection === "function") { + engine.makeSharedDataConnection(deckscreen.onSharedDataUpdate) + deckscreen.onSharedDataUpdate(engine.getSharedData()) + } + } + + function isLeftScreen(deckId) { + return deckId == 1 || deckId == 3; + } + + function onSharedDataUpdate(data) { + if (typeof data === "object" && typeof data.shift === "object") { + propShift1.value = !!data.shift["leftdeck"] + propShift2.value = !!data.shift["rightdeck"] + } + } + + ViewModels.DeckInfo { + id: deckInfoModel + deckId: deckscreen.deckId + } + + Component { + id: emptyDeckComponent; + + Views.EmptyDeck { + anchors.fill: parent + deckInfo: deckInfoModel + } + } + + Component { + id: trackDeckComponent; + Views.TrackDeck { + id: trackDeck + deckInfo: deckInfoModel + deckId: deckscreen.deckId + anchors.fill: parent + } + } + + Component { + id: browserComponent; + Views.BrowserView { + id: browserView + deckInfo: deckInfoModel + anchors.fill: parent + isActive: (loader.sourceComponent == browserComponent) && deckscreen.active + } + } + + Component { + id: stemDeckComponent; + + Views.StemDeck { + deckInfo: deckInfoModel + anchors.fill: parent + } + } + + Loader { + id: loader + active: true + visible: true + anchors.fill: parent + sourceComponent: trackDeckComponent + } + + Item { + id: content + state: "Empty Deck" + + Component.onCompleted: { + content.state = Qt.binding(function() { + return (browser && settings.enableBrowserMode) ? "Browser" : deckType.description }); + } + + states: [ + State { + name: "Empty Deck" + PropertyChanges { target: loader; sourceComponent: emptyDeckComponent } + }, + State { + name: "Track Deck" + PropertyChanges { target: loader; sourceComponent: trackDeckComponent } + }, + State { + name: "Browser" + PropertyChanges { target: loader; sourceComponent: browserComponent } + }, + State { + name: "Stem Deck" + PropertyChanges { target: loader; sourceComponent: stemDeckComponent } + } + ] + } + + Overlays.GridControls { + id: grid + deckId: deckInfoModel.deckId + showHideState: !settings.hideGridOverlay && deckInfoModel.adjustEnabled && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.BankInfo { + id: bank1; + bank: 1 + showHideState: deckInfoModel.padsModeBank1 && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.BankInfo { + id: bank2; + bank: 2 + showHideState: deckInfoModel.padsModeBank2 && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.CueInfo { + id: cue + hotcue: deckInfoModel.hotcueId + type: deckInfoModel.hotcueType + name: deckInfoModel.hotcueName + showHideState: !settings.hideHotcueOverlay && deckInfoModel.hotcueDisplay && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.JumpControls { + id: jump; + deckInfo: deckInfoModel + showHideState: !settings.hideJumpOverlay && deckInfoModel.padsModeJump && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.LoopControls { + id: loop; + deckInfo: deckInfoModel + deckId: deckInfoModel.deckId + showHideState: !settings.hideLoopOverlay && deckInfoModel.padsModeLoop && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.RollControls { + id: roll; + deckInfo: deckInfoModel + deckId: deckInfoModel.deckId + showHideState: !settings.hideRollOverlay && deckInfoModel.padsModeRoll && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } + + Overlays.ToneControls { + id: tone; + deckId: deckInfoModel.deckId + adjustVal: deckInfoModel.keyAdjustVal + showHideState: !settings.hideToneOverlay && deckInfoModel.padsModeTone && !(loader.sourceComponent == browserComponent) ? "show" : "hide" + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Colors.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Colors.qml new file mode 100755 index 000000000000..ab2c0ceb77da --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Colors.qml @@ -0,0 +1,549 @@ +import QtQuick 2.15 + +QtObject { + + function rgba(r,g,b,a) { return Qt.rgba( neutralizer(r)/255. , neutralizer(g)/255. , neutralizer(b)/255. , neutralizer(a)/255. ) } + + // this categorizes any rgb value to multiples of 8 for each channel to avoid unbalanced colors on the display (r5-g6-b5 bit) + // function neutralizer(value) { if(value%8 > 4) { return value - value%8 + 8} else { return value - value%8 }} + function neutralizer(value) { return value} + + property variant colorBlack: rgba (0, 0, 0, 255) + property variant colorBlack94: rgba (0, 0, 0, 240) + property variant colorBlack88: rgba (0, 0, 0, 224) + property variant colorBlack85: rgba (0, 0, 0, 217) + property variant colorBlack81: rgba (0, 0, 0, 207) + property variant colorBlack78: rgba (0, 0, 0, 199) + property variant colorBlack75: rgba (0, 0, 0, 191) + property variant colorBlack69: rgba (0, 0, 0, 176) + property variant colorBlack66: rgba (0, 0, 0, 168) + property variant colorBlack63: rgba (0, 0, 0, 161) + property variant colorBlack60: rgba (0, 0, 0, 153) // from 59 - 61% + property variant colorBlack56: rgba (0, 0, 0, 143) // + property variant colorBlack53: rgba (0, 0, 0, 135) // from 49 - 51% + property variant colorBlack50: rgba (0, 0, 0, 128) // from 49 - 51% + property variant colorBlack47: rgba (0, 0, 0, 120) // from 46 - 48% + property variant colorBlack44: rgba (0, 0, 0, 112) // from 43 - 45% + property variant colorBlack41: rgba (0, 0, 0, 105) // from 40 - 42% + property variant colorBlack38: rgba (0, 0, 0, 97) // from 37 - 39% + property variant colorBlack35: rgba (0, 0, 0, 89) // from 33 - 36% + property variant colorBlack31: rgba (0, 0, 0, 79) // from 30 - 32% + property variant colorBlack28: rgba (0, 0, 0, 71) // from 27 - 29% + property variant colorBlack25: rgba (0, 0, 0, 64) // from 24 - 26% + property variant colorBlack22: rgba (0, 0, 0, 56) // from 21 - 23% + property variant colorBlack19: rgba (0, 0, 0, 51) // from 18 - 20% + property variant colorBlack16: rgba (0, 0, 0, 41) // from 15 - 17% + property variant colorBlack12: rgba (0, 0, 0, 31) // from 11 - 13% + property variant colorBlack09: rgba (0, 0, 0, 23) // from 8 - 10% + property variant colorBlack0: rgba (0, 0, 0, 0) + + property variant colorWhite: rgba (255, 255, 255, 255) + + property variant colorWhite75: rgba (255, 255, 255, 191) + property variant colorWhite85: rgba (255, 255, 255, 217) + + // property variant colorWhite60: rgba (255, 255, 255, 153) // from 59 - 61% + property variant colorWhite50: rgba (255, 255, 255, 128) // from 49 - 51% + // property variant colorWhite47: rgba (255, 255, 255, 120) // from 46 - 48% + // property variant colorWhite44: rgba (255, 255, 255, 112) // from 43 - 45% + property variant colorWhite41: rgba (255, 255, 255, 105) // from 40 - 42% + // property variant colorWhite38: rgba (255, 255, 255, 97) // from 37 - 39% + property variant colorWhite35: rgba (255, 255, 255, 89) // from 33 - 36% + // property variant colorWhite31: rgba (255, 255, 255, 79) // from 30 - 32% + property variant colorWhite28: rgba (255, 255, 255, 71) // from 27 - 29% + property variant colorWhite25: rgba (255, 255, 255, 64) // from 24 - 26% + property variant colorWhite22: rgba (255, 255, 255, 56) // from 21 - 23% + property variant colorWhite19: rgba (255, 255, 255, 51) // from 18 - 20% + property variant colorWhite16: rgba (255, 255, 255, 41) // from 15 - 17% + property variant colorWhite12: rgba (255, 255, 255, 31) // from 11 - 13% + property variant colorWhite09: rgba (255, 255, 255, 23) // from 8 - 10% + // property variant colorWhite06: rgba (255, 255, 255, 15) // from 5 - 7% + // property variant colorWhite03: rgba (255, 255, 255, 8) // from 2 - 4% + + property variant colorGrey232: rgba (232, 232, 232, 255) + property variant colorGrey216: rgba (216, 216, 216, 255) + property variant colorGrey208: rgba (208, 208, 208, 255) + property variant colorGrey200: rgba (200, 200, 200, 255) + property variant colorGrey192: rgba (192, 192, 192, 255) + property variant colorGrey152: rgba (152, 152, 152, 255) + property variant colorGrey128: rgba (128, 128, 128, 255) + property variant colorGrey120: rgba (120, 120, 120, 255) + property variant colorGrey112: rgba (112, 112, 112, 255) + property variant colorGrey104: rgba (104, 104, 104, 255) + property variant colorGrey96: rgba (96, 96, 96, 255) + property variant colorGrey88: rgba (88, 88, 88, 255) + property variant colorGrey80: rgba (80, 80, 80, 255) + property variant colorGrey72: rgba (72, 72, 72, 255) + property variant colorGrey64: rgba (64, 64, 64, 255) + property variant colorGrey56: rgba (56, 56, 56, 255) + property variant colorGrey48: rgba (48, 48, 48, 255) + property variant colorGrey40: rgba (40, 40, 40, 255) + property variant colorGrey32: rgba (32, 32, 32, 255) + property variant colorGrey24: rgba (24, 24, 24, 255) + property variant colorGrey16: rgba (16, 16, 16, 255) + property variant colorGrey08: rgba (08, 08, 08, 255) + + property variant cueColors: [ + red, + darkOrange, + lightOrange, + colorWhite, + yellow, + lime, + green, + mint, + cyan, + turquoise, + blue, + plum, + violet, + purple, + magenta, + fuchsia, + warmYellow + ] + + property variant cueColorsDark: [ + Qt.darker(red, 0.15), + Qt.darker(darkOrange, 0.15), + Qt.darker(lightOrange, 0.15), + Qt.darker(colorWhite, 0.15), + Qt.darker(yellow, 0.15), + Qt.darker(lime, 0.15), + Qt.darker(green, 0.15), + Qt.darker(mint, 0.15), + Qt.darker(cyan, 0.15), + Qt.darker(turquoise, 0.15), + Qt.darker(blue, 0.15), + Qt.darker(plum, 0.15), + Qt.darker(violet, 0.15), + Qt.darker(purple, 0.15), + Qt.darker(magenta, 0.15), + Qt.darker(fuchsia, 0.15), + Qt.darker(warmYellow, 0.15) + ] + + property variant colorOrange: rgba(208, 104, 0, 255) // FX Selection; FX Faders etc + property variant colorOrangeDimmed: rgba(96, 48, 0, 255) + + property variant colorRed: rgba(255, 0, 0, 255) + property variant colorRed70: rgba(185, 6, 6, 255) + + // Playmarker + property variant colorRedPlaymarker: rgba(255, 0, 0, 255) + property variant colorRedPlaymarker75: rgba(255, 56, 26, 191) + property variant colorRedPlaymarker06: rgba(255, 56, 26, 31) + + // Playmarker + property variant colorBluePlaymarker: rgba(96, 184, 192, 255) //rgba(136, 224, 232, 255) + + property variant colorGreen: rgba(0, 255, 0, 255) + property variant colorGreen50: rgba(0, 255, 0, 128) + property variant colorGreen12: rgba(0, 255, 0, 31) // used for loop bg (in WaveformCues.qml) + property variant colorGreenLoopOverlay: rgba(96, 192, 128, 16) + property variant colorGreenMint: rgba(0, 219, 138, 255) + + property variant colorGreen08: rgba(0, 255, 0, 20) + property variant colorGreen50Full: rgba(0, 51, 0, 255) + + property variant colorGreenGreyMix: rgba(139, 240, 139, 82) + + // font colors + property variant colorFontsListBrowser: colorGrey72 + property variant colorFontsListFx: colorGrey56 + property variant colorFontBrowserHeader: colorGrey88 + property variant colorFontFxHeader: colorGrey80 // also for FX header, FX select buttons + + // headers & footers backgrounds + property variant colorBgEmpty: colorGrey16 // also for empty decks & Footer Small (used to be colorGrey08) + property variant colorBrowserHeader: colorGrey24 + property variant colorFxHeaderBg: colorGrey16 // also for large footer; fx overlay tabs + property variant colorFxHeaderLightBg: colorGrey24 + + property variant colorProgressBg: colorGrey32 + property variant colorProgressBgLight: colorGrey48 + property variant colorDivider: colorGrey40 + + property variant colorIndicatorBg: rgba(20, 20, 20, 255) + property variant colorIndicatorBg2: rgba(31, 31, 31, 255) + + property variant colorIndicatorLevelGrey: rgba(51, 51, 51, 255) + property variant colorIndicatorLevelOrange: rgba(247, 143, 30, 255) + + property variant colorCenterOverlayHeadline: colorGrey88 + +// blue + property variant colorDeckBlueBright: rgba(0, 136, 184, 255) + property variant colorDeckBlueDark: rgba(0, 64, 88, 255) + property variant colorDeckBlueBright20: rgba(0, 174, 239, 51) + property variant colorDeckBlueBright50Full: rgba(0, 87, 120, 255) + property variant colorDeckBlueBright12Full: rgba(0, 8, 10, 255) //rgba(0, 23, 31, 255) + property variant colorBrowserBlueBright: rgba(0, 187, 255, 255) + property variant colorBrowserBlueBright56Full:rgba(0, 114, 143, 255) + + property color footerBackgroundBlue: "#011f26" + + // fx Select overlay colors + property variant fxSelectHeaderTextRGB: rgba( 96, 96, 96, 255) + property variant fxSelectHeaderNormalRGB: rgba( 32, 32, 32, 255) + property variant fxSelectHeaderNormalBorderRGB: rgba( 32, 32, 32, 255) + property variant fxSelectHeaderHighlightRGB: rgba( 64, 64, 48, 255) + property variant fxSelectHeaderHighlightBorderRGB: rgba(128, 128, 48, 255) + + // 16 Colors Palette (Bright) + property variant color01Bright: rgba (255, 0, 0, 255) + property variant color02Bright: rgba (255, 16, 16, 255) + property variant color03Bright: rgba (255, 120, 0, 255) + property variant color04Bright: rgba (255, 184, 0, 255) + property variant color05Bright: rgba (255, 255, 0, 255) + property variant color06Bright: rgba (144, 255, 0, 255) + property variant color07Bright: rgba ( 40, 255, 40, 255) + property variant color08Bright: rgba ( 0, 208, 128, 255) + property variant color09Bright: rgba ( 0, 184, 232, 255) + property variant color10Bright: rgba ( 0, 120, 255, 255) + property variant color11Bright: rgba ( 0, 72, 255, 255) + property variant color12Bright: rgba (128, 0, 255, 255) + property variant color13Bright: rgba (160, 0, 200, 255) + property variant color14Bright: rgba (240, 0, 200, 255) + property variant color15Bright: rgba (255, 0, 120, 255) + property variant color16Bright: rgba (248, 8, 64, 255) + + // 16 Colors Palette (Mid) + property variant color01Mid: rgba (112, 8, 8, 255) + property variant color02Mid: rgba (112, 24, 8, 255) + property variant color03Mid: rgba (112, 56, 0, 255) + property variant color04Mid: rgba (112, 80, 0, 255) + property variant color05Mid: rgba (96, 96, 0, 255) + property variant color06Mid: rgba (56, 96, 0, 255) + property variant color07Mid: rgba (8, 96, 8, 255) + property variant color08Mid: rgba (0, 90, 60, 255) + property variant color09Mid: rgba (0, 77, 77, 255) + property variant color10Mid: rgba (0, 84, 108, 255) + property variant color11Mid: rgba (32, 56, 112, 255) + property variant color12Mid: rgba (72, 32, 120, 255) + property variant color13Mid: rgba (80, 24, 96, 255) + property variant color14Mid: rgba (111, 12, 149, 255) + property variant color15Mid: rgba (122, 0, 122, 255) + property variant color16Mid: rgba (130, 1, 43, 255) + + // 16 Colors Palette (Dark) + property variant color01Dark: rgba (16, 0, 0, 255) + property variant color02Dark: rgba (16, 8, 0, 255) + property variant color03Dark: rgba (16, 8, 0, 255) + property variant color04Dark: rgba (16, 16, 0, 255) + property variant color05Dark: rgba (16, 16, 0, 255) + property variant color06Dark: rgba (8, 16, 0, 255) + property variant color07Dark: rgba (8, 16, 8, 255) + property variant color08Dark: rgba (0, 16, 8, 255) + property variant color09Dark: rgba (0, 8, 16, 255) + property variant color10Dark: rgba (0, 8, 16, 255) + property variant color11Dark: rgba (0, 0, 16, 255) + property variant color12Dark: rgba (8, 0, 16, 255) + property variant color13Dark: rgba (8, 0, 16, 255) + property variant color14Dark: rgba (16, 0, 16, 255) + property variant color15Dark: rgba (16, 0, 8, 255) + property variant color16Dark: rgba (16, 0, 8, 255) + + //-------------------------------------------------------------------------------------------------------------------- + + // Browser + + //-------------------------------------------------------------------------------------------------------------------- + + property variant browser: + QtObject { + property color prelisten: rgba(223, 178, 30, 255) + property color prevPlayed: rgba(32, 32, 32, 255) + } + + //-------------------------------------------------------------------------------------------------------------------- + + // Hotcues + + //-------------------------------------------------------------------------------------------------------------------- + + property variant hotcue: + QtObject { + property color grid: colorWhite + property color hotcue: colorDeckBlueBright + property color fade: color03Bright + property color load: color05Bright + property color loop: color07Bright + property color temp: "grey" + } + + //-------------------------------------------------------------------------------------------------------------------- + + // Freeze & Slicer + + //-------------------------------------------------------------------------------------------------------------------- + + property variant freeze: + QtObject { + property color box_inactive: "#199be7ef" + property color box_active: "#ff9be7ef" + property color marker: "#4DFFFFFF" + property color slice_overlay: "white" // flashing rectangle + } + + property variant slicer: + QtObject { + property color box_active: rgba(20,195,13,255) + property color box_inrange: rgba(20,195,13,90) + property color box_inactive: rgba(20,195,13,25) + property color marker_default: rgba(20,195,13,77) + property color marker_beat: rgba(20,195,13,150) + property color marker_edge: box_active + } + + //-------------------------------------------------------------------------------------------------------------------- + + // Musical Key coloring for the browser + + //-------------------------------------------------------------------------------------------------------------------- + property variant color01MusicalKey: rgba (255, 0, 0, 255) // not yet in use + property variant color02MusicalKey: rgba (255, 64, 0, 255) + property variant color03MusicalKey: rgba (255, 120, 0, 255) // not yet in use + property variant color04MusicalKey: rgba (255, 200, 0, 255) + property variant color05MusicalKey: rgba (255, 255, 0, 255) + property variant color06MusicalKey: rgba (210, 255, 0, 255) // not yet in use + property variant color07MusicalKey: rgba ( 0, 255, 0, 255) + property variant color08MusicalKey: rgba ( 0, 255, 128, 255) + //property variant color09MusicalKey: rgba ( 0, 200, 232, 255) + property variant color09MusicalKey: colorDeckBlueBright // use the same color as for the browser selection + property variant color10MusicalKey: rgba ( 0, 100, 255, 255) + property variant color11MusicalKey: rgba ( 0, 40, 255, 255) + property variant color12MusicalKey: rgba (128, 0, 255, 255) + property variant color13MusicalKey: rgba (160, 0, 200, 255) // not yet in use + property variant color14MusicalKey: rgba (240, 0, 200, 255) + property variant color15MusicalKey: rgba (255, 0, 120, 255) // not yet in use + property variant color16MusicalKey: rgba (248, 8, 64, 255) + + property variant color01MusicalKey2: rgba (255, 0, 0, 120) // not yet in use + property variant color02MusicalKey2: rgba (255, 64, 0, 120) + property variant color03MusicalKey2: rgba (255, 120, 0, 120) // not yet in use + property variant color04MusicalKey2: rgba (255, 200, 0, 120) + property variant color05MusicalKey2: rgba (255, 255, 0, 120) + property variant color06MusicalKey2: rgba (210, 255, 0, 120) // not yet in use + property variant color07MusicalKey2: rgba ( 0, 255, 0, 120) + property variant color08MusicalKey2: rgba ( 0, 255, 128, 120) + //property variant color09MusicalKey2: rgba ( 0, 200, 232, 120) + property variant color09MusicalKey2: colorDeckBlueBright // use the same color as for the browser selection + property variant color10MusicalKey2: rgba ( 0, 100, 255, 120) + property variant color11MusicalKey2: rgba ( 0, 40, 255, 120) + property variant color12MusicalKey2: rgba (128, 0, 255, 120) + property variant color13MusicalKey2: rgba (160, 0, 200, 120) // not yet in use + property variant color14MusicalKey2: rgba (240, 0, 200, 120) + property variant color15MusicalKey2: rgba (255, 0, 120, 120) // not yet in use + property variant color16MusicalKey2: rgba (248, 8, 64, 120) + + // 16 Colors Palette (Bright) + property variant color01Bright2: rgba (255, 0, 0, 120) + property variant color02Bright2: rgba (255, 16, 16, 120) + property variant color03Bright2: rgba (255, 120, 0, 120) + property variant color04Bright2: rgba (255, 184, 0, 120) + property variant color05Bright2: rgba (255, 255, 0, 120) + property variant color06Bright2: rgba (144, 255, 0, 120) + property variant color07Bright2: rgba ( 40, 255, 40, 120) + property variant color08Bright2: rgba ( 0, 208, 128, 120) + property variant color09Bright2: rgba ( 0, 184, 232, 120) + property variant color10Bright2: rgba ( 0, 120, 255, 120) + property variant color11Bright2: rgba ( 0, 72, 255, 120) + property variant color12Bright2: rgba (128, 0, 255, 120) + property variant color13Bright2: rgba (160, 0, 200, 120) + property variant color14Bright2: rgba (240, 0, 200, 120) + property variant color15Bright2: rgba (255, 0, 120, 120) + property variant color16Bright2: rgba (248, 8, 64, 120) + + property variant musicalKeyColors: [ + 'grey', //0 No key + color15Bright, //1 -11 c + color06Bright, //2 -4 c#, db + color11MusicalKey, //3 -13 d + color03Bright, //4 -6 d#, eb + color09MusicalKey, //5 -16 e + color01Bright, //6 -9 f + color07MusicalKey, //7 -2 f#, gb + color13Bright, //8 -12 g + color04MusicalKey, //9 -5 g#, ab + color10MusicalKey, //10 -15 a + color02MusicalKey, //11 -7 a#, bb + color08MusicalKey, //12 -1 b + color03Bright, //13 -6 cm + color09MusicalKey, //14 -16 c#m, dbm + color01Bright, //15 -9 dm + color07MusicalKey, //16 -2 d#m, ebm + color13Bright, //17 -12 em + color04MusicalKey, //18 -5 fm + color10MusicalKey, //19 -15 f#m, gbm + color02MusicalKey, //20 -7 gm + color08MusicalKey, //21 -1 g#m, abm + color15Bright, //22 -11 am + color06Bright, //23 -4 a#m, bbm + color11MusicalKey //24 -13 bm + ] + + property variant musicalKeyColorsDark: [ + 'grey', //0 No key + Qt.darker(color15Bright, 5), //1 -11 c + Qt.darker(color06Bright, 5), //2 -4 c#, db + Qt.darker(color11MusicalKey, 5), //3 -13 d + Qt.darker(color03Bright, 5), //4 -6 d#, eb + Qt.darker(color09MusicalKey, 5), //5 -16 e + Qt.darker(color01Bright, 5), //6 -9 f + Qt.darker(color07MusicalKey, 5), //7 -2 f#, gb + Qt.darker(color13Bright, 5), //8 -12 g + Qt.darker(color04MusicalKey, 5), //9 -5 g#, ab + Qt.darker(color10MusicalKey, 5), //10 -15 a + Qt.darker(color02MusicalKey, 5), //11 -7 a#, bb + Qt.darker(color08MusicalKey, 5), //12 -1 b + Qt.darker(color03Bright, 5), //13 -6 cm + Qt.darker(color09MusicalKey, 5), //14 -16 c#m, dbm + Qt.darker(color01Bright, 5), //15 -9 dm + Qt.darker(color07MusicalKey, 5), //16 -2 d#m, ebm + Qt.darker(color13Bright, 5), //17 -12 em + Qt.darker(color04MusicalKey, 5), //18 -5 fm + Qt.darker(color10MusicalKey, 5), //19 -15 f#m, gbm + Qt.darker(color02MusicalKey, 5), //20 -7 gm + Qt.darker(color08MusicalKey, 5), //21 -1 g#m, abm + Qt.darker(color15Bright, 5), //22 -11 am + Qt.darker(color06Bright, 5), //23 -4 a#m, bbm + Qt.darker(color11MusicalKey, 5) //24 -13 bm + ] + + //-------------------------------------------------------------------------------------------------------------------- + + // Waveform coloring + + //-------------------------------------------------------------------------------------------------------------------- + + property color defaultBackground: "black" + property color defaultTextColor: "white" + property color loopActiveColor: rgba(0,255,70,255) + property color loopFlashColor: rgba ( 20, 235, 165, 120) + + property color loopActiveDimmedColor: rgba(0,255,70,190) + property color grayBackground: "#ff333333" + + property variant colorDeckBrightGrey: rgba (85, 85, 85, 255) + property variant colorDeckGrey: rgba (70, 70, 70, 255) + property variant colorDeckDarkGrey: rgba (40, 40, 40, 255) + + property variant colorDeckOrangeBright: rgba (253, 186, 16, 255) + + property variant colorQuantizeOn: rgba ( 20, 255, 255, 170) + property variant colorQuantizeOff: Qt.darker(colorQuantizeOn, 0.7) + + property color red: "#ff0000" + property color darkOrange: "#ff8c00" + property color lightOrange: "#fccf3e" + property color warmYellow: "#f9d71c" + property color yellow: "#ffff00" + property color lime: "#effd5f" + property color green: "#00FF00" + property color mint: "#98ff98" + property color cyan: "#00FFFF" + property color turquoise: "#40e0d0" + property color blue: "#0080FF" + property color plum: "#ff7eff" + property color violet: "#ee82ee" + property color purple: "#9f00c5" + property color magenta: "#ff6fff" + property color fuchsia: "#ff0080" + property color white: "#ff0080" + property color phaseColor: "#90550C" + + //-------------------------------------------------------------------------------------------------------------------- + + // Waveform coloring + + //-------------------------------------------------------------------------------------------------------------------- + + property variant low1: settings.low1 + property variant low2: settings.low2 + property variant mid1: settings.mid1 + property variant mid2: settings.mid2 + property variant high1: settings.high1 + property variant high2: settings.high2 + + function getWaveformColors(colorId) { + if (colorId <= 17) { + return waveformColorsMap[colorId]; + } + + return waveformColorsMap[0]; + } + + function palette(brightness, colorId) { + if ( brightness >= 0.666 && brightness <= 1.0 ) { // bright color + switch(colorId) { + case 0: return defaultBackground // default color for this palette! + case 1: return color01Bright + case 2: return color02Bright + case 3: return color03Bright + case 4: return color04Bright + case 5: return color05Bright + case 6: return color06Bright + case 7: return color07Bright + case 8: return color08Bright + case 9: return color09Bright + case 10: return color10Bright + case 11: return color11Bright + case 12: return color12Bright + case 13: return color13Bright + case 14: return color14Bright + case 15: return color15Bright + case 16: return color16Bright + case 17: return "grey" + case 18: return colorGrey232 + } + } else if ( brightness >= 0.333 && brightness < 0.666 ) { // mid color + switch(colorId) { + case 0: return defaultBackground // default color for this palette! + case 1: return color01Mid + case 2: return color02Mid + case 3: return color03Mid + case 4: return color04Mid + case 5: return color05Mid + case 6: return color06Mid + case 7: return color07Mid + case 8: return color08Mid + case 9: return color09Mid + case 10: return color10Mid + case 11: return color11Mid + case 12: return color12Mid + case 13: return color13Mid + case 14: return color14Mid + case 15: return color15Mid + case 16: return color16Mid + case 17: return "grey" + case 18: return colorGrey232 + } + } else if ( brightness >= 0 && brightness < 0.333 ) { // dimmed color + switch(colorId) { + case 0: return defaultBackground // default color for this palette! + case 1: return color01Dark + case 2: return color02Dark + case 3: return color03Dark + case 4: return color04Dark + case 5: return color05Dark + case 6: return color06Dark + case 7: return color07Dark + case 8: return color08Dark + case 9: return color09Dark + case 10: return color10Dark + case 11: return color11Dark + case 12: return color12Dark + case 13: return color13Dark + case 14: return color14Dark + case 15: return color15Dark + case 16: return color16Dark + case 17: return "grey" + case 18: return colorGrey232 + } + } else if ( brightness < 0) { // color Off + return defaultBackground; + } + return defaultBackground; // default color if no palette is set + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Durations.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Durations.qml new file mode 100755 index 000000000000..d91643a23e39 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Durations.qml @@ -0,0 +1,8 @@ +import QtQuick 2.15 + +QtObject { + readonly property int mainTransitionSpeed: 100 + readonly property int overlayTransition: 100 + readonly property int bottomInfoColor: 75 + readonly property int deckTransition: 90 +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Font.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Font.qml new file mode 100755 index 000000000000..833870d29e21 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Font.qml @@ -0,0 +1,17 @@ +import QtQuick 2.15 + +QtObject { + +// currently mapped to unity but you can use to bulk scale fonsize if needed + function scale(fontSize) { return fontSize; } + +// Font Size Variables + readonly property int miniFontSize: scale(10) + readonly property int smallFontSize: scale(12) + readonly property int middleFontSize: scale(15) + readonly property int largeFontSize: scale(18) + readonly property int largeValueFontSize: scale(21) + readonly property int moreLargeValueFontSize: scale(33) + readonly property int extraLargeValueFontSize: scale(45) + readonly property int superLargeValueFontSize: scale(55) +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Margins.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Margins.qml new file mode 100755 index 000000000000..6bedda675a5c --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Margins.qml @@ -0,0 +1,7 @@ +import QtQuick 2.15 + +QtObject { + +// Margin Variables + readonly property int topMarginCenterOverlayHeadline: 11 // 17 +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Settings.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Settings.qml new file mode 100755 index 000000000000..bd2dbc8e712f --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Settings.qml @@ -0,0 +1,296 @@ +import QtQuick 2.5 + +QtObject { + + // = comments + + ////////////////// + //EXTRA SETTINGS// + ////////////////// + + //show only decks A&B or C&D - SELECT ONLY ONE + readonly property color accentColor: engine.getSetting('accentColor') || 'green' + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + /////////////////////////////// + //PAD TYPE SELECTION SETTINGS// + /////////////////////////////// + + //Please only use the values in the line below. Using other values could have unexpected effects. + //0 = disabled, 4 = freeze, 5 = loop, 7 = roll, 8 = jump/move, 9 = fx1, 10 = fx2, 11 = tone + readonly property int recordButton: 8 + readonly property int samplesButton: 4 + readonly property int muteButton: 7 + readonly property int stemsButton: 5 + readonly property int cueButton: 11 + readonly property int fxLeftButton: 9 + readonly property int fxRightButton: 10 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ////////////////////////////// + //BPM/TEMPO DISPLAY SETTINGS// + ////////////////////////////// + + //Change to true to always show tempo/bpm info + readonly property bool alwaysShowTempoInfo: engine.getSetting('alwaysShowTempoInfo') || false + + //amount of time the bpm overlay will stay on the screen in ms. 1000 = 1 second. + readonly property int bpmOverlayTimer: (engine.getSetting('bpmOverlayTimer') || 5.0) * 1000 + + //0 = Hidden, 1 = Master BPM, 2 = BPM, 3 = Tempo, 4 = BPM Offset, 5 = Tempo Offset, 6 = Master Deck Letter, 7 = Tempo Range, 8 = Key, 9 = Original BPM + readonly property int tempoDisplayLeft: parseInt(engine.getSetting('tempoDisplayLeft')) || 2 + readonly property int tempoDisplayCenter: parseInt(engine.getSetting('tempoDisplayCenter')) || 1 + readonly property int tempoDisplayRight: parseInt(engine.getSetting('tempoDisplayRight')) || 3 + readonly property int tempoDisplayLeftShift: parseInt(engine.getSetting('tempoDisplayLeftShift')) || 4 + readonly property int tempoDisplayCenterShift: parseInt(engine.getSetting('tempoDisplayCenterShift')) || 6 + readonly property int tempoDisplayRightShift: parseInt(engine.getSetting('tempoDisplayRightShift')) || 5 + + //set to true to enable the text Color to aid with your mixing. + readonly property bool enableBpmTextColor: engine.getSetting('enableBpmTextColor') || false + readonly property bool enableMasterBpmTextColor: engine.getSetting('enableMasterBpmTextColor') || false + readonly property bool enableTempoTextColor: engine.getSetting('enableTempoTextColor') || false + readonly property bool enableBpmOffsetTextColor: engine.getSetting('enableBpmOffsetTextColor') || false + readonly property bool enableTempoOffsetTextColor: engine.getSetting('enableTempoOffsetTextColor') || false + readonly property bool enableMasterDeckTextColor: engine.getSetting('enableMasterDeckTextColor') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ///////////////////// + //WAVEFORM SETTINGS// + ///////////////////// + + //change to true to disable the moving waveforms + readonly property bool hideWaveforms: engine.getSetting('hideWaveforms') || false + + //Change to false to hide loop size indicator (after 10 seconds of loop inactivity) + readonly property bool alwaysShowLoopSize: engine.getSetting('alwaysShowLoopSize') || false + + //amount of time the loop overlay will stay on the screen in ms. 1000 = 1 second. + readonly property int loopOverlayTimer: (engine.getSetting('loopOverlayTimer') || 10) * 1000 + + //set to true to hide the beatgrid + readonly property bool hideBeatgrid: engine.getSetting('hideBeatgrid') || false + + //this value is the visibility of the beatgrid lines in %. Values are 0 to 100 + readonly property real beatgridVisibility: engine.getSetting('beatgridVisibility') || 0.75 + + //set to true to show time to next cue on waveform + readonly property bool showTimeToCue: engine.getSetting('showTimeToCue') || false + + //set to true to show beats to next cue on waveform + readonly property bool showBeatToCue: engine.getSetting('showBeatToCue') || false + + //set to true to show beats to next cue on waveform + readonly property int distanceToCueFontSize: engine.getSetting('distanceToCueFontSize') || 12 + + //set to true to show beats to next cue on waveform + readonly property string distanceToCueAlignment: engine.getSetting('distanceToCueAlignment') || "bottom" + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + //////////////////// + //BROWSER SETTINGS// + //////////////////// + + // NOTE the following setting are currently unused due to the lack of QML support for Mixxx library + + // //set to false to disable browser view and pads + // readonly property bool enableBrowserMode: engine.getSetting('enableBrowserMode') || true + + // //set to false to disable the adjacent key Coloring and return to all keys Colored + // readonly property bool adjacentKeys: engine.getSetting('adjacentKeys') || true + + // //change to true to enable camelot key + // readonly property bool camelotKey: engine.getSetting('camelotKey') || false + + // //set to true to disable the preview player toggle button and change it back to hold + // readonly property bool disablePreviewPlayerToggle: engine.getSetting('disablePreviewPlayerToggle') || false + + // //Set to false to disable browser on screen when pressing favorites button + // readonly property bool showBrowserOnFavourites: engine.getSetting('showBrowserOnFavourites') || true + + // //set to true to swap the functions of the view and add to prep buttons + // readonly property bool swapViewButtons: engine.getSetting('swapViewButtons') || false + + // //Set to false to disable browser on screen when open in full screen mode. + // //This will also revert the view and prep button functions back to default except opening the browser on the S4 instead of the laptop. + // readonly property bool showBrowserOnFullScreen: engine.getSetting('showBrowserOnFullScreen') || true + + // //set to true to disable the led output on the browser sort buttons + // readonly property bool disableSortButtonOutput: engine.getSetting('disableSortButtonOutput') || false + + // // 1 = "Sort By #", 2 = "Title", 3 = "Artist", 4 = "Time", 5 = "BPM", 6 = "Track #", 7 = "Release", 8 = "Label", 9 = "Genre", 10 = "Key Text", 11 = "Comment", 12 = "Lyrics", 13 = "Comment 2", 14 = "Path", 15 = "Analysed" + // // 16 = "Remixer", 17 = "Producer", 18 = "Mix", 19 = "CAT #", 20 = "Release Date", 21 = "Bitrate", 22 = "Rating", 23 = "Count", 24 = "Sort By #", 25 = "Cover Art", 26 = "Last Played", 27 = "Import Date", 28 = "Key", 29 = "Color" + // readonly property int hotcueButtonSort: parseInt(engine.getSetting('hotcueButtonSort')) || 2 + // readonly property int recordButtonSort: parseInt(engine.getSetting('recordButtonSort')) || 3 + // readonly property int samplesButtonSort: parseInt(engine.getSetting('samplesButtonSort')) || 5 + // readonly property int muteButtonSort: parseInt(engine.getSetting('muteButtonSort')) || 28 + // readonly property int stemsButtonSort: parseInt(engine.getSetting('stemsButtonSort')) || 22 + + // //Change this setting to true to change the browser encoder to a list scroll when holding shift. + // readonly property bool browserEncoderShiftScroll: engine.getSetting('browserEncoderShiftScroll') || false + + // //This is the size of the page scroll. + // readonly property int scrollPageSize: parseInt(engine.getSetting('scrollPageSize')) || 6 + + // //change to false to disable the browser view displaying artist data whilst holding shift + // readonly property bool browserShift: engine.getSetting('browserShift') || true + + // //only enable when both artist and title columns are shown + // readonly property bool swapArtistTitleColumns: engine.getSetting('swapArtistTitleColumns') || false + + // readonly property bool hideBPM: engine.getSetting('hideBPM') || false + // readonly property bool hideKey: engine.getSetting('hideKey') || false + // readonly property bool hideAlbumArt: engine.getSetting('hideAlbumArt') || false + // readonly property bool showArtistColumn: engine.getSetting('showArtistColumn') || false + // readonly property bool showTrackTitleColumn: engine.getSetting('showTrackTitleColumn') || true + // readonly property int browserFontSize: parseInt(engine.getSetting('browserFontSize')) || 15 + // readonly property bool raiseBrowserFooter: engine.getSetting('raiseBrowserFooter') || false + + // //change the values below to determine the bpm text Color in the browser + // //the number values represent the percentage difference of the master tempo and the selected song + // readonly property bool bpmBrowserTextColor: engine.getSetting('bpmBrowserTextColor') || true + // readonly property int browserBpmGreen: 3 + // readonly property int browserBpmRed: 12 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ////////////////////////////// + //WAVEFORM OVERVIEW SETTINGS// + ////////////////////////////// + + //change to true to hide stripe + readonly property bool hideWaveformOverview: engine.getSetting('hideWaveformOverview') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + /////////////////////////// + //TIME/BEATS BOX SETTINGS// + /////////////////////////// + + // 0 = Remaining Time, 1 = Elapsed Time, 2 = Time To Cue, 3 = Beats (0.0.0), 4 = Beats Alt (0.0), 5 = Beats To Cue (0.0.0), 6 = Beats To Cue Alt (0.0) + readonly property int timeBox: parseInt(engine.getSetting('timeBox')) || 0 + readonly property int timeBoxShift: parseInt(engine.getSetting('timeBoxShift')) || 1 + + //set to true to have the time text change to black when the box is red. + readonly property bool timeTextColorChange: engine.getSetting('timeTextColorChange') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ///////////////////////////////// + //PHASE & PHRASE METER SETTINGS// + ///////////////////////////////// + + //0 = Red, 1 = Dark Orange, 2 = Light Orange, 3 = Default, 4 = Yellow, 5 = Lime, 6 = Green, 7 = Mint, 8 = Cyan, 9 = Turquoise, 10 = Blue, 11 = Plum, 12 = Violet, 13 = Purple, 14 = Magenta, 15 = Fuchsia, 16 = White, 17 = Warm Yellow + readonly property int phaseAColor: parseInt(engine.getSetting('phaseAColor')) || 3 + readonly property int phaseBColor: parseInt(engine.getSetting('phaseBColor')) || 3 + readonly property int phaseCColor: parseInt(engine.getSetting('phaseCColor')) || 3 + readonly property int phaseDColor: parseInt(engine.getSetting('phaseDColor')) || 3 + + //change to true to hide the phase meter + readonly property bool hidePhase: engine.getSetting('hidePhase') || false + + //change to true to hide the phrase meter + readonly property bool hidePhrase: engine.getSetting('hidePhrase') || true + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ////////////////////// + //GRID EDIT SETTINGS// + ////////////////////// + + //change to false to hide the bpm overlay when in grid adjust mode. + readonly property bool showBPMGridAdjust: engine.getSetting('showBPMGridAdjust') || true + readonly property int rateAdjustTimer: (engine.getSetting('rateAdjustTimer') || 2) * 1000 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + /////////////////// + //HOTCUE SETTINGS// + /////////////////// + + //set to true to disable the hotcue overlay appearing + readonly property bool hideHotcueOverlay: engine.getSetting('hideHotcueOverlay') || false + + //0 = Red, 1 = Dark Orange, 2 = Light Orange, 3 = White, 4 = Yellow, 5 = Lime, 6 = Green, 7 = Mint, 8 = Cyan, 9 = Turquoise, 10 = Blue, 11 = Plum, 12 = Violet, 13 = Purple, 14 = Magenta, 15 = Fuchsia, 16 = Warm Yellow + //change these values to change default cue type Colors. + //This will change the cue markers and also the loop indicator. + readonly property int cueCueColor: parseInt(engine.getSetting('cueCueColor')) || 10 + readonly property int cueLoopColor: parseInt(engine.getSetting('cueLoopColor')) || 6 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + //////////////////// + //EFFECTS SETTINGS// + //////////////////// + + //change to false to disable FX overlays + readonly property bool fxOverlays: (engine.getSetting('fxOverlays') || 'both') !== 'off' + + //amount of time the fx overlay will stay on the screen in ms. 1000 = 1 second. + readonly property int fxOverlayTimer: (engine.getSetting('fxOverlayTimer') || 2) * 1000 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ////////////////////////// + //EFFECTS PAD 1 SETTINGS// + ////////////////////////// + + //set to true to disable the effects pads 1 overlay appearing + readonly property bool hideEffectsOverlay1: (engine.getSetting('fxOverlays') || 'both') === 'right' + + //The fx unit used by fx pads 1 + readonly property int fx1unit: 1 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ////////////////////////// + //EFFECTS PAD 2 SETTINGS// + ////////////////////////// + + //set to true to disable the effects pads 2 overlay appearing + readonly property bool hideEffectsOverlay2: (engine.getSetting('fxOverlays') || 'both') === 'left' + + //The fx unit used by fx pads 2 + readonly property int fx2unit: 2 + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ///////////////////// + //TONE PAD SETTINGS// + ///////////////////// + + //set to true to disable the tone pads overlay appearing + readonly property bool hideToneOverlay: engine.getSetting('hideToneOverlay') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ///////////////////// + //JUMP PAD SETTINGS// + ///////////////////// + + //set to true to disable the tone pads overlay appearing + readonly property bool hideJumpOverlay: engine.getSetting('hideJumpOverlay') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ///////////////////// + //LOOP PAD SETTINGS// + ///////////////////// + + //set to true to disable the loop pads overlay appearing + readonly property bool hideLoopOverlay: engine.getSetting('hideLoopOverlay') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + ///////////////////// + //ROLL PAD SETTINGS// + ///////////////////// + + //set to true to disable the tone pads overlay appearing + readonly property bool hideRollOverlay: engine.getSetting('hideRollOverlay') || false + + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Utils.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Utils.qml new file mode 100755 index 000000000000..b5f59ac7649a --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Defines/Utils.qml @@ -0,0 +1,126 @@ +import QtQuick 2.15 + +QtObject { + + function convertToTimeString(inSeconds) { + var neg = (inSeconds < 0); + var roundedSec = Math.floor(inSeconds); + + if (neg) { + roundedSec = -roundedSec; + } + + var sec = roundedSec % 60; + var min = (roundedSec - sec) / 60; + + var secStr = sec.toString(); + if (sec < 10) secStr = "0" + secStr; + + var minStr = min.toString(); + if (min < 10) minStr = "0" + minStr; + + return (neg ? "-" : "") + minStr + ":" + secStr; + } + + function computeRemainingTimeString(length, elapsed) { + return ((elapsed > length) ? convertToTimeString(0) : convertToTimeString( Math.floor(elapsed) - Math.floor(length))); + } + + function camelotConvert(keyToConvert) { + if (keyToConvert == "") return "-"; + + switch(keyToConvert) { + case "1d": return "8B"; + case "2d": return "9B"; + case "3d": return "10B"; + case "4d": return "11B"; + case "5d": return "12B"; + case "6d": return "1B"; + case "7d": return "2B"; + case "8d": return "3B"; + case "9d": return "4B"; + case "10d": return "5B"; + case "11d": return "6B"; + case "12d": return "7B"; + + case "1m": return "8A"; + case "2m": return "9A"; + case "3m": return "10A"; + case "4m": return "11A"; + case "5m": return "12A"; + case "6m": return "1A"; + case "7m": return "2A"; + case "8m": return "3A"; + case "9m": return "4A"; + case "10m": return "5A"; + case "11m": return "6A"; + case "12m": return "7A"; + + case "1D": return "8B"; + case "2D": return "9B"; + case "3D": return "10B"; + case "4D": return "11B"; + case "5D": return "12B"; + case "6D": return "1B"; + case "7D": return "2B"; + case "8D": return "3B"; + case "9D": return "4B"; + case "10D": return "5B"; + case "11D": return "6B"; + case "12D": return "7B"; + + case "1M": return "8A"; + case "2M": return "9A"; + case "3M": return "10A"; + case "4M": return "11A"; + case "5M": return "12A"; + case "6M": return "1A"; + case "7M": return "2A"; + case "8M": return "3A"; + case "9M": return "4A"; + case "10M": return "5A"; + case "11M": return "6A"; + case "12M": return "7A"; + + case "B": return "1B"; + case "F#": return "2B"; + case "C#": return "3B"; + case "G#": return "4B"; + case "D#": return "5B"; + case "A#": return "6B"; + case "F": return "7B"; + case "C": return "8B"; + case "G": return "9B"; + case "D": return "10B"; + case "A": return "11B"; + case "E": return "12B"; + + case "G#m": return "1A"; + case "D#m": return "2A"; + case "A#m": return "3A"; + case "Fm": return "4A"; + case "Cm": return "5A"; + case "Gm": return "6A"; + case "Dm": return "7A"; + case "Am": return "8A"; + case "Em": return "9A"; + case "Bm": return "10A"; + case "F#m": return "11A"; + case "C#m": return "12A"; + + case "G#M": return "1A"; + case "D#M": return "2A"; + case "A#M": return "3A"; + case "FM": return "4A"; + case "CM": return "5A"; + case "GM": return "6A"; + case "DM": return "7A"; + case "AM": return "8A"; + case "EM": return "9A"; + case "BM": return "10A"; + case "F#M": return "11A"; + case "C#M": return "12A"; + } + return "ERR"; + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/BankInfo.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/BankInfo.qml new file mode 100755 index 000000000000..0104aca56629 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/BankInfo.qml @@ -0,0 +1,193 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: bottomLabels + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (240 - height) + property int deckId: 1 + property int hotcue: 0 + property int type: 0 + property string name: "" + readonly property color barBgColor: "black" + property int bank: 1 + + // AppProperty { id: type; path: "app.traktor.fx." + bank + ".type"} + QtObject { + id: type2 + property string description: "Description" + property var value: 0 + } + + // AppProperty { id: routing; path: "app.traktor.fx." + bank + ".routing"} + QtObject { + id: routing + property string description: "Description" + property var value: 0 + } + property string routingText: routing.value == 0 ? "Send" : routing.value == 1 ? "Insert" : routing.value == 2 ? "Post" : "ERROR" + + // AppProperty { id: fxSelect1; path: "app.traktor.fx." + bank + ".select.1"} + QtObject { + id: fxSelect1 + property string description: "Description" + property var value: 0 + } + // AppProperty { id: fxSelect2; path: "app.traktor.fx." + bank + ".select.2"} + QtObject { + id: fxSelect2 + property string description: "Description" + property var value: 0 + } + // AppProperty { id: fxSelect3; path: "app.traktor.fx." + bank + ".select.3"} + QtObject { + id: fxSelect3 + property string description: "Description" + property var value: 0 + } + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + + height: type2.value == 2 ? 25 : 50 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: bottomLabels.height + color: colors.colorFxHeaderBg + } + + // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:63; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 25 + anchors.left: parent.left + anchors.leftMargin: 320/3 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 25 + anchors.left: parent.left + anchors.leftMargin: (320/3) * 2 + height: 63 + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Row { + BankInfoDetails { + id: bottomInfoDetails1 + finalLabel: (type2.value == 2 ? "Pattern Player " : "FX Bank ") + bank + " - " + routingText + hideValue: true + hideTitle: false + width: 240 + } + } + + Row { + BankInfoDetails { + id: bottomInfoDetails2 + finalValue: fxSelect1.description + hideValue: (type2.value == 2 ? true : false) + hideTitle: true + width: 320/3 + } + + BankInfoDetails { + id: bottomInfoDetails3 + finalValue: fxSelect2.description + hideValue: (type2.value != 0) ? true : false + hideTitle: true + width: 320/3 + } + + BankInfoDetails { + id: bottomInfoDetails4 + finalValue: fxSelect3.description + hideValue: (type2.value != 0) ? true : false + hideTitle: true + width: 320/3 + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: bottomLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: bottomLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: bottomLabels; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/BankInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/BankInfoDetails.qml new file mode 100755 index 000000000000..026bca41f4f3 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/BankInfoDetails.qml @@ -0,0 +1,77 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + Defines.Settings {id: settings} + + property var parameter: ({description:"Description",value: 0, valueRange: {isDiscrete: true, steps: 1}}) // set from outside + property bool isOn: false + property string label: "DRUMLOOP" + property string buttonLabel: "HP ON" + + property bool hideValue: false + property bool hideTitle: false + property bool fxEnabled: false + + property bool indicatorEnabled: fxEnabled && label.length > 0 + property string finalValue: "" + property string finalLabel: "" + + function toInt_round(val) { return parseInt(val+0.5); } + + property alias textColor: colors.colorFontFxHeader + + readonly property int macroEffectChar: 0x00B6 + readonly property bool isMacroFx: (finalLabel.charCodeAt(0) == macroEffectChar) + + width: 0 + height: 25 + + Defines.Colors { id: colors } + + // Level indicator for knobs + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 25 + width: parent.width + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: finalLabel + visible: !hideTitle + color: settings.accentColor + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 2 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + + // value + Text { + id: fxInfoValueLarge + width: 320/3 + text: finalValue + font.family: "Pragmatica" // is monospaced + color: colors.colorWhite + visible: !hideValue + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 4 + font.pixelSize: 15 + anchors.topMargin: 25 + elide: Text.ElideRight + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/CueInfo.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/CueInfo.qml new file mode 100755 index 000000000000..dbc47d841456 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/CueInfo.qml @@ -0,0 +1,152 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: bottomLabels + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (195 - bottomMargin) + property int hotcue: 0 + property int type: 0 + property string name: "" + readonly property color barBgColor: "black" + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + + height: 40 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: bottomLabels.height + color: colors.colorFxHeaderBg + // light grey background + Rectangle { + id:bottomInfoDetailsPanelLightBg + anchors { + top: parent.top + left: parent.left + } + height: bottomLabels.height + width: 18 + color: colors.colorFxHeaderLightBg + } + } + +// // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:63; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 18 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 240 + height: 63 + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Row { + CueInfoDetails { + id: bottomInfoDetails1 + finalValue: hotcue + finalLabel: "#" + width: 18 + } + + CueInfoDetails { + id: bottomInfoDetails2 + finalValue: name + finalLabel: "NAME" + width: 222 + } + + CueInfoDetails { + id: bottomInfoDetails3 + finalValue: (type == 0 ? "Cue" : type == 1 ? "Fade-In" : type == 2 ? "Fade-Out" : type == 3 ? "Load" : type == 4 ? "Grid" : type == 5 ? "Loop" : "-") + finalLabel: "TYPE" + width: 50 + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: bottomLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: bottomLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: bottomLabels; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/CueInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/CueInfoDetails.qml new file mode 100755 index 000000000000..5f0d2b102835 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/CueInfoDetails.qml @@ -0,0 +1,73 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + Defines.Settings {id: settings} + + property var parameter: ({description:"Description",value: 0, valueRange: {isDiscrete: true, steps: 1}}) // set from outside + property bool isOn: false + property string label: "DRUMLOOP" + property string buttonLabel: "HP ON" + + property bool hideValue: true + property bool fxEnabled: false + + property bool indicatorEnabled: fxEnabled && label.length > 0 + property string finalValue: "" + property string finalLabel: "" + + function toInt_round(val) { return parseInt(val+0.5); } + + property alias textColor: colors.colorFontFxHeader + + readonly property int macroEffectChar: 0x00B6 + readonly property bool isMacroFx: (finalLabel.charCodeAt(0) == macroEffectChar) + + width: 0 + height: 45 + + Defines.Colors { id: colors } + + // Level indicator for knobs + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 45 + width: parent.width + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: finalLabel + color: settings.accentColor + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 2 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + + // value + Text { + id: fxInfoValueLarge + text: finalValue + font.family: "Pragmatica" // is monospaced + color: colors.colorWhite + visible: true + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 4 + font.pixelSize: 15 + anchors.topMargin: 22 + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/FXInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/FXInfoDetails.qml new file mode 100755 index 000000000000..70b52426b30d --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/FXInfoDetails.qml @@ -0,0 +1,66 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + property var parameter: ({description:"Description",value: 0, valueRange: {isDiscrete: true, steps: 1}}) // set from outside + property string label: "DRUMLOOP" + + property alias textColor: colors.colorFontFxHeader + property bool header: false + property int effectID: 0 + property int fxUnit: 1 + + // AppProperty {id: slot1; path: "app.traktor.fx." + fxUnit + ".select.1"} + QtObject { + id: slot1 + property string description: "Description" + property var value: 0 + } + // AppProperty {id: slot2; path: "app.traktor.fx." + fxUnit + ".select.2"} + QtObject { + id: slot2 + property string description: "Description" + property var value: 0 + } + // AppProperty {id: slot3; path: "app.traktor.fx." + fxUnit + ".select.3"} + QtObject { + id: slot3 + property string description: "Description" + property var value: 0 + } + + width: 0 + height: 20 + + Defines.Colors { id: colors } + Defines.Settings {id: settings} + + // Level indicator for knobs + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 20 + width: parent.width + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: label + color: header ? settings.accentColor : (slot1.value == effectID || slot2.value == effectID || slot3.value == effectID ? "lime" : "white") + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 2 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/GridControls.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/GridControls.qml new file mode 100755 index 000000000000..0da2209b2edf --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/GridControls.qml @@ -0,0 +1,209 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +import Mixxx 1.0 as Mixxx + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: bottomLabels + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (180 - bottomMargin) + property int deckId: 1 + + // AppProperty { id: waveZoomProp; path: "app.traktor.decks." + deckId + ".track.waveform_zoom" } + Mixxx.ControlProxy { + group: `[Channel${deckId}]` + key: "waveform_zoom" + id: waveZoomProp + } + // AppProperty { id: tick; path: "app.traktor.decks." + deckId + ".track.grid.enable_tick" } + QtObject { + id: tick + property string description: "Description" + property var value: 0 + } + Mixxx.ControlProxy { + group: `[Channel${deckId}]` + id: range + key: "rateRange" + property string description: "Description" + property var valueRange: ({isDiscrete: false, steps: 1}) + } + + readonly property color barBgColor: "black" + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + + height: 60 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: bottomLabels.height + color: colors.colorFxHeaderBg + // light grey background + Rectangle { + id:bottomInfoDetailsPanelLightBg + anchors { + top: parent.top + left: parent.left + } + height: bottomLabels.height + width: 80 + color: colors.colorFxHeaderLightBg + } + } + +// // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:63; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 160 + height: 63 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 240 + height: 63 + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Row { + GridInfoDetails { + id: bottomInfoDetails1 + parameter: waveZoomProp + label: "ZOOM" + fxEnabled: true + barBgColor: bottomLabels.barBgColor + hideButton: true + zoom: true + hideValue: false + } + + GridInfoDetails { + id: bottomInfoDetails2 + parameter: tick + label: "TICK" + fxEnabled: false + isOn: tick.value + barBgColor: bottomLabels.barBgColor + hideButton: true + zoom: true + hideValue: true + } + + GridInfoDetails { + id: bottomInfoDetails3 + parameter: tick + label: "TICK" + fxEnabled: false + isOn: tick.value + barBgColor: bottomLabels.barBgColor + hideButton: true + zoom: true + hideValue: true + } + + GridInfoDetails { + id: bottomInfoDetails4 + parameter: range + label: "RANGE" + fxEnabled: true + barBgColor: bottomLabels.barBgColor + hideButton: true + zoom: false + hideValue: false + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: bottomLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: bottomLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: bottomLabels; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/GridInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/GridInfoDetails.qml new file mode 100755 index 000000000000..4d54ee03c285 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/GridInfoDetails.qml @@ -0,0 +1,160 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + Defines.Settings {id: settings} + + property var parameter: ({description:"Description",value: 0}) // set from outside + property bool isOn: false + property string label: "DRUMLOOP" + property string sizeState: "small" + property string buttonLabel: "HP ON" + property bool fxEnabled: false + property bool zoom: true + property bool hideButton: true + property bool hideValue: true + + property bool indicatorEnabled: fxEnabled && label.length > 0 + property string finalValue: zoom ? (((10 - parameter.value) / 9)*100).toFixed(2)+"%" : toInt_round(parameter.value*100).toString() + "%" + property string finalLabel: fxEnabled ? label : "" + property string finalButtonLabel: "ON" + property color barBgColor // set from outside + + function toInt_round(val) { return parseInt(val+0.5); } + + property alias textColor: colors.colorFontFxHeader + + readonly property int macroEffectChar: 0x00B6 + readonly property bool isMacroFx: (finalLabel.charCodeAt(0) == macroEffectChar) + + readonly property var valueRange: parameter.valueRange || {} + + width: 80 + height: 45 + + Defines.Colors { id: colors } + + // Level indicator for knobs + Widgets.ProgressBar { + id: slider + progressBarHeight: (sizeState == "small") ? 6 : 9 + progressBarWidth: 76 + anchors.left: parent.left + anchors.top: parent.top + anchors.topMargin: 3 + anchors.leftMargin: 2 + + value: label == "ZOOM" ? (10 - parameter.value) / 9 : parameter.value + visible: !(valueRange.isDiscrete && fxEnabled) + + drawAsEnabled: indicatorEnabled + + progressBarBackgroundColor: parent.barBgColor + } + + // stepped progress bar + Widgets.StateBar { + id: slider2 + height: (sizeState == "small") ? 6 : 9 + width: 76 + anchors.left: parent.left + anchors.top: parent.top + anchors.leftMargin: 2 + anchors.topMargin: 3 + + stateCount: valueRange.steps || 0 + currentState: (valueRange.steps - 1.0 + 0.2) * parameter.value // +.2 to make sure we round in the right direction + visible: !slider.visible + barBgColor: parent.barBgColor + } + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 100 + width: parent.width + + Rectangle { + id: macroIconDetails + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 4 + anchors.topMargin: 50 + + width: 12 + height: 11 + radius: 1 + visible: isMacroFx + color: colors.colorGrey216 + + Text { + anchors.fill: parent + anchors.topMargin: -1 + anchors.leftMargin: 1 + text: "M" + font.pixelSize: fonts.miniFontSize + color: colors.colorBlack + } + } + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: finalLabel + color: settings.accentColor + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 40 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: isMacroFx ? 26 : 4 + anchors.rightMargin: 12 + elide: Text.ElideRight + } + + // value + Text { + id: fxInfoValueLarge + text: finalValue + font.family: "Pragmatica" // is monospaced + color: colors.colorWhite + visible: (label.length > 0) && !hideValue + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 4 + font.pixelSize: 15 + anchors.topMargin: 22 + } + + // button + Rectangle { + id: fxInfoFilterButton + width: 30 + + color: ( fxEnabled ? (isOn ? colors.colorIndicatorLevelOrange : colors.colorBlack) : "transparent" ) + visible: (buttonLabel.length > 0) && !hideButton + radius: 1 + anchors.right: parent.right + anchors.rightMargin: 2 + anchors.top: parent.top + height: 15 + anchors.topMargin: 24 + + Text { + id: fxInfoFilterButtonText + font.capitalization: Font.AllUppercase + text: finalButtonLabel + color: ( fxEnabled ? (isOn ? colors.colorBlack : colors.colorGrey128) : colors.colorGrey128 ) + font.pixelSize: fonts.miniFontSize + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/JumpControls.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/JumpControls.qml new file mode 100755 index 000000000000..57c4e97d8adb --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/JumpControls.qml @@ -0,0 +1,239 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Widgets' as Widgets +import '../Defines' as Defines + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: fxLabels + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (240 - height) + property string name: "" + readonly property color barBgColor: "black" + + required property var deckInfo + readonly property bool shift: deckInfo.shift + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + Defines.Settings { id: settings } + + height: 65 + anchors.left: parent.left + anchors.right: parent.right + + Mixxx.ControlProxy { + id: beatjump + group: deckInfo.group + key: "beatjump_size" + } + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: fxLabels.height + color: colors.colorFxHeaderBg + } + + // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:80; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 160 + height: 80 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 240 + height: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider3 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + } + + // dividers + Rectangle { + id: fxInfoDivider4 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 40 + anchors.left: parent.left + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Column { + Row { + JumpInfoDetails { + id: header + label: "MOVE/BEATJUMP" + width: 200 + header: true + } + } + + Row { + JumpInfoDetails { + id: bottomInfoDetails1 + label: deckInfo.jumpSizePad1 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad1, shift) + back: shift + width: 80 + } + JumpInfoDetails { + id: bottomInfoDetails2 + label: deckInfo.jumpSizePad2 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad2, shift) + back: shift + width: 80 + } + JumpInfoDetails { + id: bottomInfoDetails3 + label: deckInfo.jumpSizePad3 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad3, shift) + back: shift + width: 80 + } + JumpInfoDetails { + id: bottomInfoDetails4 + label: deckInfo.jumpSizePad4 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad4, shift) + back: shift + width: 80 + } + } + + Row { + JumpInfoDetails { + id: bottomInfoDetails5 + label: deckInfo.jumpSizePad5 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad5, shift) + back: shift + width: 80 + } + JumpInfoDetails { + id: bottomInfoDetails6 + label: deckInfo.jumpSizePad6 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad6, shift) + back: shift + width: 80 + } + JumpInfoDetails { + id: bottomInfoDetails7 + label: deckInfo.jumpSizePad7 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad7, shift) + back: shift + width: 80 + } + JumpInfoDetails { + id: bottomInfoDetails8 + label: deckInfo.jumpSizePad8 === "??" ? (shift ? "- " : " ") + (beatjump.value < 1 ? `1 / ${1/beatjump.value}` : `${beatjump.value}`) : getValue(deckInfo.jumpSizePad8, shift) + back: shift + width: 80 + } + } + } + } + + function getValue(size, shift) { + if (parseFloat(size)) { + return (shift ? "- " : " ") + (size < 1 ? `1 / ${1/size}` : `${size}`) + } else if (size === "??") { + return null; + } else { + return size + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: fxLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: fxLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: fxLabels; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/JumpInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/JumpInfoDetails.qml new file mode 100755 index 000000000000..6b220097ade5 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/JumpInfoDetails.qml @@ -0,0 +1,45 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + Defines.Settings {id: settings} + + property string label: "DRUMLOOP" + property bool back: false + property bool header: false + + width: 0 + height: 20 + + Defines.Colors { id: colors } + + // Level indicator for knobs + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 20 + width: parent.width + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: label + color: header ? settings.accentColor : (label == "n/a" || label == "" ? "white" : back == true ? "red" : "lime") + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 0 + font.pixelSize: fonts.scale(18) + anchors.leftMargin: 4 + elide: Text.ElideRight + horizontalAlignment: header ? Text.AlignLeft : Text.AlignHCenter + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/LoopControls.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/LoopControls.qml new file mode 100755 index 000000000000..ea9f5c29fe72 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/LoopControls.qml @@ -0,0 +1,230 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines +import '../ViewModels' as ViewModels + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: view + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (240 - height) + property string name: "" + readonly property color barBgColor: "black" + property int deckId: 1 + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + Defines.Settings { id: settings } + + required property var deckInfo + + height: 65 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: view.height + color: colors.colorFxHeaderBg + } + + // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:80; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 160 + height: 80 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 240 + height: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider3 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + } + + // dividers + Rectangle { + id: fxInfoDivider4 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 40 + anchors.left: parent.left + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Column { + Row { + LoopInfoDetails { + id: header + label: "LOOP" + width: 200 + header: true + } + } + + Row { + LoopInfoDetails { + id: bottomInfoDetails1 + label: deckInfo.loopSizePad1 + label2: deckInfo.loopSizePad1 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails2 + label: deckInfo.loopSizePad2 + label2: deckInfo.loopSizePad2 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails3 + label: deckInfo.loopSizePad3 + label2: deckInfo.loopSizePad3 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails4 + label: deckInfo.loopSizePad4 + label2: deckInfo.loopSizePad4 + deckId: deckId + width: 80 + } + } + + Row { + LoopInfoDetails { + id: bottomInfoDetails5 + label: deckInfo.loopSizePad5 + label2: deckInfo.loopSizePad5 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails6 + label: deckInfo.loopSizePad6 + label2: deckInfo.loopSizePad6 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails7 + label: deckInfo.loopSizePad7 + label2: deckInfo.loopSizePad7 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails8 + label: deckInfo.loopSizePad8 + label2: deckInfo.loopSizePad8 + deckId: deckId + width: 80 + } + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: view.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: view; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: view; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/LoopInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/LoopInfoDetails.qml new file mode 100755 index 000000000000..12ab2ff7c036 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/LoopInfoDetails.qml @@ -0,0 +1,57 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + property string label: "" + property string label2: "" + property bool header: false + property int deckId: 1 + + // AppProperty { id: enabled; path: "app.traktor.decks." + deckId + ".loop.is_in_active_loop" } + QtObject { + id: enabled + property string description: "Description" + property var value: 0 + } + // AppProperty { id: size; path: "app.traktor.decks." + deckId + ".loop.size" } + QtObject { + id: size + property string description: "Description" + property var value: 0 + } + + width: 0 + height: 20 + + Defines.Colors { id: colors } + + // Level indicator for knobs + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 20 + width: parent.width + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: header ? label : label2 + color: header ? settings.accentColor : (enabled.value && (size.value == label) ? "lime" : "white") + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 0 + font.pixelSize: fonts.scale(18) + anchors.leftMargin: 4 + elide: Text.ElideRight + horizontalAlignment: header ? Text.AlignLeft : Text.AlignHCenter + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/QuickFXSelector.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/QuickFXSelector.qml new file mode 100755 index 000000000000..930ce608e7ce --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/QuickFXSelector.qml @@ -0,0 +1,151 @@ +import QtQuick 2.15 + +import '../Defines' as Defines +import '../Widgets' as Widgets + +import Mixxx 1.0 as Mixxx + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: topLabels + + required property var deckInfo + + property int topMargin: 0 + + property int yPositionWhenHidden: -25 + property int yPositionWhenShown: topMargin + + readonly property color barBgColor: "black" + + property var fxModel: Mixxx.EffectsManager.quickChainPresetModel + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + Defines.Settings {id: settings} + + height: 25 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: topInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: topLabels.height + color: colors.colorFxHeaderBg + // light grey background + // Rectangle { + // id:topInfoDetailsPanelLightBg + // anchors { + // top: parent.top + // left: parent.left + // } + // height: topLabels.height + // width: 240 + // color: colors.colorFxHeaderLightBg + // } + } + + // Info Details + Rectangle { + id: topInfoDetailsPanel + + height: parent.height + // clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + // Row { + // id: controlRow + + // Item { + // id: quickFxDetailsPanel + + // height: display.height + // width: 260 + + // name + Text { + id: stemInfoName + font.capitalization: Font.AllUppercase + text: "SELECTED QUICK FX" + color: settings.accentColor + + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.leftMargin: 10 + + font.pixelSize: fonts.scale(13.5) + elide: Text.ElideRight + } + + // value + Text { + id: nameValue + font.capitalization: Font.AllUppercase + text: fxModel.get(deckInfo.quickFXSelected).display || "---" + color: colors.colorWhite + + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: 10 + + font.pixelSize: fonts.scale(13.5) + elide: Text.ElideRight + } + // } + // } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: topLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + state: deckInfo.quickFXSelected != null ? "show" : "hide" + states: [ + State { + name: "show"; + PropertyChanges { target: topLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: topLabels; y: -height} + } + ] +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/RollControls.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/RollControls.qml new file mode 100755 index 000000000000..0b85f5b4e983 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/RollControls.qml @@ -0,0 +1,230 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines +import '../ViewModels' as ViewModels + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: view + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (240 - height) + property string name: "" + readonly property color barBgColor: "black" + property int deckId: 1 + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + Defines.Settings { id: settings } + + required property var deckInfo + + height: 65 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: view.height + color: colors.colorFxHeaderBg + } + + // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:80; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 160 + height: 80 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 240 + height: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider3 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + } + + // dividers + Rectangle { + id: fxInfoDivider4 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 40 + anchors.left: parent.left + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Column { + Row { + LoopInfoDetails { + id: header + label: "ROLL" + width: 200 + header: true + } + } + + Row { + LoopInfoDetails { + id: bottomInfoDetails1 + label: deckInfo.rollSizePad1 + label2: deckInfo.rollSizePad1 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails2 + label: deckInfo.rollSizePad2 + label2: deckInfo.rollSizePad2 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails3 + label: deckInfo.rollSizePad3 + label2: deckInfo.rollSizePad3 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails4 + label: deckInfo.rollSizePad4 + label2: deckInfo.rollSizePad4 + deckId: deckId + width: 80 + } + } + + Row { + LoopInfoDetails { + id: bottomInfoDetails5 + label: deckInfo.rollSizePad5 + label2: deckInfo.rollSizePad5 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails6 + label: deckInfo.rollSizePad6 + label2: deckInfo.rollSizePad6 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails7 + label: deckInfo.rollSizePad7 + label2: deckInfo.rollSizePad7 + deckId: deckId + width: 80 + } + LoopInfoDetails { + id: bottomInfoDetails8 + label: deckInfo.rollSizePad8 + label2: deckInfo.rollSizePad8 + deckId: deckId + width: 80 + } + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: view.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: view; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: view; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/ToneControls.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/ToneControls.qml new file mode 100755 index 000000000000..0ecebfade340 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/ToneControls.qml @@ -0,0 +1,247 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: fxLabels + + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (240 - height) + property string name: "" + readonly property color barBgColor: "black" + property int deckId: 1 + property real adjustVal: 0.00 + property string adjust: adjustVal.toFixed(0) + + Timer { + id: toneTimer + property bool blink: false + + interval: 250 + repeat: true + running: adjust != 0 + + onTriggered: { + blink = !blink; + } + + onRunningChanged: { + blink = running; + } + } + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + Defines.Settings { id: settings } + + // MappingProperty { id: forward; path: "mapping.state." + deckId + ".forward"} + QtObject { + id: forward + property string description: "Description" + property var value: 0 + } + + property bool forwardVal: forward.value + + height: 65 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: fxLabels.height + color: colors.colorFxHeaderBg + } + + // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:80; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 160 + height: 80 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + anchors.leftMargin: 240 + height: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider3 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 20 + anchors.left: parent.left + } + + // dividers + Rectangle { + id: fxInfoDivider4 + width:360; + height:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.topMargin: 40 + anchors.left: parent.left + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Column { + Row { + ToneInfoDetails { + id: header + label: "TONE" + width: 200 + header: true + } + } + + Row { + ToneInfoDetails { + id: bottomInfoDetails1 + label: "0" + color: adjust != 0 ? "grey" : "white" + width: 80 + } + ToneInfoDetails { + id: bottomInfoDetails2 + label: forwardVal ? "+1" : "-1" + color: forwardVal ? ((adjust == 1) && toneTimer.blink ? "white" : "lime") : ((adjust == -1) && toneTimer.blink ? "white" : "red") + width: 80 + } + ToneInfoDetails { + id: bottomInfoDetails3 + label: forwardVal ? "+2" : "-2" + color: forwardVal ? ((adjust == 2) && toneTimer.blink ? "white" : "lime") : ((adjust == -2) && toneTimer.blink ? "white" : "red") + width: 80 + } + ToneInfoDetails { + id: bottomInfoDetails4 + label: forwardVal ? "+3" : "-3" + color: forwardVal ? ((adjust == 3) && toneTimer.blink ? "white" : "lime") : ((adjust == -3) && toneTimer.blink ? "white" : "red") + width: 80 + } + } + + Row { + ToneInfoDetails { + id: bottomInfoDetails5 + label: forwardVal ? "+4" : "-4" + color: forwardVal ? ((adjust == 4) && toneTimer.blink ? "white" : "lime") : ((adjust == -4) && toneTimer.blink ? "white" : "red") + width: 80 + } + ToneInfoDetails { + id: bottomInfoDetails6 + label: forwardVal ? "+5" : "-5" + color: forwardVal ? ((adjust == 5) && toneTimer.blink ? "white" : "lime") : ((adjust == -5) && toneTimer.blink ? "white" : "red") + width: 80 + } + ToneInfoDetails { + id: bottomInfoDetails7 + label: forwardVal ? "+6" : "-6" + color: forwardVal ? ((adjust == 6) && toneTimer.blink ? "white" : "lime") : ((adjust == -6) && toneTimer.blink ? "white" : "red") + width: 80 + } + ToneInfoDetails { + id: bottomInfoDetails8 + label: forwardVal ? "+7" : "-7" + color: forwardVal ? ((adjust == 7) && toneTimer.blink ? "white" : "lime") : ((adjust == -7) && toneTimer.blink ? "white" : "red") + width: 80 + } + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: fxLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: fxLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: fxLabels; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/ToneInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/ToneInfoDetails.qml new file mode 100755 index 000000000000..0e39735a4f92 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/ToneInfoDetails.qml @@ -0,0 +1,44 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + property string label: "" + property bool header: false + property string color: "white" + + width: 0 + height: 20 + + Defines.Colors { id: colors } + Defines.Settings {id: settings} + + // Level indicator for knobs + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 20 + width: parent.width + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: label + color: header ? settings.accentColor : fxInfoDetails.color + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 0 + font.pixelSize: fonts.scale(18) + anchors.leftMargin: 4 + elide: Text.ElideRight + horizontalAlignment: header ? Text.AlignLeft : Text.AlignHCenter + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/TopControls.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/TopControls.qml new file mode 100755 index 000000000000..3fb7fa1defa3 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/TopControls.qml @@ -0,0 +1,348 @@ +import QtQuick 2.15 + +import '../Defines' as Defines +import '../Widgets' as Widgets + +import Mixxx 1.0 as Mixxx + +//-------------------------------------------------------------------------------------------------------------------- +// FX CONTROLS +//-------------------------------------------------------------------------------------------------------------------- + +// The FxControls are located on the top of the screen and blend in if one of the top knobs is touched/changed + +Item { + id: topLabels + + property int topMargin: 0 + + property string showHideState: "hide" + property int fxUnit: 0 + property int yPositionWhenHidden: 0 - topLabels.height - headerBlackLine.height - headerShadow.height // also hides black border & shadow + property int yPositionWhenShown: topMargin + + readonly property color barBgColor: "black" + + property var fxModel: Mixxx.EffectsManager.visibleEffectsModel + + Defines.Colors { id: colors } + Defines.Durations { id: durations } + + height: 40 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: topInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: topLabels.height + color: colors.colorFxHeaderBg + // light grey background + Rectangle { + id:topInfoDetailsPanelLightBg + anchors { + top: parent.top + left: parent.left + } + height: topLabels.height + width: 80 + color: colors.colorFxHeaderLightBg + } + } + +// // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:40; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 80 + } + + // dividers + Rectangle { + id: fxInfoDivider1 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 160 + height: 40 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 240 + height: 40 + } + + // Info Details + Rectangle { + id: topInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + // AppProperty { id: fxDryWet; path: "app.traktor.fx." + (fxUnit + 1) + ".dry_wet" } + + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}]` + key: `mix` + id: fxDryWet + property string description: "" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + + // AppProperty { id: fxParam1; path: "app.traktor.fx." + (fxUnit + 1) + ".parameters.1" } + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect1]` + key: `meta` + id: fxParam1 + property string description: "" + property var valueRange: ({isDiscrete: false, steps: 0}) + } + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect1]` + key: `enabled` + id: fxEnabled1 + } + QtObject { + id: fxKnob1name + + property Mixxx.EffectSlotProxy slot: Mixxx.EffectsManager.getEffectSlot(1, 1) + property string description: "Description" + property var value: "---" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + Mixxx.ControlProxy { + id: fxSelect1 + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect1]` + key: `loaded_effect` + onValueChanged: { + fxKnob1name.value = topLabels.fxModel.get(value).display + } + } + + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect2]` + key: `meta` + id: fxParam2 + property string description: "" + property var valueRange: ({isDiscrete: false, steps: 0}) + } + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect2]` + key: `enabled` + id: fxEnabled2 + } + QtObject { + id: fxKnob2name + + property Mixxx.EffectSlotProxy slot: Mixxx.EffectsManager.getEffectSlot(1, 2) + property string description: "Description" + property var value: "---" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + Mixxx.ControlProxy { + id: fxSelect2 + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect2]` + key: `loaded_effect` + onValueChanged: { + fxKnob2name.value = topLabels.fxModel.get(value).display + } + } + + // AppProperty { id: fxParam3; path: "app.traktor.fx." + (fxUnit + 1) + ".parameters.3" } + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect3]` + key: `meta` + id: fxParam3 + property string description: "" + property var valueRange: ({isDiscrete: false, steps: 0}) + } + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect3]` + key: `enabled` + id: fxEnabled3 + } + QtObject { + id: fxKnob3name + + property Mixxx.EffectSlotProxy slot: Mixxx.EffectsManager.getEffectSlot(1, 3) + property string description: "Description" + property var value: "---" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + Mixxx.ControlProxy { + id: fxSelect3 + group: `[EffectRack1_EffectUnit${fxUnit + 1}_Effect3]` + key: `loaded_effect` + onValueChanged: { + fxKnob3name.value = topLabels.fxModel.get(value).display + } + } + + Mixxx.ControlProxy { + group: `[EffectRack1_EffectUnit${fxUnit + 1}]` + key: "enabled" + id: fxOn + property string description: "Description" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: fxButton1; path: "app.traktor.fx." + (fxUnit + 1) + ".buttons.1" } + QtObject { + id: fxButton1 + property string description: "Description" + property var value: fxEnabled1.value + property var valueRange: ({isDiscrete: true, steps: 1}) + } + + // AppProperty { id: fxButton1name; path: "app.traktor.fx." + (fxUnit + 1) + ".buttons.1.name" } + QtObject { + id: fxButton1name + property string description: "Description" + property var value: "ON" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: fxButton2; path: "app.traktor.fx." + (fxUnit + 1) + ".buttons.2" } + QtObject { + id: fxButton2 + property string description: "Description" + property var value: fxEnabled2.value + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: fxButton2name; path: "app.traktor.fx." + (fxUnit + 1) + ".buttons.2.name" } + QtObject { + id: fxButton2name + property string description: "Description" + property var value: "ON" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: fxButton3; path: "app.traktor.fx." + (fxUnit + 1) + ".buttons.3" } + QtObject { + id: fxButton3 + property string description: "Description" + property var value: fxEnabled3.value + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: fxButton3name; path: "app.traktor.fx." + (fxUnit + 1) + ".buttons.3.name" } + QtObject { + id: fxButton3name + property string description: "Description" + property var value: "ON" + property var valueRange: ({isDiscrete: true, steps: 1}) + } + + // AppProperty { id: fxType; path: "app.traktor.fx." + (fxUnit + 1) + ".type" } // singleMode -> fxSelect1.description else "DRY/WET" + QtObject { + id: fxType + property string description: "Description" + property var value: 0 + property var valueRange: ({isDiscrete: true, steps: 1}) + } + + Row { + id: controlRow + TopInfoDetails { + id: topInfoDetails1 + parameter: fxDryWet + isOn: fxOn.value + label: fxType.value == 1 ? ((fxSelect1.description == "Delay") ? "DELAY" : (fxSelect1.description == "Reverb") ? "REVRB" : (fxSelect1.description == "Flanger") ? "FLANG" : (fxSelect1.description == "Flanger Pulse") ? "FLN-P" : (fxSelect1.description == "Flanger Flux") ? "FLN-F" : (fxSelect1.description == "Gater") ? "GATER" : (fxSelect1.description == "Beatmasher 2") ? "BEATM" : (fxSelect1.description == "Delay T3") ? "T3DELAY" : (fxSelect1.description == "Filter LFO") ? "FLT-O" : (fxSelect1.description == "Filter Pulse") ? "FLT-P" : (fxSelect1.description == "Filter") ? "FILTR" : (fxSelect1.description == "Filter:92 Pulse") ? "F92-O" : (fxSelect1.description == "Filter:92 Pulse") ? "F92-P" : (fxSelect1.description == "Filter:92") ? "FLT92" : (fxSelect1.description == "Phaser") ? "PHFXASR" : (fxSelect1.description == "Phaser Pulse") ? "PHS-P" : (fxSelect1.description == "Phaser Flux") ? "PHS-F" : (fxSelect1.description == "Reverse Grain") ? "REVGR" : (fxSelect1.description == "Turntable FX") ? "TTFX" : (fxSelect1.description == "Iceverb") ? "ICEVB" : (fxSelect1.description == "Reverb T3") ? "T3REVRB" : (fxSelect1.description == "Ringmodulator") ? "RINGM" : (fxSelect1.description == "Digital LoFi") ? "LOFI" : (fxSelect1.description == "Mulholland Drive") ? "MHDRV" : (fxSelect1.description == "Transpose Stretch") ? "TRANS" : (fxSelect1.description == "BeatSlicer") ? "SLICER" : (fxSelect1.description == "Formant Filter") ? "FFTR" : (fxSelect1.description == "Peak Filter") ? "PFTR" : (fxSelect1.description == "Tape Delay") ? "TPDELAY" : (fxSelect1.description == "Ramp Delay") ? "RMPDLY" : (fxSelect1.description == "Auto Bouncer") ? "ABOUNCE" : (fxSelect1.description == "Bouncer") ? "BOUNCER" : (fxKnob3name.value == "LASLI") ? "LASLI" : (fxKnob3name.value == "GRANP") ? "GRANP" : (fxKnob3name.value == "B-O-M") ? "B-O-M" : (fxKnob3name.value == "POWIN") ? "POWIN" : (fxKnob3name.value == "EVNHR") ? "EVNHR" : (fxKnob3name.value == "ZZZRP") ? "ZZZRP" : (fxKnob3name.value == "STRRS") ? "STRRS" : (fxKnob3name.value == "STRRF") ? "STRRF" : (fxKnob3name.value == "DARKM") ? "DARKM" : (fxKnob3name.value == "FTEST") ? "FTEST" : fxSelect1.description) : "DRY/WET" + buttonLabel: fxType.value == 1 ? "ON" : "" + fxEnabled: (fxType.value != 1) || fxSelect1.value + barBgColor: topLabels.barBgColor + isPatternPlayer: (fxType.value == 2 ? true : false) + } + TopInfoDetails { + id: topInfoDetails2 + parameter: fxParam1 + isOn: fxButton1.value + label: fxKnob1name.value + buttonLabel: fxButton1name.value + fxEnabled: (fxSelect1.value || ((fxType.value == 1) && fxSelect1.value) ) + barBgColor: topLabels.barBgColor + isPatternPlayer: (fxType.value == 2 ? true : false) + } + + TopInfoDetails { + id: topInfoDetails3 + parameter: fxParam2 + isOn: fxButton2.value + label: fxKnob2name.value + buttonLabel: fxButton2name.value + fxEnabled: (fxSelect2.value || ((fxType.value == 1) && fxSelect1.value) ) + barBgColor: topLabels.barBgColor + isPatternPlayer: (fxType.value == 2 ? true : false) + } + + TopInfoDetails { + id: topInfoDetails4 + parameter: fxParam3 + isOn: fxButton3.value + label: fxKnob3name.value + buttonLabel: fxButton3name.value + fxEnabled: (fxSelect3.value || ((fxType.value == 1) && fxSelect1.value) ) + barBgColor: topLabels.barBgColor + isPatternPlayer: (fxType.value == 2 ? true : false) + } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: topLabels.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.overlayTransition; easing.type: Easing.InOutQuad } } + + Item { + id: showHide + state: showHideState + states: [ + State { + name: "show"; + PropertyChanges { target: topLabels; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: topLabels; y: yPositionWhenHidden} + } + ] + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/TopInfoDetails.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/TopInfoDetails.qml new file mode 100755 index 000000000000..92ea2991b01a --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Overlays/TopInfoDetails.qml @@ -0,0 +1,152 @@ +import QtQuick 2.15 + +import '../Widgets' as Widgets +import '../Defines' as Defines + +Item { + id: fxInfoDetails + + property var parameter: ({}) // set from outside + property bool isOn: false + property string label: "DRUMLOOP" + property string sizeState: "small" + property string buttonLabel: "HP ON" + property bool fxEnabled: false + property bool indicatorEnabled: fxEnabled && label.length > 0 + property string finalValue: fxEnabled ? parameter.description : "" + property string finalLabel: fxEnabled ? label : "" + property string finalButtonLabel: fxEnabled ? buttonLabel : "" + property color barBgColor // set from outside + property bool isPatternPlayer: false + + property alias textColor: colors.colorFontFxHeader + + readonly property int macroEffectChar: 0x00B6 + readonly property bool isMacroFx: (finalLabel.charCodeAt(0) == macroEffectChar) + + width: 80 + height: 45 + + Defines.Colors { id: colors } + Defines.Settings {id: settings} + + // Level indicator for knobs + Widgets.ProgressBar { + id: slider + progressBarHeight: (sizeState == "small") ? 6 : 9 + progressBarWidth: 76 + anchors.left: parent.left + anchors.top: parent.top + anchors.topMargin: 3 + anchors.leftMargin: 2 + + value: parameter.value + visible: fxEnabled + + drawAsEnabled: indicatorEnabled + + progressBarBackgroundColor: parent.barBgColor + } + + // stepped progress bar + Widgets.StateBar { + id: slider2 + height: (sizeState == "small") ? 6 : 9 + width: 76 + anchors.left: parent.left + anchors.top: parent.top + anchors.leftMargin: 2 + anchors.topMargin: 3 + + stateCount: parameter.valueRange.steps + currentState: (slider2.stateCount - 1.0 + 0.2) * parameter.value // +.2 to make sure we round in the right direction + visible: parameter.valueRange != undefined && parameter.valueRange.steps > 1 && fxEnabled && label.length > 0 + barBgColor: parent.barBgColor + } + + // Diverse Elements + Item { + id: fxInfoDetailsPanel + + height: 100 + width: parent.width + + Rectangle { + id: macroIconDetails + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 4 + anchors.topMargin: 15 + + width: 12 + height: 11 + radius: 1 + visible: isMacroFx + color: colors.colorGrey216 + + Text { + anchors.fill: parent + anchors.topMargin: -1 + anchors.leftMargin: 1 + text: "M" + font.pixelSize: fonts.miniFontSize + color: colors.colorBlack + } + } + + // fx name + Text { + id: fxInfoSampleName + font.capitalization: Font.AllUppercase + text: finalLabel + color: isPatternPlayer ? colors.colorGreenMint : settings.accentColor + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 8 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: isMacroFx ? 26 : 4 + anchors.rightMargin: 12 + elide: Text.ElideRight + } + + // value + Text { + id: fxInfoValueLarge + text: finalValue + font.family: "Pragmatica" // is monospaced + color: colors.colorWhite + visible: label.length > 0 + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 4 + font.pixelSize: 15 + anchors.topMargin: 24 + } + + // button + Rectangle { + id: fxInfoFilterButton + width: 30 + + color: ( fxEnabled ? (isOn ? (isPatternPlayer ? colors.colorGreenMint : colors.colorIndicatorLevelOrange) : colors.colorBlack) : "transparent" ) + visible: buttonLabel.length > 0 + radius: 1 + anchors.right: parent.right + anchors.rightMargin: 2 + anchors.top: parent.top + height: 15 + anchors.topMargin: 26 + + Text { + id: fxInfoFilterButtonText + font.capitalization: Font.AllUppercase + text: finalButtonLabel + color: ( fxEnabled ? (isOn ? colors.colorBlack : colors.colorGrey128) : colors.colorGrey128 ) + font.pixelSize: fonts.miniFontSize + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/Cell.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/Cell.qml new file mode 100755 index 000000000000..7df5c69b37ea --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/Cell.qml @@ -0,0 +1,54 @@ +import QtQuick 2.5 + +Item { + id: cell + property int slotId:0 + property int deckId: 0 + property int cellId: 0 + + readonly property bool isEmpty: propState.description == "Empty" + readonly property color color: isEmpty ? colors.colorDeckBrightGrey : colors.palette(computeBrightness(propState.description, propDisplayState.description), propColorId.value) + readonly property color brightColor: isEmpty ? colors.colorDeckBrightGrey : colors.palette(1., propColorId.value) + readonly property color midColor: isEmpty ? colors.colorDeckGrey : colors.palette(0.5, propColorId.value) + readonly property color dimmedColor: isEmpty ? colors.colorDeckDarkGrey : colors.palette(0., propColorId.value) + + readonly property string name: propName.value + readonly property bool isLooped: propPlayMode.description == "Looped" + + // AppProperty { id: propColorId; path: "app.traktor.decks." + deckId + ".remix.cell.columns." + slotId + ".rows." + cellId + ".color_id" } + QtObject { + id: propColorId + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propName; path: "app.traktor.decks." + deckId + ".remix.cell.columns." + slotId + ".rows." + cellId + ".name" } + QtObject { + id: propName + property string description: "Description" + property var value: 0 + } + //PlayMode can be "Looped" or "OneShot" + // AppProperty { id: propPlayMode; path: "app.traktor.decks." + deckId + ".remix.cell.columns." + slotId + ".rows." + cellId + ".play_mode" } + QtObject { + id: propPlayMode + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propState; path: "app.traktor.decks." + deckId + ".remix.cell.columns." + slotId + ".rows." + cellId + ".state" } + QtObject { + id: propState + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propDisplayState; path: "app.traktor.decks." + deckId + ".remix.cell.columns." + slotId + ".rows." + cellId + ".animation.display_state"} + QtObject { + id: propDisplayState + property string description: "Description" + property var value: 0 + } + + function computeBrightness(state, displayState) { + if (state == "Playing" && displayState == "BrightColor" ) {return 1.;} + return 0.5; + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/DeckInfo.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/DeckInfo.qml new file mode 100755 index 000000000000..bf018e723737 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/DeckInfo.qml @@ -0,0 +1,1568 @@ +import QtQuick 2.5 +import '../Defines' as Defines + +import Mixxx 1.0 as Mixxx + +//---------------------------------------------------------------------------------------------------------------------- +// Track Deck Model - provide data for the track deck view +//---------------------------------------------------------------------------------------------------------------------- + +Item { + id: viewModel + + property string group: `[Channel${viewModel.deckId}]` + readonly property var deckPlayer: Mixxx.PlayerManager.getPlayer(viewModel.group) + readonly property var currentPlayer: viewModel.deckPlayer?.currentTrack + readonly property string screenName: isLeftScreen(viewModel.deckId) ? "leftdeck" : "rightdeck" + + function onSharedDataUpdate(data) { + if (typeof data !== "object") { + return; + } + if (typeof data.group[screenName] === "string") { + viewModel.group = data.group[screenName] + console.log(`Changed group for screen ${screenName} to ${viewModel.group}`); + } + if (typeof data.shift === "object") { + propShift.value = !!data.shift[screenName] + } + if (typeof data.padsMode === "object") { + propPadsMode.value = data.padsMode[viewModel.group] + console.log(`Changed padsMode for screen ${screenName} to ${propPadsMode.value}`); + } + if (typeof data.selectedQuickFX !== "undefined") { + propSelectedQuickFX.value = data.selectedQuickFX + console.log(`Changed selectedQuickFX to ${propSelectedQuickFX.value}`); + } + if (typeof data.selectedStems === "object") { + let firstSelected = (data.selectedStems[viewModel.group] || []).findIndex(x => !!x); + propStemSelected.active = firstSelected >= 0; + if (propStemSelected.active) { + propStemSelected.idx = firstSelected; + } + console.log(`Changed selectedStems for screen ${screenName} to ${propStemSelected.idx}`); + } + if (typeof data.selectedHotcue === "object") { + let hotcue = data.selectedHotcue[viewModel.group]; + + if (hotcue) { + let model = viewModel.currentPlayer?.hotcuesModel?.get(hotcue - 1); + viewModel.hotcueId = hotcue; + viewModel.hotcuePressed = true; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } else { + viewModel.hotcuePressed = false; + } + + console.log(`Changed selectedHotcue for screen ${screenName} to ${hotcue}`); + } + if (typeof data.deckColor === "object") { + propDeckColors.a = data.deckColor["[Channel1]"] + propDeckColors.b = data.deckColor["[Channel2]"] + propDeckColors.c = data.deckColor["[Channel3]"] + propDeckColors.d = data.deckColor["[Channel4]"] + } + if (typeof data.rollpadSize === "object") { + for (let i = 0; i < 8; i++) { + switch (`${data.rollpadSize[i]}`.toLowerCase()) { + case "double": + propRollSizePad[`pad${i+1}`] = "x2" + break; + case "half": + propRollSizePad[`pad${i+1}`] = "/2" + break; + default: + propRollSizePad[`pad${i+1}`] = parseFloat(data.rollpadSize[i]) < 1 ? `1/${1/parseFloat(data.rollpadSize[i])}` : data.rollpadSize[i] + } + } + } + if (typeof data.beatjumpSize === "object") { + for (let i = 0; i < 8; i++) { + switch (`${data.beatjumpSize[i]}`.toLowerCase()) { + case "double": + propJumpSizePad[`pad${i+1}`] = "x2" + break; + case "half": + propJumpSizePad[`pad${i+1}`] = "/2" + break; + case "beatjump": + propJumpSizePad[`pad${i+1}`] = "??" + break; + default: + propJumpSizePad[`pad${i+1}`] = parseFloat(data.beatjumpSize[i]) < 1 ? `1/${1/parseFloat(data.beatjumpSize[i])}` : data.beatjumpSize[i] + } + } + } + } + Component.onCompleted: { + if (typeof engine.makeSharedDataConnection === "function") { + engine.makeSharedDataConnection(viewModel.onSharedDataUpdate) + viewModel.onSharedDataUpdate(engine.getSharedData()) + } + } + + function isLeftScreen(deckId) { + return deckId == 1 || deckId == 3; + } + + function deckLetter(deckId) { + switch (deckId) { + case 1: return "A"; + case 2: return "B"; + case 3: return "C"; + default: + console.error(`Unknown deck ${deckId}. Defaulting to D`); + case 4: + return "D"; + } + } + + function tempoNeeded(master, current) { + if (master > current) { + return (1-(current/master))*100; + } + return (master/current)*100; + } + + function toInt_round(val) { return parseInt(val+0.5); } + + function computeBeatCounterStringFromPosition(beat) { + var phraseLen = 4; + var curBeat = parseInt(beat); + + if (beat < 0.0) + curBeat = curBeat*-1; + + var value1 = parseInt(((curBeat/4)/phraseLen)+1); + var value2 = parseInt(((curBeat/4)%phraseLen)+1); + var value3 = parseInt( (curBeat%4)+1); + + if (beat < 0.0) + return "-" + value1.toString() + "." + value2.toString() + "." + value3.toString(); + + return value1.toString() + "." + value2.toString() + "." + value3.toString(); + } + + function computeBeatCounterStringFromPositionSingle(beat) { + var phraseLen = 4; + var curBeat = parseInt(beat); + + if (beat < 0.0) + curBeat = curBeat*-1; + + var value3 = parseInt( (curBeat%4)+1); + + return value3.toString(); + } + + function computeBeatCounterStringFromPositionAlt(beat) { + var phraseLen = 4; + var curBeat = parseInt(beat); + + if (beat < 0.0) + curBeat = curBeat*-1; + + var value1 = parseInt(((curBeat)/phraseLen)+1); + var value2 = parseInt( (curBeat%4)+1); + + if (beat < 0.0) + return "-" + value1.toString() + "." + value2.toString(); + + return value1.toString() + "." + value2.toString(); + } + + //////////////////////////////////// + ////// Global info properties ////// + //////////////////////////////////// + QtObject { + id: propDeckColors + property int a: 10 + property int b: 10 + property int c: 2 + property int d: 2 + } + QtObject { + id: propRollSizePad + property var pad1: 1/32 + property var pad2: 1/16 + property var pad3: 1/8 + property var pad4: 1/4 + property var pad5: 1/2 + property var pad6: 1 + property var pad7: 2 + property var pad8: 4 + } + QtObject { + id: propJumpSizePad + property var pad1: 0.5 + property var pad2: 1 + property var pad3: 2 + property var pad4: 4 + property var pad5: 8 + property var pad6: 16 + property var pad7: 32 + property var pad8: 64 + } + + readonly property int deckAColor: propDeckColors.a + readonly property int deckBColor: propDeckColors.b + readonly property int deckCColor: propDeckColors.c + readonly property int deckDColor: propDeckColors.d + + //////////////////////////////////// + /////// Track info properties ////// + //////////////////////////////////// + + property int deckId: 1 + readonly property bool trackEndWarning: propTrackEndWarning.value + readonly property bool shift: propShift.value + readonly property string artistString: isLoaded ? propArtist.value : "Mixxx" + readonly property string bpmString: isLoaded ? propBPM.value.toFixed(2).toString() : "0.00" + readonly property string beats: computeBeatCounterStringFromPosition(((propElapsedTime.value*1000-propGridOffset.value)*propMixerBpm.value)/60000.0) + readonly property string beatSingle: computeBeatCounterStringFromPositionSingle(((propElapsedTime.value*1000-propGridOffset.value)*propMixerBpm.value)/60000.0) + readonly property string beatsAlt: computeBeatCounterStringFromPositionAlt(((propElapsedTime.value*1000-propGridOffset.value)*propMixerBpm.value)/60000.0) + readonly property string masterDeckLetter: leaderGroup.replace('[Channel', '').substr(0, 1) + readonly property string masterBPM: isLoaded ? propMasterBPM.value : 0.00 + readonly property string masterBPMShort: isLoaded ? propMasterBPM.value.toFixed(2).toString() : 0.00 + readonly property string masterBPMFooter: isLoaded ? propMasterBPM.value.toFixed(2).toString() + " BPM" : "" + readonly property string masterBPMFooter2: isLoaded ? propMasterBPM.value.toFixed(2).toString() + "BPM" : "" + readonly property string bpmOffset: isLoaded ? (bpmString - masterBPM).toFixed(2).toString() : "0.00" + readonly property string tempoString: isLoaded ? (propTempo.value).toFixed(2).toString() : "0.00" + readonly property string tempoRange: toInt_round(propTempoRange.value*100).toString() + "%" + readonly property string tempoStringPer: tempoString+'%' + readonly property string tempoNeededVal: tempoNeeded(masterBPMShort, bpmString).toFixed(2).toString() + readonly property string tempoNeededString: isLoaded ? (tempoNeededVal == 0) ? "0.00" : (tempoNeededVal < 0) ? tempoNeededVal + "%" : "+" + tempoNeededVal + "%" : "0.00" + readonly property string songBPM: propSongBPM.value.toFixed(2).toString() + readonly property bool hightlightLoop: !shift + readonly property bool hightlightKey: shift + readonly property int isLoaded: (propTrackLength.value > 0) + readonly property bool showLogo: propTrackLength.value == 0 ? true : false + readonly property string keyString: propKeyForDisplay.value + readonly property string masterKey: propMasterKey.value + readonly property int keyIndex: propFinalKeyId.value + readonly property int masterKeyIndex: propMasterKeyId.value + readonly property bool hasKey: isLoaded && keyIndex >= 0 + readonly property bool hasTempo: isLoaded && !!propTempo.value + readonly property bool isKeyLockOn: propKeyLockOn.value + readonly property bool isSyncOn: propIsInSync.value + readonly property bool isStemDeck: (propIsStemDeck.value >= 2) ? true : false + readonly property bool loopActive: propLoopActive.value + readonly property string loopSizeString: propLoopSize.value < 1 ? `1/${1 / propLoopSize.value}` : `${propLoopSize.value}` + readonly property string loopSizeInt: propLoopSize.value + readonly property string remainingTimeString: (!isLoaded) ? "00:00" : utils.computeRemainingTimeString(propTrackLength.value, propElapsedTime.value) + readonly property string elapsedTimeString: (!isLoaded) ? "00:00" : utils.convertToTimeString(Math.floor(propElapsedTime.value)) + readonly property string titleString: isLoaded ? propTitle.value : "Load a Track to Deck " + deckLetter(deckId) + readonly property real phase: isPlaying && leaderGroup != group ? propPhase.value : 0 + readonly property bool touchKey: false // TODO map shift encoder touch event + readonly property bool touchTime: false // TODO map shift encoder touch event + readonly property bool touchLoop: false // TODO map shift encoder touch event + readonly property int deckType: propDeckType.value + readonly property string keyAdjustString: (keyAdjustVal < 0 ? "" : "+") + (keyAdjustVal).toFixed(0).toString() + readonly property real keyAdjustVal: propKeyAdjust.value*12 + readonly property variant loopSizeText: ["1/32", "1/16", "1/8", "1/4", "1/2", "1", "2", "4", "8", "16", "32"] + readonly property bool slicerEnabled: propEnabled.value + readonly property int slicerNo: propSlicerNo.value + readonly property int slicerSize: propSlicerSize.value + + readonly property bool headerEnabled: propHeaderEnabled.value + readonly property string headerText: propHeaderText.value + readonly property string headerTextLong: propHeaderTextLong.value + readonly property int sampleRate: propSampleRate.value + + readonly property bool isPlaying: propIsPlaying.value + + readonly property bool is1Playing: propIs1Playing.value + readonly property bool is2Playing: propIs2Playing.value + readonly property bool is3Playing: propIs3Playing.value + readonly property bool is4Playing: propIs4Playing.value + + Mixxx.ControlProxy { + group: viewModel.group + key: "track_samplerate" + id: propSampleRate + } + Mixxx.ControlProxy { + group: viewModel.leaderGroup + key: "track_samplerate" + id: propLeaderSampleRate + } + Mixxx.ControlProxy { + group: viewModel.group + id: propTempoRange + key: "rateRange" + } + QtObject { + id: propEnabled + property var value: 0 + } + QtObject { + id: propSlicerNo + property var value: 0 + } + QtObject { + id: propSlicerSize + property var value: 0 + } + QtObject { + id: propDeckType + property var value: 0 + } + Mixxx.ControlProxy { + group: viewModel.group + key: "play" + id: propIsPlaying + } + + Mixxx.ControlProxy { + group: "[Channel1]" + id: propIs1Leader + key: "sync_mode" + } + + Mixxx.ControlProxy { + group: "[Channel2]" + id: propIs2Leader + key: "sync_mode" + } + + Mixxx.ControlProxy { + group: "[Channel3]" + id: propIs3Leader + key: "sync_mode" + } + + Mixxx.ControlProxy { + group: "[Channel4]" + id: propIs4Leader + key: "sync_mode" + } + + readonly property string leaderGroup: propIs1Leader.value >= 2 ? `[Channel1]` : propIs2Leader.value >= 2 ? `[Channel2]` : propIs3Leader.value >= 2 ? `[Channel3]` : propIs4Leader.value >= 2 ? `[Channel4]` : viewModel.group + + Mixxx.ControlProxy { + group: "[Channel1]" + key: "play" + id: propIs1Playing + } + Mixxx.ControlProxy { + group: "[Channel2]" + key: "play" + id: propIs2Playing + } + Mixxx.ControlProxy { + group: "[Channel3]" + key: "play" + id: propIs3Playing + } + Mixxx.ControlProxy { + group: "[Channel4]" + key: "play" + id: propIs4Playing + } + + QtObject { + id: propTitle + property var value: viewModel.currentPlayer?.title || "Unknown" + } + QtObject { + id: propArtist + property var value: viewModel.currentPlayer?.artist || "Unknown" + } + Mixxx.ControlProxy { + group: viewModel.group + id: propSongBPM + key: "file_bpm" + } + + Mixxx.ControlProxy { + group: viewModel.group + id: propKey + key: "key" + } + QtObject { + id: propKeyForDisplay + property var value: [ + "No key", + "1d", + "8d", + "3d", + "10d", + "5d", + "12d", + "7d", + "2d", + "9d", + "4d", + "11d", + "6d", + "10m", + "5m", + "12m", + "7m", + "2m", + "9m", + "4m", + "11m", + "6m", + "1m", + "8m", + "3m" + ][propKey.value] + } + QtObject { + id: propMasterKey + property var value: 0 + } + QtObject { + id: propMixerBpm + property var value: 0 + } + QtObject { + id: propMixerBpmMaster + property var value: 160 + } + QtObject { + id: propFinalKeyId + property var value: propKey.value + } + Mixxx.ControlProxy { + group: viewModel.leaderGroup + id: propMasterKeyId + key: "key" + } + QtObject { + id: propKeyAdjust + property var value: 0 + } + QtObject { + id: propGridOffset + property var value: 0 + } + QtObject { + id: propGridOffsetMaster + property var value: 10000 + } + + Mixxx.ControlProxy { + group: viewModel.group + id: propKeyLockOn + key: "keylock" + } + Mixxx.ControlProxy { + group: viewModel.group + key: "bpm" + id: propBPM + } + Mixxx.ControlProxy { + group: '[InternalClock]' + key: "bpm" + id: propMasterBPM + } + Mixxx.ControlProxy { + group: viewModel.group + key: "visual_bpm" + id: propTempo + } + QtObject { + id: propTempoAbsolute + property var value: 0 + } + + Mixxx.ControlProxy { + group: viewModel.group + key: "beat_closest" + id: propBeatClosest + } + Mixxx.ControlProxy { + group: viewModel.group + key: "track_samples" + id: propSample + } + QtObject { + id: propBeatSample + property var value: (propSampleRate.value * 60) / propBPM.value + } + QtObject { + id: propBeatSampleOffset + property var value: propBeatClosest.value % propBeatSample.value + } + QtObject { + id: propBeat + property var value: (propTrackPosition.value * propSample.value / 2) / propBeatSample.value + } + Mixxx.ControlProxy { + group: viewModel.leaderGroup + key: "beat_closest" + id: propLeaderBeatClosest + } + Mixxx.ControlProxy { + group: viewModel.leaderGroup + key: "track_samples" + id: propLeaderSample + } + QtObject { + id: propLeaderBeatSample + property var value: (propLeaderSampleRate.value * 60) / propMasterBPM.value + } + QtObject { + id: propLeaderBeatSampleOffset + property var value: propLeaderBeatClosest.value % propLeaderBeatSample.value + } + QtObject { + id: propLeaderBeat + property var value: (propLeaderTrackPosition.value * propLeaderSample.value / 2) / propLeaderBeatSample.value + } + QtObject { + id: propPhase + property var value: (propLeaderBeat.value-propBeat.value - 0.5) % 1 - 0.5 + } + Mixxx.ControlProxy { + group: viewModel.group + key: "beatloop_size" + id: propLoopSize + } + Mixxx.ControlProxy { + id: propLoopActive + group: viewModel.group + key: "loop_enabled" + } + QtObject { + id: proploopActive + property var value: 0 + } + Mixxx.ControlProxy { + id: propTrackLength + group: viewModel.group + key: "duration" + } + Mixxx.ControlProxy { + id: propTrackPosition + group: viewModel.group + key: "playposition" + } + Mixxx.ControlProxy { + id: propLeaderTrackPosition + group: viewModel.leaderGroup + key: "playposition" + } + QtObject { + id: propElapsedTime + property var value: parseInt(propTrackPosition.value * propTrackLength.value) + } + Mixxx.ControlProxy { + group: viewModel.group + key: `end_of_track` + id: propTrackEndWarning + } + + QtObject { + id: propHeaderEnabled + property var value: false + } + QtObject { + id: propHeaderText + property var value: "HeaderText" + } + QtObject { + id: propHeaderTextLong + property var value: "HeaderTextLong" + } + + Mixxx.ControlProxy { + group: viewModel.group + key: "stem_count" + id: propIsStemDeck + } + + Timer { + id: loopAdjust + property bool show: false + + triggeredOnStart: true + interval: settings.loopOverlayTimer + repeat: false + running: false + + onTriggered: { + show = !show + } + } + + Mixxx.ControlProxy { + group: viewModel.group + key: "beats_translate_curpos" + id: propBeatsTranslateCurpos + onValueChanged: { + loopAdjust.running = true + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: "beats_adjust_faster" + id: propBeatsAdjustFaster + onValueChanged: { + loopAdjust.running = true + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: "beats_adjust_slower" + id: propBeatsAdjustSlower + onValueChanged: { + loopAdjust.running = true + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: "beats_translate_later" + id: propBeatsTranslateLater + onValueChanged: { + loopAdjust.running = true + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: "beats_translate_earlier" + id: propBeatsTranslateEarlier + onValueChanged: { + loopAdjust.running = true + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: "rateRange" + id: propRateRange + onValueChanged: { + loopAdjust.running = true + } + } + + readonly property bool adjustEnabled: settings.showBPMGridAdjust ? loopAdjust.show : false + + QtObject { + id: propPadsMode + property var value: 0 + } + QtObject { + id: propSelectedQuickFX + property var value: null + } + readonly property var quickFXSelected: propSelectedQuickFX.value + property bool padsModeJump: propPadsMode.value == 1 + property bool padsModeLoop: propPadsMode.value == 5 + property bool padsModeRoll: propPadsMode.value == 3 + property bool padsModeTone: propPadsMode.value == 11 + property bool padsModeBank1: propPadsMode.value == 12 + property bool padsModeBank2: propPadsMode.value == 13 + + Mixxx.ControlProxy { + id: propIsInSync + group: root.group + key: "sync_enabled" + } + + Mixxx.ControlProxy { + id: propBrowser + group: "[Skin]" + key: "show_maximized_library" + } + readonly property bool isInBrowserMode: propBrowser.value + + QtObject { + id: propShift + property bool value: false + } + + Mixxx.ControlProxy { + id: propZoom + + group: root.group + key: "waveform_zoom" + onValueChanged: { + loopAdjust.running = true + } + } + + readonly property int zoomLevel: propZoom.value + + //fx and overlays + property var fxModel: Mixxx.EffectsManager.visibleEffectsModel + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: "mix_mode" + id: propFx1Type + } + readonly property int fx1Type: propFx1Type.value + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: "mix_mode" + id: propFx2Type + } + readonly property int fx2Type: propFx2Type.value + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: "mix_mode" + id: propFx3Type + } + readonly property int fx3Type: propFx3Type.value + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: "mix_mode" + id: propFx4Type + } + readonly property int fx4Type: propFx4Type.value + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: "mix" + id: propFx1DryWet + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: "mix" + id: propFx2DryWet + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect1]" + key: `meta` + id: propFx1Knob1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect2]" + key: `meta` + id: propFx1Knob2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect3]" + key: `meta` + id: propFx1Knob3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2_Effect1]" + key: `meta` + id: propFx2Knob1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2_Effect2]" + key: `meta` + id: propFx2Knob2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2_Effect3]" + key: `meta` + id: propFx2Knob3 + } + + Mixxx.ControlProxy { + id: propFx1Knob1Name + group: "[EffectRack1_EffectUnit1_Effect1]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect2]" + key: "loaded_effect" + id: propFx1Knob2Name + } + Mixxx.ControlProxy { + id: propFx1Knob3Name + group: "[EffectRack1_EffectUnit1_Effect3]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx2Knob1Name + group: "[EffectRack1_EffectUnit2_Effect1]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx2Knob2Name + group: "[EffectRack1_EffectUnit2_Effect2]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx2Knob3Name + group: "[EffectRack1_EffectUnit2_Effect3]" + key: "loaded_effect" + } + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: "enabled" + id: propFx1Enabled + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: `enabled` + id: propFx2Enabled + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect1]" + key: `enabled` + id: propFx1Button1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect2]" + key: `enabled` + id: propFx1Button2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1_Effect3]" + key: `enabled` + id: propFx1Button3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2_Effect1]" + key: `enabled` + id: propFx2Button1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2_Effect2]" + key: `enabled` + id: propFx2Button2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2_Effect3]" + key: `enabled` + id: propFx2Button3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: `group_[Channel1]_enable` + id: propFx1Ch1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: `group_[Channel2]_enable` + id: propFx1Ch2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: `group_[Channel3]_enable` + id: propFx1Ch3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: `group_[Channel4]_enable` + id: propFx1Ch4 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: `group_[Channel1]_enable` + id: propFx2Ch1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: `group_[Channel2]_enable` + id: propFx2Ch2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: `group_[Channel3]_enable` + id: propFx2Ch3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: `group_[Channel4]_enable` + id: propFx2Ch4 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: `group_[Channel1]_enable` + id: propFx3Ch1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: `group_[Channel2]_enable` + id: propFx3Ch2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: `group_[Channel3]_enable` + id: propFx3Ch3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: `group_[Channel4]_enable` + id: propFx3Ch4 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: `group_[Channel1]_enable` + id: propFx4Ch1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: `group_[Channel2]_enable` + id: propFx4Ch2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: `group_[Channel3]_enable` + id: propFx4Ch3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: `group_[Channel4]_enable` + id: propFx4Ch4 + } + + readonly property real fx1DryWet: propFx1DryWet.value + readonly property real fx2DryWet: propFx2DryWet.value + readonly property real fx1Knob1: propFx1Knob1.value + readonly property real fx1Knob2: propFx1Knob2.value + readonly property real fx1Knob3: propFx1Knob3.value + readonly property real fx2Knob1: propFx2Knob1.value + readonly property real fx2Knob2: propFx2Knob2.value + readonly property real fx2Knob3: propFx2Knob3.value + + readonly property string fx1Knob1Name: viewModel.fxModel.get(propFx1Knob1Name.value).display + readonly property string fx1Knob2Name: viewModel.fxModel.get(propFx1Knob2Name.value).display + readonly property string fx1Knob3Name: viewModel.fxModel.get(propFx1Knob3Name.value).display + readonly property string fx2Knob1Name: viewModel.fxModel.get(propFx2Knob1Name.value).display + readonly property string fx2Knob2Name: viewModel.fxModel.get(propFx2Knob2Name.value).display + readonly property string fx2Knob3Name: viewModel.fxModel.get(propFx2Knob3Name.value).display + + readonly property bool fx1Enabled: propFx1Enabled.value + readonly property bool fx2Enabled: propFx2Enabled.value + readonly property bool fx1Button1: propFx1Button1.value + readonly property bool fx1Button2: propFx1Button2.value + readonly property bool fx1Button3: propFx1Button3.value + readonly property bool fx2Button1: propFx2Button1.value + readonly property bool fx2Button2: propFx2Button2.value + readonly property bool fx2Button3: propFx2Button3.value + + readonly property bool fx1Ch1: propFx1Ch1.value + readonly property bool fx1Ch2: propFx1Ch2.value + readonly property bool fx1Ch3: propFx1Ch3.value + readonly property bool fx1Ch4: propFx1Ch4.value + readonly property bool fx2Ch1: propFx2Ch1.value + readonly property bool fx2Ch2: propFx2Ch2.value + readonly property bool fx2Ch3: propFx2Ch3.value + readonly property bool fx2Ch4: propFx2Ch4.value + + onFx1DryWetChanged: {fx1Timer.running = true} + onFx2DryWetChanged: {fx2Timer.running = true} + onFx1Knob1Changed: {fx1Timer.running = true} + onFx1Knob2Changed: {fx1Timer.running = true} + onFx1Knob3Changed: {fx1Timer.running = true} + onFx2Knob1Changed: {fx2Timer.running = true} + onFx2Knob2Changed: {fx2Timer.running = true} + onFx2Knob3Changed: {fx2Timer.running = true} + onFx1EnabledChanged: {fx1Timer.running = true} + onFx2EnabledChanged: {fx2Timer.running = true} + onFx1Button1Changed: {fx1Timer.running = true} + onFx1Button2Changed: {fx1Timer.running = true} + onFx1Button3Changed: {fx1Timer.running = true} + onFx2Button1Changed: {fx2Timer.running = true} + onFx2Button2Changed: {fx2Timer.running = true} + onFx2Button3Changed: {fx2Timer.running = true} + onFx1Ch1Changed: {fx1Timer.running = true} + onFx1Ch2Changed: {fx1Timer.running = true} + onFx1Ch3Changed: {fx1Timer.running = true} + onFx1Ch4Changed: {fx1Timer.running = true} + onFx2Ch1Changed: {fx2Timer.running = true} + onFx2Ch2Changed: {fx2Timer.running = true} + onFx2Ch3Changed: {fx2Timer.running = true} + onFx2Ch4Changed: {fx2Timer.running = true} + onFx1Knob1NameChanged: {fx1Timer.running = true} + onFx1Knob2NameChanged: {fx1Timer.running = true} + onFx1Knob3NameChanged: {fx1Timer.running = true} + onFx2Knob1NameChanged: {fx2Timer.running = true} + onFx2Knob2NameChanged: {fx2Timer.running = true} + onFx2Knob3NameChanged: {fx2Timer.running = true} + + onLoopSizeStringChanged: {loopTimer.running = true} + onLoopActiveChanged: {loopTimer.running = true} + + Timer { + id: loopTimer + property bool showLoop: false + + triggeredOnStart: true + interval: settings.loopOverlayTimer + repeat: false + running: false + + onTriggered: { + showLoop = !showLoop + } + } + + property bool showLoopInfo: loopTimer.showLoop + + onBpmStringChanged: {bpmTimer.running = true} + + Timer { + id: bpmTimer + property bool showBPM: false + + triggeredOnStart: true + interval: settings.bpmOverlayTimer + repeat: false + running: false + + onTriggered: { + showBPM = !showBPM + } + } + + property bool showBPMInfo: bpmTimer.showBPM && bpmTimer.running + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: "mix" + id: propFx3DryWet + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: "mix" + id: propFx4DryWet + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3_Effect1]" + key: `meta` + id: propFx3Knob1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3_Effect2]" + key: `meta` + id: propFx3Knob2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3_Effect3]" + key: `meta` + id: propFx3Knob3 + } + Mixxx.ControlProxy { + id: propFx4Knob1 + group: "[EffectRack1_EffectUnit4_Effect1]" + key: `meta` + } + Mixxx.ControlProxy { + id: propFx4Knob2 + group: "[EffectRack1_EffectUnit4_Effect2]" + key: `meta` + } + Mixxx.ControlProxy { + id: propFx4Knob3 + group: "[EffectRack1_EffectUnit4_Effect3]" + key: `meta` + } + + Mixxx.ControlProxy { + id: propFx3Knob1Name + group: "[EffectRack1_EffectUnit3_Effect1]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx3Knob2Name + group: "[EffectRack1_EffectUnit3_Effect2]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx3Knob3Name + group: "[EffectRack1_EffectUnit3_Effect3]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx4Knob1Name + group: "[EffectRack1_EffectUnit4_Effect1]" + key: `loaded_effect` + } + Mixxx.ControlProxy { + id: propFx4Knob2Name + group: "[EffectRack1_EffectUnit4_Effect2]" + key: "loaded_effect" + } + Mixxx.ControlProxy { + id: propFx4Knob3Name + group: "[EffectRack1_EffectUnit4_Effect3]" + key: `loaded_effect` + } + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: "enabled" + id: propFx3Enabled + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: "enabled" + id: propFx4Enabled + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3_Effect1]" + key: `enabled` + id: propFx3Button1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3_Effect2]" + key: `enabled` + id: propFx3Button2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3_Effect3]" + key: `enabled` + id: propFx3Button3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4_Effect1]" + key: `enabled` + id: propFx4Button1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4_Effect2]" + key: `enabled` + id: propFx4Button2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4_Effect3]" + key: `enabled` + id: propFx4Button3 + } + + readonly property real fx3DryWet: propFx3DryWet.value + readonly property real fx4DryWet: propFx3DryWet.value + readonly property real fx3Knob1: propFx3Knob1.value + readonly property real fx3Knob2: propFx3Knob2.value + readonly property real fx3Knob3: propFx3Knob3.value + readonly property real fx4Knob1: propFx4Knob1.value + readonly property real fx4Knob2: propFx4Knob2.value + readonly property real fx4Knob3: propFx4Knob3.value + + readonly property string fx3Knob1Name: viewModel.fxModel.get(propFx3Knob1Name.value).display + readonly property string fx3Knob2Name: viewModel.fxModel.get(propFx3Knob2Name.value).display + readonly property string fx3Knob3Name: viewModel.fxModel.get(propFx3Knob3Name.value).display + readonly property string fx4Knob1Name: viewModel.fxModel.get(propFx4Knob1Name.value).display + readonly property string fx4Knob2Name: viewModel.fxModel.get(propFx4Knob2Name.value).display + readonly property string fx4Knob3Name: viewModel.fxModel.get(propFx4Knob3Name.value).display + + readonly property bool fx3Enabled: propFx3Enabled.value + readonly property bool fx4Enabled: propFx4Enabled.value + readonly property bool fx3Button1: propFx3Button1.value + readonly property bool fx3Button2: propFx3Button2.value + readonly property bool fx3Button3: propFx3Button3.value + readonly property bool fx4Button1: propFx4Button1.value + readonly property bool fx4Button2: propFx4Button2.value + readonly property bool fx4Button3: propFx4Button3.value + + readonly property bool fx3Ch1: propFx3Ch1.value + readonly property bool fx3Ch2: propFx3Ch2.value + readonly property bool fx3Ch3: propFx3Ch3.value + readonly property bool fx3Ch4: propFx3Ch4.value + readonly property bool fx4Ch1: propFx4Ch1.value + readonly property bool fx4Ch2: propFx4Ch2.value + readonly property bool fx4Ch3: propFx4Ch3.value + readonly property bool fx4Ch4: propFx4Ch4.value + + onFx3DryWetChanged: {fx3Timer.running = true} + onFx4DryWetChanged: {fx4Timer.running = true} + onFx3Knob1Changed: {fx3Timer.running = true} + onFx3Knob2Changed: {fx3Timer.running = true} + onFx3Knob3Changed: {fx3Timer.running = true} + onFx4Knob1Changed: {fx4Timer.running = true} + onFx4Knob2Changed: {fx4Timer.running = true} + onFx4Knob3Changed: {fx4Timer.running = true} + onFx3EnabledChanged: {fx3Timer.running = true} + onFx4EnabledChanged: {fx4Timer.running = true} + onFx3Button1Changed: {fx3Timer.running = true} + onFx3Button2Changed: {fx3Timer.running = true} + onFx3Button3Changed: {fx3Timer.running = true} + onFx4Button1Changed: {fx4Timer.running = true} + onFx4Button2Changed: {fx4Timer.running = true} + onFx4Button3Changed: {fx4Timer.running = true} + onFx3Ch1Changed: {fx3Timer.running = true} + onFx3Ch2Changed: {fx3Timer.running = true} + onFx3Ch3Changed: {fx3Timer.running = true} + onFx3Ch4Changed: {fx3Timer.running = true} + onFx4Ch1Changed: {fx4Timer.running = true} + onFx4Ch2Changed: {fx4Timer.running = true} + onFx4Ch3Changed: {fx4Timer.running = true} + onFx4Ch4Changed: {fx4Timer.running = true} + onFx3Knob1NameChanged: {fx3Timer.running = true} + onFx3Knob2NameChanged: {fx3Timer.running = true} + onFx3Knob3NameChanged: {fx3Timer.running = true} + onFx4Knob1NameChanged: {fx4Timer.running = true} + onFx4Knob2NameChanged: {fx4Timer.running = true} + onFx4Knob3NameChanged: {fx4Timer.running = true} + + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit1]" + key: `group_${viewModel.group}_enable` + id: propfx1 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit2]" + key: `group_${viewModel.group}_enable` + id: propfx2 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit3]" + key: `group_${viewModel.group}_enable` + id: propfx3 + } + Mixxx.ControlProxy { + group: "[EffectRack1_EffectUnit4]" + key: `group_${viewModel.group}_enable` + id: propfx4 + } + + readonly property bool fx1On: propfx1.value + readonly property bool fx2On: propfx2.value + readonly property bool fx3On: propfx3.value + readonly property bool fx4On: propfx4.value + + Timer { + id: fx1Timer + property bool blink: false + + triggeredOnStart: true + interval: settings.fxOverlayTimer + repeat: false + running: fx1On + + onTriggered: { + blink = !blink + } + } + + Timer { + id: fx2Timer + property bool blink: false + + triggeredOnStart: true + interval: settings.fxOverlayTimer + repeat: false + running: fx2On + + onTriggered: { + blink = !blink + } + } + + Timer { + id: fx3Timer + property bool blink: false + + triggeredOnStart: true + interval: settings.fxOverlayTimer + repeat: false + running: fx3On + + onTriggered: { + blink = !blink + } + } + + Timer { + id: fx4Timer + property bool blink: false + + triggeredOnStart: true + interval: settings.fxOverlayTimer + repeat: false + running: fx4On + + onTriggered: { + blink = !blink + } + } + + readonly property bool showFx1: fx1On && fx1Timer.blink + readonly property bool showFx2: fx2On && fx2Timer.blink + readonly property bool showFx3: fx3On && fx3Timer.blink + readonly property bool showFx4: fx4On && fx4Timer.blink + + Mixxx.ControlProxy { + id: propView + group: "[Skin]" + key: "show_maximized_library" + } + + readonly property bool viewButton: propView.value && false + + property int hotcueId: 0 + readonly property bool hotcueDisplay: hotcuePressed || cueTimer.running + property string hotcueName: "" + property int hotcueType: 0 + + property bool hotcuePressed: false + onHotcuePressedChanged: {hotcuePressed == false ? cueTimer.restart() : hotcuePressed = hotcuePressed } + + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_1_activate` + id: propHotcue1Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(0); + viewModel.hotcueId = 1; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_2_activate` + id: propHotcue2Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(1); + viewModel.hotcueId = 2; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_3_activate` + id: propHotcue3Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(2); + viewModel.hotcueId = 3; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_4_activate` + id: propHotcue4Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(3); + viewModel.hotcueId = 4; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_5_activate` + id: propHotcue5Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(4); + viewModel.hotcueId = 5; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_6_activate` + id: propHotcue6Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(5); + viewModel.hotcueId = 6; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_7_activate` + id: propHotcue7Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(6); + viewModel.hotcueId = 7; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + Mixxx.ControlProxy { + group: viewModel.group + key: `hotcue_8_activate` + id: propHotcue8Activated + onValueChanged: { + let model = viewModel.currentPlayer?.hotcuesModel?.get(7); + viewModel.hotcueId = 8; + viewModel.hotcuePressed = value; + viewModel.hotcueName = model?.label || "Unnamed cue"; + viewModel.hotcueType = model?.isLoop ? 5 : 0; + } + } + + Timer { + id: cueTimer + property bool blink: false + + triggeredOnStart: true + interval: 1000 + repeat: false + running: false + } + + /////////////////////////////////////////////////// + /////// Stem Deck properties ////////////////////// + /////////////////////////////////////////////////// + + Mixxx.ControlProxy { + group: viewModel.group + key: `stem_count` + id: propStemCount + } + + readonly property bool isStemsActive: propStemCount.value > 0 + readonly property int stemCount: propStemCount.value + + QtObject { + id: propStemSelected + property var idx: 0 + property bool active: false + } + readonly property bool stemSelected: propStemSelected.active + readonly property var stemSelectedIdx: propStemSelected.idx + + readonly property string stemSelectedName: viewModel.currentPlayer?.stemsModel.get(viewModel.stemSelectedIdx).label || "Unknown" + readonly property real stemSelectedVolume: isStemsActive ? [propStem1Volume,propStem2Volume,propStem3Volume,propStem4Volume][viewModel.stemSelectedIdx].value : 0.0 + readonly property bool stemSelectedMuted: isStemsActive ? [propStem1Muted,propStem2Muted,propStem3Muted,propStem4Muted][viewModel.stemSelectedIdx].value : false + readonly property int stemSelectedQuickFXId: isStemsActive ? [propStem1FX,propStem2FX,propStem3FX,propStem4FX][viewModel.stemSelectedIdx].value : 0 + readonly property real stemSelectedQuickFXValue: isStemsActive ? [propStem1FXValue,propStem2FXValue,propStem3FXValue,propStem4FXValue][viewModel.stemSelectedIdx].value : 0.0 + readonly property bool stemSelectedQuickFXOn: isStemsActive ? [propStem1FXOn,propStem2FXOn,propStem3FXOn,propStem4FXOn][viewModel.stemSelectedIdx].value : false + readonly property string stemSelectedQuickFXName: Mixxx.EffectsManager.quickChainPresetModel.get(viewModel.stemSelectedQuickFXId).display || "---" + readonly property color stemSelectedBrightColor: viewModel.currentPlayer?.stemsModel.get(viewModel.stemSelectedIdx).color ?? "grey" + readonly property color stemSelectedMidColor: isStemsActive ? stemSelectedBrightColor : "black" + + Mixxx.ControlProxy { + id: propStem1Volume + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem1]` + key: `volume` + } + Mixxx.ControlProxy { + id: propStem1Muted + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem1]` + key: `mute` + } + Mixxx.ControlProxy { + id: propStem1FX + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem1]]` + key: `loaded_chain_preset` + } + Mixxx.ControlProxy { + id: propStem1FXOn + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem1]]` + key: `enabled` + } + Mixxx.ControlProxy { + id: propStem1FXValue + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem1]]` + key: `super1` + } + Mixxx.ControlProxy { + id: propStem2Volume + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem2]` + key: `volume` + } + Mixxx.ControlProxy { + id: propStem2Muted + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem2]` + key: `mute` + } + Mixxx.ControlProxy { + id: propStem2FX + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem2]]` + key: `loaded_chain_preset` + } + Mixxx.ControlProxy { + id: propStem2FXOn + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem2]]` + key: `enabled` + } + Mixxx.ControlProxy { + id: propStem2FXValue + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem2]]` + key: `super1` + } + Mixxx.ControlProxy { + id: propStem3Volume + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem3]` + key: `volume` + } + Mixxx.ControlProxy { + id: propStem3Muted + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem3]` + key: `mute` + } + Mixxx.ControlProxy { + id: propStem3FX + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem3]]` + key: `loaded_chain_preset` + } + Mixxx.ControlProxy { + id: propStem3FXOn + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem3]]` + key: `enabled` + } + Mixxx.ControlProxy { + id: propStem3FXValue + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem3]]` + key: `super1` + } + Mixxx.ControlProxy { + id: propStem4Volume + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem4]` + key: `volume` + } + Mixxx.ControlProxy { + id: propStem4Muted + group: `${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem4]` + key: `mute` + } + Mixxx.ControlProxy { + id: propStem4FX + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem4]]` + key: `loaded_chain_preset` + } + Mixxx.ControlProxy { + id: propStem4FXOn + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem4]]` + key: `enabled` + } + Mixxx.ControlProxy { + id: propStem4FXValue + group: `[QuickEffectRack1_${viewModel.group.substr(0, viewModel.group.length - 1)}_Stem4]]` + key: `super1` + } + + /////////////////////////////////////////////////// + /////// Stripe properties ///////////////////////// + /////////////////////////////////////////////////// + + readonly property var hotcues: viewModel.currentPlayer?.hotcuesModel + + /// Loop size + readonly property var loopSizePad1: "1/4" + readonly property var loopSizePad2: "1/2" + readonly property var loopSizePad3: "1" + readonly property var loopSizePad4: "2" + readonly property var loopSizePad5: "4" + readonly property var loopSizePad6: "8" + readonly property var loopSizePad7: "16" + readonly property var loopSizePad8: "32" + + readonly property var jumpSizePad1: propJumpSizePad.pad1 + readonly property var jumpSizePad2: propJumpSizePad.pad2 + readonly property var jumpSizePad3: propJumpSizePad.pad3 + readonly property var jumpSizePad4: propJumpSizePad.pad4 + readonly property var jumpSizePad5: propJumpSizePad.pad5 + readonly property var jumpSizePad6: propJumpSizePad.pad6 + readonly property var jumpSizePad7: propJumpSizePad.pad7 + readonly property var jumpSizePad8: propJumpSizePad.pad8 + + readonly property var rollSizePad1: propRollSizePad.pad1 + readonly property var rollSizePad2: propRollSizePad.pad2 + readonly property var rollSizePad3: propRollSizePad.pad3 + readonly property var rollSizePad4: propRollSizePad.pad4 + readonly property var rollSizePad5: propRollSizePad.pad5 + readonly property var rollSizePad6: propRollSizePad.pad6 + readonly property var rollSizePad7: propRollSizePad.pad7 + readonly property var rollSizePad8: propRollSizePad.pad8 + } diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/HotCue.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/HotCue.qml new file mode 100755 index 000000000000..005df81c6fe9 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/HotCue.qml @@ -0,0 +1,42 @@ +import QtQuick 2.5 + +Item { + id: hotcue + readonly property real position: propPosition.value + readonly property real length: propLength.value + readonly property string type: propType.value + readonly property string name: propName.value + readonly property bool exists: propExists.value + property int index: 0 + + // AppProperty { id: propPosition; path: "app.traktor.decks." + deckId + ".track.cue.hotcues." + (index + 1) + ".start_pos" } + QtObject { + id: propPosition + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propLength; path: "app.traktor.decks." + deckId + ".track.cue.hotcues." + (index + 1) + ".length" } + QtObject { + id: propLength + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propType; path: "app.traktor.decks." + deckId + ".track.cue.hotcues." + (index + 1) + ".type" } + QtObject { + id: propType + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propName; path: "app.traktor.decks." + deckId + ".track.cue.hotcues." + (index + 1) + ".name" } + QtObject { + id: propName + property string description: "Description" + property var value: 0 + } + // AppProperty { id: propExists; path: "app.traktor.decks." + deckId + ".track.cue.hotcues." + (index + 1) + ".exists" } + QtObject { + id: propExists + property string description: "Description" + property var value: 0 + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/HotCues.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/HotCues.qml new file mode 100755 index 000000000000..3961fc236235 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/ViewModels/HotCues.qml @@ -0,0 +1,65 @@ +import QtQuick 2.5 + +Item { + id: hotcuesModel + property int deckId: 0 + + readonly property alias activeHotcue: activeHotcueModel + readonly property var array: + [ + hotcueModel1, + hotcueModel2, + hotcueModel3, + hotcueModel4, + hotcueModel5, + hotcueModel6, + hotcueModel7, + hotcueModel8 + ] + + Item { + id: activeHotcueModel + readonly property real position: activePos.value + readonly property real length: activeLength.value + readonly property string type: activeType.value + readonly property string name: activeName.value + + // AppProperty { id: activePos; path: "app.traktor.decks." + deckId + ".track.cue.active.start_pos" } + QtObject { + id: activePos + property string description: "Description" + property var value: 0 + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: activeLength; path: "app.traktor.decks." + deckId + ".track.cue.active.length" } + QtObject { + id: activeLength + property string description: "Description" + property var value: 0 + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: activeType; path: "app.traktor.decks." + deckId + ".track.cue.active.type" } + QtObject { + id: activeType + property string description: "Description" + property var value: 0 + property var valueRange: ({isDiscrete: true, steps: 1}) + } + // AppProperty { id: activeName; path: "app.traktor.decks." + deckId + ".track.cue.active.name" } + QtObject { + id: activeName + property string description: "Description" + property var value: 0 + property var valueRange: ({isDiscrete: true, steps: 1}) + } + } + + HotCue { id: hotcueModel1; index: 0 } + HotCue { id: hotcueModel2; index: 1 } + HotCue { id: hotcueModel3; index: 2 } + HotCue { id: hotcueModel4; index: 3 } + HotCue { id: hotcueModel5; index: 4 } + HotCue { id: hotcueModel6; index: 5 } + HotCue { id: hotcueModel7; index: 6 } + HotCue { id: hotcueModel8; index: 7 } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/BrowserView.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/BrowserView.qml new file mode 100755 index 000000000000..6436f4153330 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/BrowserView.qml @@ -0,0 +1,322 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Browser' as BrowserView +import '../Widgets' as Widgets + +//---------------------------------------------------------------------------------------------------------------------- +// BROWSER VIEW +// +// The Browser View is connected to traktors QBrowser from which it receives its data model. The navigation through the +// data is done by calling funcrtions invoked from QBrowser. +//---------------------------------------------------------------------------------------------------------------------- + +Item { + id: qmlBrowser + required property var deckInfo + property string propertiesPath: "" + property bool isActive: false + property bool enterNode: false + property bool exitNode: false + property int increment: 0 + property color focusColor: colors.colorDeckBlueBright + property int speed: 150 + property real sortingKnobValue: 0 + property int pageSize: 10 + property int fastScrollCenter: 3 + property bool leftScreen: deckInfo.isLeftScreen(deckInfo.deckId) + + readonly property int maxItemsOnScreen: 8 + + // This is used by the footer to change/display the sorting! + property alias sortingId: browser.sorting + property alias sortingDirection: browser.sortingDirection + property alias isContentList: browser.isContentList + + anchors.fill: parent + + enum WidgetKind { + None, + Searchbar, + Sidebar, + LibraryView + } + + Mixxx.ControlProxy { + id: focusWidget + + group: "[Library]" + key: "focused_widget" + } + + Mixxx.ControlProxy { + group: "[Playlist]" + key: "SelectTrackKnob" + onValueChanged: (value) => { + console.log("SelectTrackKnob", value) + if (value != 0) { + focusWidget.value = BrowserView.WidgetKind.LibraryView; + moveSelectionVertical(value); + } + } + } + + Mixxx.ControlProxy { + group: "[Playlist]" + key: "SelectPrevTrack" + onValueChanged: (value) => { + console.log("SelectPrevTrack", value) + if (value != 0) { + focusWidget.value = BrowserView.WidgetKind.LibraryView; + moveSelectionVertical(-1); + } + } + } + + Mixxx.ControlProxy { + group: "[Playlist]" + key: "SelectNextTrack" + onValueChanged: (value) => { + console.log("SelectNextTrack", value) + if (value != 0) { + focusWidget.value = BrowserView.WidgetKind.LibraryView; + moveSelectionVertical(1); + } + } + } + + Mixxx.ControlProxy { + group: "[Library]" + key: "MoveVertical" + onValueChanged: (value) => { + console.log("MoveVertical", value, focusWidget.value == BrowserView.WidgetKind.LibraryView) + // if (value != 0 && focusWidget.value == BrowserView.WidgetKind.LibraryView) + moveSelectionVertical(value); + } + } + + Mixxx.ControlProxy { + group: "[Library]" + key: "MoveUp" + onValueChanged: (value) => { + console.log("MoveUp", value) + if (value != 0 && focusWidget.value == BrowserView.WidgetKind.LibraryView) + moveSelectionVertical(-1); + } + } + + Mixxx.ControlProxy { + group: "[Library]" + key: "MoveDown" + onValueChanged: (value) => { + console.log("MoveDown", value) + if (value != 0 && focusWidget.value == BrowserView.WidgetKind.LibraryView) + moveSelectionVertical(1); + } + } + + function moveSelectionVertical(value) { + if (value == 0) + return ; + + const rowCount = browser.dataSet.rowCount(); + if (rowCount == 0) + return ; + + browser.currentIndex = Mixxx.MathUtils.positiveModulo(browser.currentIndex + value, rowCount); + } + + //-------------------------------------------------------------------------------------------------------------------- + + onIncrementChanged: { + if (qmlBrowser.increment != 0) { + var newValue = clamp(browser.currentIndex + qmlBrowser.increment, 0, contentList.count - 1); + + // center selection if user is _fast scrolling_ but we're at the _beginning_ or _end_ of the list + if (qmlBrowser.increment >= pageSize) { + var centerTop = fastScrollCenter; + + if (browser.currentIndex < centerTop) { + newValue = centerTop; + } + } + if (qmlBrowser.increment <= (-pageSize)) { + var centerBottom = contentList.count - 1 - fastScrollCenter; + + if (browser.currentIndex > centerBottom) { + newValue = centerBottom; + } + } + + browser.changeCurrentIndex(newValue); + qmlBrowser.increment = 0; + } + } + + onExitNodeChanged: { + if (qmlBrowser.exitNode) { + browser.exitNode() + } + + qmlBrowser.exitNode = false; + } + + //-------------------------------------------------------------------------------------------------------------------- + + onEnterNodeChanged: { + if (qmlBrowser.enterNode) { + var movedDown = browser.enterNode(screen.focusDeckId, contentList.currentIndex); + if (movedDown) { + browser.relocateCurrentIndex() + } + } + + qmlBrowser.enterNode = false; + } + + function clamp(val, min, max) { + return Math.max(min, Math.min(val, max)); + } + + // Traktor.Browser + // { + // id: browser; + // isActive: qmlBrowser.isActive + // } + Item { + id: browser; + property bool changeCurrentIndex: false + property int currentIndex: 0 + property bool currentPath: false + property var dataSet: Mixxx.Library.model + property bool enterNode: false + property bool exitNode: false + property bool iconId: false + property bool isContentList: false + property bool relocateCurrentIndex: false + property bool sorting: false + property bool sortingDirection: false + } + + Rectangle { + id: background + anchors.fill: parent + color: "black" + } + + //-------------------------------------------------------------------------------------------------------------------- + // LIST VIEW -- NEEDS A MODEL CONTAINING THE LIST OF ITEMS TO SHOW AND A DELEGATE TO DEFINE HOW ONE ITEM LOOKS LIKE + //------------------------------------------------------------------------------------------------------------------- + + // zebra filling up the rest of the list if smaller than maxItemsOnScreen (= 8 entries) + Grid { + anchors.top: contentList.top + anchors.topMargin: contentList.topMargin + contentList.contentHeight + 1 // +1 = for spacing + anchors.right: parent.right + anchors.left: parent.left + anchors.leftMargin: 3 + columns: 1 + spacing: 1 + + Repeater { + model: (contentList.count < qmlBrowser.maxItemsOnScreen) ? (qmlBrowser.maxItemsOnScreen - contentList.count) : 0 + Rectangle { + color: ( (contentList.count + index)%2 == 0) ? colors.colorGrey32 : "Black" + width: qmlBrowser.width; + height: settings.browserFontSize*2 } + } + } + + //-------------------------------------------------------------------------------------------------------------------- + + ListView { + id: contentList + anchors.fill: parent + verticalLayoutDirection: ListView.TopToBottom + // the top/bottom margins are applied only at the beginning/end of the list in order to show half entries while scrolling + // and keep the list delegates in the same position always. + + // the commented out margins caused browser anchor problems leading to a disappearing browser! check later !? + anchors.topMargin: 17 // ( (contentList.count < qmlBrowser.maxItemsOnScreen ) || (currentIndex < 4 )) ? 17 : 0 + anchors.bottomMargin: 18 // ( (contentList.count >= qmlBrowser.maxItemsOnScreen) && (currentIndex >= contentList.count - 4)) ? 18 : 0 + clip: false + spacing: 1 + preferredHighlightBegin: 119 - 17 // -17 because of the reduced height due to the topMargin + preferredHighlightEnd: 152 - 17 // -17 because of the reduced height due to the topMargin + highlightRangeMode: ListView.ApplyRange + highlightMoveDuration: 0 + delegate: BrowserView.ListDelegate {id: listDelegate; masterBPM: deckInfo.masterBPM; masterKey: deckInfo.masterKey; keyIndex: deckInfo.keyIndex; isPlaying: deckInfo.isPlaying; adjacentKeys: settings.adjacentKeys;} + model: browser.dataSet + currentIndex: browser.currentIndex + focus: true + cacheBuffer: 10 + visible: settings.showBrowserOnFullScreen ? ((deckInfo.isInBrowserMode && leftScreen) || (deckInfo.viewButton && !deckInfo.isInBrowserMode) || deckInfo.favorites) : true + } + + ListView { + id: contentListRight + anchors.fill: parent + verticalLayoutDirection: ListView.TopToBottom + // the top/bottom margins are applied only at the beginning/end of the list in order to show half entries while scrolling + // and keep the list delegates in the same position always. + + // the commented out margins caused browser anchor problems leading to a disappearing browser! check later !? + anchors.topMargin: 0 // ( (contentList.count < qmlBrowser.maxItemsOnScreen ) || (currentIndex < 4 )) ? 17 : 0 + anchors.bottomMargin: 0 // ( (contentList.count >= qmlBrowser.maxItemsOnScreen) && (currentIndex >= contentList.count - 4)) ? 18 : 0 + clip: false + spacing: 0 + preferredHighlightBegin: 0 // -17 because of the reduced height due to the topMargin + preferredHighlightEnd: 240 // -17 because of the reduced height due to the topMargin + highlightRangeMode: ListView.ApplyRange + highlightMoveDuration: 0 + delegate: BrowserView.TrackView {id: trackView; masterBPM: deckInfo.masterBPM;} + model: browser.dataSet + currentIndex: browser.currentIndex + focus: true + cacheBuffer: 10 + visible: settings.showBrowserOnFullScreen ? (deckInfo.isInBrowserMode && !leftScreen) : false + } + + BrowserView.BrowserHeader { + id: browserHeader + nodeIconId: browser.iconId + currentDeck: deckInfo.deckId + state: "show" + pathStrings: browser.currentPath + + Behavior on height { NumberAnimation { duration: speed; } } + + visible: settings.showBrowserOnFullScreen ? !(deckInfo.isInBrowserMode && !leftScreen) : true + } + + //-------------------------------------------------------------------------------------------------------------------- + + BrowserView.BrowserFooter { + id: browserFooter + state: "show" + propertiesPath: qmlBrowser.propertiesPath + sortingKnobValue: qmlBrowser.sortingKnobValue + maxCount: contentList.count + count: browser.currentIndex + 1 + deckInfo: qmlBrowser.deckInfo + + Behavior on height { NumberAnimation { duration: speed; } } + + visible: settings.showBrowserOnFullScreen ? !(deckInfo.isInBrowserMode && !leftScreen) : true + } + + BrowserView.TrackFooter { + id: trackFooter + state: "show" + propertiesPath: qmlBrowser.propertiesPath + sortingKnobValue: qmlBrowser.sortingKnobValue + maxCount: contentList.count + count: browser.currentIndex + 1 + deckInfo: qmlBrowser.deckInfo + + Behavior on height { NumberAnimation { duration: speed; } } + + visible: settings.showBrowserOnFullScreen ? (deckInfo.isInBrowserMode && !leftScreen) : false + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/Dimensions.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/Dimensions.qml new file mode 100755 index 000000000000..bedc4e594519 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/Dimensions.qml @@ -0,0 +1,15 @@ +import QtQuick 2.15 + +QtObject { + + readonly property real infoBoxesWidth: 150 + readonly property real firstRowHeight: 33 + readonly property real secondRowHeight: 72 + readonly property real thirdRowHeight: 72 + readonly property real spacing: 6 + readonly property real largeBoxWidth: 2*infoBoxesWidth + spacing + readonly property real cornerRadius: 5 + readonly property real screenTopMargin: 3 // might need to be adapted based on the tolerances of hardware manufacturing + readonly property real screenLeftMargin: spacing // might need to be adapted based on the tolerances of hardware manufacturing + readonly property real titleTextMargin: spacing +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/EmptyDeck.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/EmptyDeck.qml new file mode 100755 index 000000000000..5ceca5ff3d5e --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/EmptyDeck.qml @@ -0,0 +1,47 @@ +import QtQuick 2.15 +import '../Overlays' as Overlays +import '../Defines' as Defines +import '../Widgets' as Widgets + +Item { + id: display + anchors.fill: parent + property color deckColor: "black" + property var deckInfo: ({}) + Dimensions {id: dimensions} + + property real infoBoxesWidth: dimensions.infoBoxesWidth + property real firstRowHeight: dimensions.firstRowHeight + + Rectangle { + id: background + color: colors.defaultBackground + anchors.fill: parent + } + + Image { + id: logoImage + anchors.fill: parent + + source: engine.getSetting("idleBackground") || "../../../../../images/templates/logo_mixxx.png" + fillMode: Image.PreserveAspectFit + } + + // DECK HEADER // + // Widgets.DeckHeader + // { + // id: deckHeader + + // title: deckInfo.headerEnabled ? deckInfo.headerText : "Live Input" + // artist: deckInfo.headerEnabled ? deckInfo.headerTextLong : "Live Input" + + // height: display.firstRowHeight-6 + // width: 4*(display.infoBoxesWidth/2+1)+10 + + // anchors.left: parent.left + // anchors.top: parent.top + // anchors.topMargin: 3 + // anchors.leftMargin: 4 + + // } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/StemDeck.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/StemDeck.qml new file mode 100755 index 000000000000..e0a260721422 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/StemDeck.qml @@ -0,0 +1,28 @@ +import QtQuick 2.5 +import '../Widgets' as Widgets +import '../Overlays' as Overlays + +//---------------------------------------------------------------------------------------------------------------------- +// Stem Screen View - UI of the screen for stems +//---------------------------------------------------------------------------------------------------------------------- + +Item { + id: display + + // MODEL PROPERTIES // + required property var deckInfo + + width: 320 + height: 240 + + TrackDeck { + id: trackScreen + deckInfo: display.deckInfo + anchors.fill: parent + } + + // STEM OVERLAY // + Widgets.StemOverlay { + deckInfo: display.deckInfo + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/TrackDeck.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/TrackDeck.qml new file mode 100755 index 000000000000..2fc98a5117a9 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Views/TrackDeck.qml @@ -0,0 +1,222 @@ +import QtQuick 2.5 +import QtQuick.Layouts 1.1 +import '../Waveform' as WF +import '../Overlays' as Overlays + +import '../Widgets' as Widgets + +//---------------------------------------------------------------------------------------------------------------------- +// Track Screen View - UI of the screen for track +//---------------------------------------------------------------------------------------------------------------------- + +Item { + id: display + Dimensions {id: dimensions} + + // MODEL PROPERTIES // + required property var deckInfo + property int deckId: 1 + property real boxesRadius: dimensions.cornerRadius + property real infoBoxesWidth: dimensions.infoBoxesWidth +4 + property real firstRowHeight: dimensions.firstRowHeight + property real secondRowHeight: dimensions.secondRowHeight + property real spacing: dimensions.spacing-3 + property real screenTopMargin: dimensions.screenTopMargin + property real screenLeftMargin: dimensions.screenLeftMargin-2 + + width: 320 + height: 240 + + Rectangle { + id: displayBackground + anchors.fill: parent + color: colors.defaultBackground + } + + Image { + id: emptyTrackDeckImage + anchors.fill: parent + visible: deckInfo.showLogo + + source: engine.getSetting("idleBackground") || "../../../../../images/templates/logo_mixxx.png" + fillMode: Image.PreserveAspectFit + } + + ColumnLayout { + id: content + spacing: display.spacing + + anchors.left: parent.left + anchors.top: parent.top + anchors.topMargin: display.screenTopMargin + anchors.leftMargin: display.screenLeftMargin + + // FIRST ROW // + RowLayout { + id: firstRow + + spacing: 1 + + // DECK HEADER // + Widgets.DeckHeader { + id: deckHeader + + deckInfo: display.deckInfo + + title: deckInfo.headerEnabled ? deckInfo.headerTextShort : deckInfo.titleString + artist: deckInfo.headerEnabled ? deckInfo.headerTextLong : deckInfo.artistString + + height: display.firstRowHeight-6 + width: deckInfo.headerEnabled ? 4*(display.infoBoxesWidth/2+1)+1 : 3*(display.infoBoxesWidth/2+1)+3 + } + + // TIME DISPLAY // + Item { + id: timeBox2 + width: (display.infoBoxesWidth/2+1) + height: display.firstRowHeight-6 + + Rectangle { + anchors.fill: parent + color: trackEndBlinkTimer2.blink ? colors.colorRed : colors.colorDeckGrey + radius: display.boxesRadius + visible: !deckInfo.headerEnabled + } + + Text { + text: settings.timeBox == 0 ? deckInfo.remainingTimeString : settings.timeBox == 1 ? deckInfo.elapsedTimeString : settings.timeBox == 2 ? deckInfo.timeToCue : settings.timeBox == 3 ? deckInfo.beats : settings.timeBox == 4 ? deckInfo.beatsAlt : settings.timeBox == 5 ? deckInfo.beatsToCue : settings.timeBox == 6 ? deckInfo.beatsToCueAlt : deckInfo.remainingTimeString + font.pixelSize: 22 + font.family: "Roboto" + font.weight: Font.Medium + color: settings.timeTextColorChange && trackEndBlinkTimer2.blink ? "black" : "white" + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + visible: !deckInfo.shift && !deckInfo.headerEnabled + } + + Text { + text: settings.timeBoxShift == 0 ? deckInfo.remainingTimeString : settings.timeBoxShift == 1 ? deckInfo.elapsedTimeString : settings.timeBoxShift == 2 ? deckInfo.timeToCue : settings.timeBoxShift == 3 ? deckInfo.beats : settings.timeBoxShift == 4 ? deckInfo.beatsAlt : settings.timeBoxShift == 5 ? deckInfo.beatsToCue : settings.timeBoxShift == 6 ? deckInfo.beatsToCueAlt : deckInfo.remainingTimeString + font.pixelSize: 22 + font.family: "Roboto" + font.weight: Font.Medium + color: settings.timeTextColorChange && trackEndBlinkTimer2.blink ? "black" : "white" + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + visible: deckInfo.shift && !deckInfo.headerEnabled + } + + Timer { + id: trackEndBlinkTimer2 + property bool blink: false + + interval: 500 + repeat: true + running: deckInfo.trackEndWarning + + onTriggered: { + blink = !blink; + } + + onRunningChanged: { + blink = running; + } + } + } + } + + // PHASE METER // + Widgets.PhaseMeter { + id: phase + height: settings.hidePhase ? 0 : 16 + width: 317 + visible: deckInfo.isLoaded + + phase: deckInfo.phase + } + + //WAVEFORM + + property string deckSizeState: "large" + readonly property int waveformHeight: 129 + property bool isInEditMode: false + property bool showLoopSize: true + property string propertiesPath: "" + + WF.WaveformContainer { + id: waveformContainer + + deckInfo: display.deckInfo + + deckId: deckInfo.deckId + deckSizeState: content.deckSizeState + propertiesPath: content.propertiesPath + + // anchors.left: parent.left + width: 316 + // anchors.top: phase.bottom + showLoopSize: content.showLoopSize + isInEditMode: content.isInEditMode + + // the height of the waveform is defined as the remaining space of deckHeight - stripe.height - spacerWaveStripe.height + height: (settings.alwaysShowTempoInfo || deckInfo.adjustEnabled ? (settings.hideWaveformOverview ? content.waveformHeight + display.secondRowHeight-51 : content.waveformHeight-38) : (!deckInfo.showBPMInfo ? (settings.hideWaveformOverview ? content.waveformHeight + display.secondRowHeight-13 : content.waveformHeight) : (settings.hideWaveformOverview ? content.waveformHeight + display.secondRowHeight-51 : content.waveformHeight-38))) + (settings.hidePhase && settings.hidePhrase ? 16 : 0) + (!settings.hidePhase && !settings.hidePhrase ? -16 : 0) + visible: deckInfo.isLoaded && !settings.hideWaveforms + + Behavior on height { PropertyAnimation { duration: 90} } + } + } + + WF.WaveformOverview { + height: settings.hideWaveformOverview ? 0 : settings.hideWaveforms ? 150 : display.secondRowHeight-13 + width: 314 + anchors.left: parent.left + anchors.leftMargin: 6 + anchors.top: display.top + anchors.topMargin: settings.hideWaveforms ? 90 : 178 + } + + Overlays.TopControls { + id: fx1 + fxUnit: 0 + showHideState: (deckInfo.showFx1 && settings.fxOverlays && !settings.hideEffectsOverlay1) || (deckInfo.padsModeFx1 && (settings.fx1unit == 1)) || (deckInfo.padsModeFx2 && (settings.fx2unit == 1)) ? "show" : "hide" + } + + Overlays.TopControls { + id: fx2 + fxUnit: 1 + showHideState: deckInfo.showFx2 && settings.fxOverlays && !settings.hideEffectsOverlay1 || (deckInfo.padsModeFx1 && (settings.fx1unit == 2)) || (deckInfo.padsModeFx2 && (settings.fx2unit == 2)) ? "show" : "hide" + } + + Overlays.TopControls { + id: fx3 + fxUnit: 2 + showHideState: deckInfo.showFx3 && settings.fxOverlays && !settings.hideEffectsOverlay2 || (deckInfo.padsModeFx1 && (settings.fx1unit == 3)) || (deckInfo.padsModeFx2 && (settings.fx2unit == 3)) ? "show" : "hide" + } + + Overlays.QuickFXSelector { + deckInfo: display.deckInfo + } + + Overlays.TopControls { + id: fx4 + fxUnit: 3 + showHideState: (deckInfo.showFx4 && settings.fxOverlays && !settings.hideEffectsOverlay2 || (deckInfo.padsModeFx1 && (!settings.fx1unit == 4)) ||(deckInfo.padsModeFx2 && (settings.fx2unit == 4))) ? "show" : "hide" + } + + Widgets.TempoAdjust { + id: tempoInfo + deckId: deckInfo.deckId + height: 38 + y: settings.hideWaveformOverview ? 197 : 140 + visible: (deckInfo.isLoaded ? (settings.alwaysShowTempoInfo || deckInfo.adjustEnabled ? true : deckInfo.showBPMInfo) : false) && !settings.hideWaveforms + } + + Widgets.TempoAdjust { + id: tempoInfo2 + deckId: deckInfo.deckId + height: 38 + y: 50 + visible: settings.hideWaveforms + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/StemColorIndicators.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/StemColorIndicators.qml new file mode 100755 index 000000000000..2da71cca02d2 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/StemColorIndicators.qml @@ -0,0 +1,82 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Defines' as Defines +import '../Defines' as Defines +import '../ViewModels' as ViewModels + +Item { + id: view + + property int deckId: 1 + + Defines.Colors {id: colors} + Defines.Settings {id: settings} + + required property var deckInfo + + readonly property int stemCount: deckInfo.stemCount + readonly property var stemColors: ["green", "blue", "red", settings.accentColor] + + property var indicatorHeight: [31 , 31 , 31 , 31] + + //-------------------------------------------------------------------------------------------------------------------- + // There is one pixel space between the color-indicator-rectangles. In this space, you can see the beatgrid/cuePoints, + // which is not what we want. Therefore I added this Rectalgles in the same color as the background. This rectangles hide + // the beatgrid/cuePoints. + Rectangle { x: 0; y: 0; width: 5; height: view.height; color: colors.colorBlack75 } + Rectangle { x: view.width - width; y: 0; width: 5; height: view.height; color: colors.colorBlack75 } + + //-------------------------------------------------------------------------------------------------------------------- + + readonly property var deckPlayer: Mixxx.PlayerManager.getPlayer(`[Channel${deckId}]`) + readonly property var currentPlayer: deckPlayer.currentPlayer + + function indicatorY(index) { + var y = 0; + for (var i=0; i 1 ? 2 : 1) + // width: view.width + // height: 31 + // clip: true + + // deckId: view.deckId + // streamId: index + 1 + // sampleWidth: view.sampleWidth + // waveformPosition: view.waveformPosition + // waveformColors: colors.getWaveformColors(colorIds[index]) + // } + // } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/WaveformContainer.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/WaveformContainer.qml new file mode 100755 index 000000000000..a08c7c66b81d --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/WaveformContainer.qml @@ -0,0 +1,241 @@ +import QtQuick 2.15 + +import '../Defines' +import '../Widgets' as Widgets +import '../Overlays' as Overlays +import '../ViewModels' as ViewModels + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Item { + id: view + property int deckId: deckInfo.deckId + property string deckSizeState: "large" + property bool showLoopSize: false + property bool isInEditMode: false + property string propertiesPath: "" + property int zoomLevel: deckInfo.zoomLevel + readonly property int minSampleWidth: 2048 + property int sampleWidth: minSampleWidth << zoomLevel + property bool hideLoop: false + property bool hideBPM: false + property bool hideKey: false + + readonly property bool trackIsLoaded: deckInfo.isLoaded + + //-------------------------------------------------------------------------------------------------------------------- + + required property var deckInfo + + //-------------------------------------------------------------------------------------------------------------------- + // WAVEFORM Position + //------------------------------------------------------------------------------------------------------------------ + + Mixxx.ControlProxy { + id: scratchPositionEnableControl + + group: root.group + key: "scratch_position_enable" + } + + Mixxx.ControlProxy { + id: scratchPositionControl + + group: root.group + key: "scratch_position" + } + + Mixxx.ControlProxy { + id: wheelControl + + group: root.group + key: "wheel" + } + + Mixxx.ControlProxy { + id: rateRatioControl + + group: root.group + key: "rate_ratio" + } + + Mixxx.ControlProxy { + id: zoomControl + + group: root.group + key: "waveform_zoom" + } + + MixxxControls.WaveformDisplay { + id: singleWaveform + group: `[Channel${view.deckId}]` + x: 0 + width: 316 + height: (settings.alwaysShowTempoInfo || deckInfo.adjustEnabled ? (settings.hideWaveformOverview ? content.waveformHeight + display.secondRowHeight-51 : content.waveformHeight-38) : (!deckInfo.showBPMInfo ? (settings.hideWaveformOverview ? content.waveformHeight + display.secondRowHeight-13 : content.waveformHeight) : (settings.hideWaveformOverview ? content.waveformHeight + display.secondRowHeight-51 : content.waveformHeight-38))) + (settings.hidePhase && settings.hidePhrase ? 16 : 0) + (!settings.hidePhase && !settings.hidePhrase ? -16 : 0) + + Behavior on height { PropertyAnimation { duration: 90} } + anchors.fill: parent + zoom: zoomControl.value + backgroundColor: "#36000000" + + Mixxx.WaveformRendererEndOfTrack { + color: 'blue' + endOfTrackWarningTime: 30 + } + + Mixxx.WaveformRendererPreroll { + color: '#998977' + } + + Mixxx.WaveformRendererMarkRange { + // + Mixxx.WaveformMarkRange { + startControl: "loop_start_position" + endControl: "loop_end_position" + enabledControl: "loop_enabled" + color: '#00b400' + opacity: 0.7 + disabledColor: '#FFFFFF' + disabledOpacity: 0.6 + } + // + Mixxx.WaveformMarkRange { + startControl: "intro_start_position" + endControl: "intro_end_position" + color: '#2c5c9a' + opacity: 0.6 + durationTextColor: '#ffffff' + durationTextLocation: 'after' + } + // + Mixxx.WaveformMarkRange { + startControl: "outro_start_position" + endControl: "outro_end_position" + color: '#2c5c9a' + opacity: 0.6 + durationTextColor: '#ffffff' + durationTextLocation: 'before' + } + } + + Mixxx.WaveformRendererRGB { + axesColor: '#00ffffff' + lowColor: 'red' + midColor: 'green' + highColor: 'blue' + + gainAll: 1.5 + gainLow: 1.0 + gainMid: 1.0 + gainHigh: 1.0 + } + + Mixxx.WaveformRendererStem { + gainAll: 1.5 + } + + Mixxx.WaveformRendererBeat { + color: settings.hideBeatgrid ? 'transparent' : Qt.rgba(0.81, 0.81, 0.81, settings.beatgridVisibility) + } + + Mixxx.WaveformRendererMark { + playMarkerColor: 'cyan' + playMarkerBackground: 'transparent' + defaultMark: Mixxx.WaveformMark { + align: "bottom|right" + color: "#FF0000" + textColor: "#FFFFFF" + text: " %1 " + } + + untilMark.showTime: settings.showTimeToCue + untilMark.showBeats: settings.showBeatToCue + untilMark.align: settings.distanceToCueAlignment == "bottom" ? Qt.AlignBottom : settings.distanceToCueAlignment == "top" ? Qt.AlignTop : Qt.AlignCenter + untilMark.textSize: settings.distanceToCueFontSize + + Mixxx.WaveformMark { + control: "cue_point" + text: 'C' + align: 'top|right' + color: 'red' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "loop_start_position" + text: '↻' + align: 'top|left' + color: 'green' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "loop_end_position" + align: 'bottom|right' + color: 'green' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "intro_start_position" + align: 'top|right' + color: 'blue' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "intro_end_position" + text: '◢' + align: 'top|left' + color: 'blue' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "outro_start_position" + text: '◣' + align: 'top|right' + color: 'blue' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "outro_end_position" + align: 'top|left' + color: 'blue' + textColor: '#FFFFFF' + } + } + } + + //-------------------------------------------------------------------------------------------------------------------- + // Stem Color Indicators (Rectangles) + //-------------------------------------------------------------------------------------------------------------------- + + StemColorIndicators { + id: stemColorIndicators + deckId: view.deckId + deckInfo: view.deckInfo + anchors.fill: singleWaveform + anchors.rightMargin: 309 + visible: deckInfoModel.isStemDeck + indicatorHeight: !settings.hidePhase && !settings.hidePhrase ? (deckInfo.showBPMInfo ? [19 , 19 , 19 , 20] : [27 , 27 , 27 , 27]) : (deckInfo.showBPMInfo ? [23 , 23 , 23 , 23] : [31 , 31 , 31 , 31]) + } + + Widgets.LoopSize { + id: loopSize + anchors.topMargin: 1 + anchors.fill: parent + visible: (deckInfo.showLoopInfo || deckInfo.loopActive || settings.alwaysShowLoopSize) && !hideLoop + } + + Widgets.KeyDisplay { + id: keyDisplay + anchors.topMargin: 1 + anchors.fill: parent + visible: !hideKey + } + + Widgets.BpmDisplay { + id: bpmDisplay + anchors.bottomMargin: 1 + anchors.top: singleWaveform.bottom + anchors.fill: parent + visible: !hideBPM && (!deckInfo.showBPMInfo && !settings.alwaysShowTempoInfo && !deckInfo.adjustEnabled) || settings.hideWaveforms + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/WaveformOverview.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/WaveformOverview.qml new file mode 100644 index 000000000000..7f48abeafb98 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Waveform/WaveformOverview.qml @@ -0,0 +1,228 @@ +import QtQuick 2.15 +import QtQuick.Window 2.15 + +import "." as Skin +import Mixxx 1.0 as Mixxx + +Item { + id: waveform + + property int deckId: deckInfo.deckId + + readonly property string group: `[Channel${deckId}]` + + layer.enabled: true + + Item { + id: progression + + property real windowWidth: Window.width + Mixxx.ControlProxy { + id: propPosition + group: waveform.group + key: "playposition" + } + + Mixxx.ControlProxy { + id: propVisible + group: waveform.group + key: "track_loaded" + } + + width: propPosition.value * (320 - 12) + visible: propVisible.value + + anchors.top: parent.top + anchors.left: parent.left + anchors.bottom: parent.bottom + + clip: true + + Rectangle { + anchors.fill: parent + anchors.leftMargin: -border.width + anchors.topMargin: -border.width + anchors.bottomMargin: -border.width + border.width: 2 + border.color:"black" + color: Qt.rgba(0.39, 0.80, 0.96, 0.3) + } + } + + Mixxx.WaveformOverview { + readonly property var player: Mixxx.PlayerManager.getPlayer(waveform.group) + id: waveformOverview + anchors.fill: parent + anchors.topMargin: 6 + + track: player.currentTrack + } + + Mixxx.ControlProxy { + id: samplesControl + + group: waveform.group + key: "track_samples" + } + + // // Hotcue + // Repeater { + // model: 16 + + // S4MK3.HotcuePoint { + // required property int index + + // Mixxx.ControlProxy { + // id: samplesControl + + // group: waveform.group + // key: "track_samples" + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // Mixxx.ControlProxy { + // id: hotcueEnabled + // group: waveform.group + // key: `hotcue_${index + 1}_status` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // Mixxx.ControlProxy { + // id: hotcuePosition + // group: waveform.group + // key: `hotcue_${index + 1}_position` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // Mixxx.ControlProxy { + // id: hotcueColor + // group: waveform.group + // key: `hotcue_${number}_color` + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // anchors.top: parent.top + // // anchors.left: parent.left + // anchors.bottom: parent.bottom + // visible: hotcueEnabled.value + + // number: this.index + 1 + // type: S4MK3.HotcuePoint.Type.OneShot + // position: hotcuePosition.value / samplesControl.value + // color: `#${(hotcueColor.value >> 16).toString(16).padStart(2, '0')}${((hotcueColor.value >> 8) & 255).toString(16).padStart(2, '0')}${(hotcueColor.value & 255).toString(16).padStart(2, '0')}` + // } + // } + + // // Intro + // S4MK3.HotcuePoint { + + // Mixxx.ControlProxy { + // id: introStartEnabled + // group: waveform.group + // key: `intro_start_enabled` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // Mixxx.ControlProxy { + // id: introStartPosition + // group: waveform.group + // key: `intro_start_position` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // anchors.top: parent.top + // anchors.bottom: parent.bottom + // visible: introStartEnabled.value + + // type: S4MK3.HotcuePoint.Type.IntroIn + // position: introStartPosition.value / samplesControl.value + // } + + // // Extro + // S4MK3.HotcuePoint { + + // Mixxx.ControlProxy { + // id: introEndEnabled + // group: waveform.group + // key: `intro_end_enabled` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // Mixxx.ControlProxy { + // id: introEndPosition + // group: waveform.group + // key: `intro_end_position` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // anchors.top: parent.top + // anchors.bottom: parent.bottom + // visible: introEndEnabled.value + + // type: S4MK3.HotcuePoint.Type.IntroOut + // position: introEndPosition.value / samplesControl.value + // } + + // // Loop in + // S4MK3.HotcuePoint { + // Mixxx.ControlProxy { + // id: loopStartPosition + // group: waveform.group + // key: `loop_start_position` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // anchors.top: parent.top + // anchors.bottom: parent.bottom + // visible: loopStartPosition.value > 0 + + // type: S4MK3.HotcuePoint.Type.LoopIn + // position: loopStartPosition.value / samplesControl.value + // } + + // // Loop out + // S4MK3.HotcuePoint { + // Mixxx.ControlProxy { + // id: loopEndPosition + // group: waveform.group + // key: `loop_end_position` + + // onValueChanged: (value) => { + // redraw(waveform) + // } + // } + + // anchors.top: parent.top + // anchors.bottom: parent.bottom + // visible: loopEndPosition.value > 0 + + // type: S4MK3.HotcuePoint.Type.LoopOut + // position: loopEndPosition.value / samplesControl.value + // } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/BpmDisplay.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/BpmDisplay.qml new file mode 100755 index 000000000000..8ab0a41e58bb --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/BpmDisplay.qml @@ -0,0 +1,27 @@ +import QtQuick 2.15 + +Item { + anchors.fill: parent + property int deckId: 0 + + Rectangle { + id: bpmBackground + width: 60 + height: 20 + color: colors.grayBackground + anchors.right: parent.right + anchors.bottom: parent.bottom + } + + Text { + text: deckInfo.bpmString + color: "white" + font.pixelSize: 17 + font.family: "Pragmatica" + anchors.fill: bpmBackground + anchors.rightMargin: 2 + anchors.topMargin: 1 + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/DeckHeader.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/DeckHeader.qml new file mode 100755 index 000000000000..34c61544f924 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/DeckHeader.qml @@ -0,0 +1,90 @@ +import QtQuick 2.5 +import '../Defines' as Defines +import '../Defines' as Defines + +//here we assume that `colors` and `dimensions` already exists in the object hierarchy +Item { + id: widget + + property string title: '' + property string artist: '' + property color backgroundColor: colors.defaultBackground + height: dimensions.firstRowHeight + property int radius: dimensions.cornerRadius + + Defines.Settings {id: settings} + Defines.Colors {id: colors} + + required property var deckInfo + + property int deckA: deckInfo.deckAColor + property int deckB: deckInfo.deckBColor + property int deckC: deckInfo.deckCColor + property int deckD: deckInfo.deckDColor + + function colorForDeck(deckId,deckA,deckB,deckC,deckD) { + switch (deckId) { + case 1: return colorForDeckSingle(deckA); + case 2: return colorForDeckSingle(deckB); + case 3: return colorForDeckSingle(deckC); + default: return colorForDeckSingle(deckD); + } + } + + function colorForDeckSingle(deck) { + switch (deck) { + case 0: return colors.red; + case 1: return colors.darkOrange; + case 2: return colors.lightOrange; + case 3: return colors.warmYellow; + case 4: return colors.yellow; + case 5: return colors.lime; + case 6: return colors.green; + case 7: return colors.mint; + case 8: return colors.cyan; + case 9: return colors.turquoise; + case 10: return colors.blue; + case 11: return colors.plum; + case 12: return colors.violet; + case 13: return colors.purple; + case 14: return colors.magenta; + case 15: return colors.fuchsia; + default: return colors.white; + } + } + + Rectangle { + id: headerBg + color: colorForDeck(deckInfo.deckId,deckA,deckB,deckC,deckD) + anchors.fill: parent + radius: widget.radius + + Text { + anchors.fill: parent + anchors.leftMargin: 4 + anchors.rightMargin: 2 + anchors.topMargin: 2 + font.family: "Roboto" + font.weight: Font.Normal + font.pixelSize: 20 + color: "black" + text: widget.title + elide: Text.ElideRight + visible: deckInfo.shift ? false : true + } + + Text { + anchors.fill: parent + anchors.leftMargin: 4 + anchors.rightMargin: 2 + anchors.topMargin: 2 + font.family: "Roboto" + font.weight: Font.Normal + font.pixelSize: 20 + color: "black" + text: widget.artist + elide: Text.ElideRight + visible: deckInfo.shift ? true : false + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/KeyDisplay.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/KeyDisplay.qml new file mode 100755 index 000000000000..fd3f3ac53fd0 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/KeyDisplay.qml @@ -0,0 +1,46 @@ +import '../Defines' as Defines + +import QtQuick 2.15 + +Item { + anchors.fill: parent + + Defines.Colors { + id: colors + } + + property int deckId: 0 + + Rectangle { + id: keyBackground + width: 60 + height: 20 + color: deckInfo.isKeyLockOn ? colors.musicalKeyColors[deckInfo.keyIndex] : colors.musicalKeyColorsDark[deckInfo.keyIndex] + anchors.right: parent.right + anchors.top: parent.top + Rectangle { + id: keyBorder + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + width: keyBackground.width -2 + height: keyBackground.height -2 + color: "transparent" + border.color: colors.defaultBackground + border.width: 2 + } + } + + Text { + text: deckInfo.hasKey && (deckInfo.keyAdjustString != "-0") && (deckInfo.keyAdjustString != "+0") ? (settings.camelotKey ? utils.camelotConvert(deckInfo.keyString) : deckInfo.keyString) + deckInfo.keyAdjustString + : deckInfo.hasKey ? (settings.camelotKey ? utils.camelotConvert(deckInfo.keyString) : deckInfo.keyString) + : "No key" + color: deckInfo.isKeyLockOn ? "black" : "white" + font.pixelSize: 15 + font.family: "Pragmatica" + anchors.fill: keyBackground + anchors.rightMargin: 2 + anchors.topMargin: 1 + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/LoopSize.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/LoopSize.qml new file mode 100755 index 000000000000..454fc3d3c5d8 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/LoopSize.qml @@ -0,0 +1,87 @@ +import QtQuick 2.15 + +import Mixxx 1.0 as Mixxx + +import '../Defines' as Defines + +Item { + anchors.fill: parent + + Defines.Colors {id: colors} + Defines.Durations { id: durations } + + Mixxx.ControlProxy { + group: `[Channel${parent.deckId}]` + key: "beatloop_size" + id: loopSize + property string description: "Description" + } + + property int deckId: 0 + + property color loopActiveColor: colors.cueColors[settings.cueLoopColor] + property color loopDimmedColor: colors.cueColorsDark[settings.cueLoopColor] + + Rectangle { + id: loopSizeBackground + width: 40 + height: width + radius: width * 0.5 + opacity: loopActiveBlinkTimer.blink ? 0.25 : 1 + color: deckInfo.loopActive ? (loopActiveBlinkTimer.blink ? loopActiveColor : (settings.loopActiveRedFlash ? colors.colorRed : loopDimmedColor)) + : deckInfo.loopActive ? (deckInfo.shift ? loopDimmedColor : loopActiveColor) + : deckInfo.shift ? colors.colorDeckDarkGrey : colors.colorDeckGrey + Behavior on opacity { NumberAnimation { duration: durations.mainTransitionSpeed; easing.type: Easing.Linear} } + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + Rectangle { + id: loopLengthBorder + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + width: loopSizeBackground.width -2 + height: width + radius: width * 0.5 + color: "transparent" + border.color: loopActiveColor + border.width: 2 + } + } + + Text { + text: loopSize.value < 1/8 ? `/${1 / loopSize.value}` : loopSize.value < 1 ? `1/${1 / loopSize.value}` : `${loopSize.value}` + color: deckInfo.loopActive ? "black" : ( deckInfo.shift ? colors.colorDeckGrey : colors.defaultTextColor ) + font.pixelSize: fonts.extraLargeValueFontSize + font.family: "Pragmatica" + anchors.fill: loopSizeBackground + anchors.rightMargin: 2 + anchors.topMargin: 1 + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + onTextChanged: { + if (loopSize.value < 1) { + font.pixelSize = 18 + } else if ( loopSize.value > 8 ) { + font.pixelSize = 24 + } else { + font.pixelSize = 25 + } + } + } + + Timer { + id: loopActiveBlinkTimer + property bool blink: false + + interval: 333 + repeat: true + running: deckInfo.loopActive + + onTriggered: { + blink = !blink; + } + + onRunningChanged: { + blink = running; + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/PhaseMeter.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/PhaseMeter.qml new file mode 100755 index 000000000000..236d691fdab0 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/PhaseMeter.qml @@ -0,0 +1,94 @@ +import QtQuick 2.5 +import '../Defines' as Defines + +Item { + id: widget + + height: 16 + + function colorForPhase(phase) { + switch (phase) { + case 0: return colors.red; + case 1: return colors.darkOrange; + case 2: return colors.lightOrange; + case 3: return colors.phaseColor; + case 4: return colors.yellow; + case 5: return colors.lime; + case 6: return colors.green; + case 7: return colors.mint; + case 8: return colors.cyan; + case 9: return colors.turquoise; + case 10: return colors.blue; + case 11: return colors.plum; + case 12: return colors.violet; + case 13: return colors.purple; + case 14: return colors.magenta; + case 15: return colors.fuchsia; + case 16: return colors.colorWhite; + } + return colors.lightOrange; + } + + property real phase: 0.0 + + Defines.Settings {id: settings} + property int phaseAColor: settings.phaseAColor + property int phaseBColor: settings.phaseBColor + property int phaseCColor: settings.phaseCColor + property int phaseDColor: settings.phaseDColor + property int deckId: deckInfo.deckId + + property color phaseColor: colorForPhase(deckId == 1 ? phaseAColor : deckId == 2 ? phaseBColor : deckId == 3 ? phaseCColor : phaseDColor) + property color phaseHeadColor: "#FCB262" + property color separatorColor: "#88ffffff" + property color backgroundColor: colors.grayBackground + property real phasePosition: parent.width * (0.5 + widget.phase) + property real phaseBarWidth: parent.width * Math.abs(widget.phase) + + // Background + Rectangle { + anchors.fill: parent + color: widget.backgroundColor + } + + // Phase Bar + Rectangle { + color: widget.phaseColor + height: parent.height + width: phaseBarWidth + x: widget.phase < 0 ? widget.phasePosition : (parent.width/2) + } + + // Phase Head + Rectangle { + color: widget.phaseHeadColor + height: parent.height + width: 1 + x: widget.phase < 0 ? widget.phasePosition : (widget.phasePosition - width) + visible: Math.round(phaseBarWidth) !== 0 // hide phase head when phase is 0 + } + + // Separator at 0.25 + Rectangle { + color: widget.separatorColor + height: parent.height + width: 1 + x: parent.width * 0.25 - 1 + } + + // center Separator + Rectangle { + color: widget.separatorColor + height: parent.height + width: 1 + x: parent.width * 0.50 - 1 + } + + // Separator at 0.75 + Rectangle { + color: widget.separatorColor + height: parent.height + width: 1 + x: parent.width * 0.75 - 1 + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/ProgressBar.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/ProgressBar.qml new file mode 100755 index 000000000000..6c8c25dcd4cd --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/ProgressBar.qml @@ -0,0 +1,60 @@ +import QtQuick 2.15 + +import '../Defines' as Defines + +Item { + + id: progressBarContainer + + Defines.Colors { id: colors} + Defines.Settings { id: settings} + + property color progressBarColorIndicatorLevel: settings.accentColor // set from outside + property real value: 0.0 + property bool drawAsEnabled: true + + property alias progressBarWidth: progressBar.width + property alias progressBarHeight: progressBarContainer.height + property alias progressBarBackgroundColor: progressBar.color // set from outside + + onValueChanged: { + var val = Math.max( Math.min(value, 1.0), 0.0) + valueIndicator.width = val * (progressBar.width - 3) + } + + height: 6 + width: 80 + + // Progress Background + Rectangle { + id: progressBar + + anchors.left: parent.left + anchors.top: parent.top + height: parent.height + width: 102 // default value - set from outside + + color: colors.colorWhite09 // set in BottomInfoDetails + + // Progress Level + Rectangle { + id: valueIndicator + width: 0 // set in parent + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.left: parent.left + color: progressBarContainer.progressBarColorIndicatorLevel + visible: drawAsEnabled ? true : false + } + // Progress Indicator Thumb + Rectangle { + id: indicatorThumb + color: colors.colorWhite + width: 2 + height: parent.height + anchors.verticalCenter: parent.verticalCenter + anchors.left: valueIndicator.right + visible: drawAsEnabled ? true : false + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/Slider.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/Slider.qml new file mode 100755 index 000000000000..23206eeb43cd --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/Slider.qml @@ -0,0 +1,111 @@ +import QtQuick 2.5 + +Item { + id: item + property color backgroundColor: "grey" + property color sliderColor: "red" + property color cursorColor: "white" + property color centerColor: "black" + + property real min: 0 + property real max: 1 + property real value: 0.5 + property real radius: 0 + property real cursorWidth: 5 + property bool centered: false + + Item { + id: toBeMasked_noCenter + anchors.fill: parent + + property real cursorPosition: (parent.width - item.cursorWidth) * ( item.value / (item.max-item.min) ) + + //background + Rectangle { + anchors.fill: parent + color: item.backgroundColor + } + + //colored part of the slider + Rectangle { + anchors.top: parent.top + anchors.left: parent.left + width: toBeMasked_noCenter.cursorPosition + height: parent.height + + color: item.sliderColor + } + + //cursor + Rectangle { + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: toBeMasked_noCenter.cursorPosition + width: item.cursorWidth + height: parent.height + color: item.cursorColor + } + + visible: false + } + + Item { + id: toBeMasked_centered + anchors.fill: parent + property real x0: (parent.width - item.cursorWidth)/2 + property real cursorPosition_left: Math.min( toBeMasked_noCenter.cursorPosition, x0) + property real cursorPosition_right: Math.max( toBeMasked_noCenter.cursorPosition, x0) + + //cursor background + Rectangle { + id: background + anchors.fill: parent + color: item.backgroundColor + } + + //filled slider + Rectangle { + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: toBeMasked_centered.cursorPosition_left + width: toBeMasked_centered.cursorPosition_right - toBeMasked_centered.cursorPosition_left + height: parent.height + color: item.sliderColor + } + + //center + Rectangle { + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: toBeMasked_centered.x0 + width: item.cursorWidth + height: parent.height + color: item.centerColor + } + + //cursor + Rectangle { + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: toBeMasked_noCenter.cursorPosition + width: item.cursorWidth + height: parent.height + color: item.cursorColor + } + + visible: false + } + + Rectangle { + id: mask_noCenter + anchors.fill: parent + radius: item.radius + visible: false + } + + // OpacityMask { + // anchors.fill: parent + // maskSource: mask_noCenter + // source: item.centered ? toBeMasked_centered : toBeMasked_noCenter + // } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/StateBar.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/StateBar.qml new file mode 100755 index 000000000000..226c7cf1036f --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/StateBar.qml @@ -0,0 +1,34 @@ +import QtQuick 2.15 + +import '../Defines' as Defines + +// StateBar fits 'state count' elements into a bar of a given width and spacing. Take care that 'width > stateCount*spacing' +Item { + id: stateBarContainer + + property int spacing: 2 // default value. set from outside + property int stateCount: 5 // default value. set from outside + property int currentState: 2 // default value. set from outside + property color barColor: colors.colorIndicatorLevelOrange // default value. set from outside + property color barBgColor: colors.colorGrey24 // default value. set from outside + + property alias stateBarHeight: stateBarContainer.height + readonly property real stateBarWidth: width/stateCount - spacing + + Defines.Colors { id: colors} + + Row { + id: boxRow + anchors.fill: parent + anchors.leftMargin: 0.5*stateBarContainer.spacing + spacing: stateBarContainer.spacing + Repeater { + model: stateCount + Rectangle { + width: stateBarWidth + height: stateBarHeight + color: (index == currentState) ? barColor : barBgColor + } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/StemOverlay.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/StemOverlay.qml new file mode 100755 index 000000000000..37c8497e06e1 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/StemOverlay.qml @@ -0,0 +1,257 @@ +import QtQuick 2.15 +import QtQuick.Layouts 1.1 +import '../Views' + +import '../Defines' as Defines + +//---------------------------------------------------------------------------------------------------------------------- +// Remix Deck Overlay - for sample volume and filter value editing +//---------------------------------------------------------------------------------------------------------------------- + +Item { + id: display + + required property var deckInfo + + Dimensions {id: dimensions} + Defines.Colors { id: colors } + Defines.Durations { id: durations } + Defines.Settings {id: settings} + + // MODEL PROPERTIES // + property string showHideState: "hide" + property int bottomMargin: 0 + property int yPositionWhenHidden: 240 + property int yPositionWhenShown: (195 - bottomMargin) + + readonly property string name: display.deckInfo.stemSelectedName + + state: display.deckInfo.stemSelected ? "show" : "hide" + height: 40 + anchors.left: parent.left + anchors.right: parent.right + + // dark grey background + Rectangle { + id: bottomInfoDetailsPanelDarkBg + anchors { + top: parent.top + left: parent.left + right: parent.right + } + height: display.height + color: colors.colorFxHeaderBg + // light grey background + Rectangle { + id:bottomInfoDetailsPanelLightBg + anchors { + top: parent.top + left: parent.left + } + height: display.height + width: 105 + color: colors.colorFxHeaderLightBg + } + } + +// // dividers + Rectangle { + id: fxInfoDivider0 + width:1; + height:63; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 105 + } + + Rectangle { + id: fxInfoDivider2 + width:1; + color: colors.colorDivider + anchors.top: parent.top + anchors.left: parent.left + anchors.leftMargin: 195 + height: display.height + } + + // Info Details + Rectangle { + id: bottomInfoDetailsPanel + + height: parent.height + clip: true + width: parent.width + color: "transparent" + + anchors.left: parent.left + anchors.leftMargin: 1 + + Row { + Item { + id: stemInfoDetailsPanel + + height: display.height + width: 110 + + // name + Text { + id: stemInfoName + font.capitalization: Font.AllUppercase + text: "NAME" + color: settings.accentColor + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 2 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + + // value + Text { + id: nameValue + font.capitalization: Font.AllUppercase + text: name + color: display.deckInfo.stemSelectedMidColor + anchors.bottom: parent.bottom + anchors.bottomMargin: 1 + anchors.left: parent.left + anchors.right: parent.right + font.pixelSize: fonts.scale(18) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + } + + Item { + id: volumeInfoDetailsPanel + + height: display.height + width: 85 + + // volume + Text { + id: volumeInfoName + font.capitalization: Font.AllUppercase + text: "VOLUME" + color: !display.deckInfo.stemSelectedMuted ? settings.accentColor : "grey" + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 2 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + + // value + ProgressBar { + id: volume + progressBarHeight: 9 + progressBarWidth: 76 + anchors.left: parent.left + anchors.bottom: parent.bottom + anchors.bottomMargin: 3 + + anchors.leftMargin: 5 + anchors.rightMargin: 20 + + value: display.deckInfo.stemSelectedVolume + + drawAsEnabled: true + progressBarColorIndicatorLevel: display.deckInfo.stemSelectedMuted ? "grey" : settings.accentColor + progressBarBackgroundColor: "black" + } + } + + Item { + id: fxInfoDetailsPanel + + height: display.height + width: 125 + + // fx name + Text { + id: fxInfoSampleName + + font.capitalization: Font.AllUppercase + text: display.deckInfo.stemSelectedQuickFXName + color: display.deckInfo.stemSelectedQuickFXOn ? settings.accentColor : "grey" + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: 2 + font.pixelSize: fonts.scale(13.5) + anchors.leftMargin: 4 + elide: Text.ElideRight + } + + // value + ProgressBar { + id: quickfx + progressBarHeight: 9 + progressBarWidth: 115 + anchors.left: parent.left + anchors.bottom: parent.bottom + anchors.rightMargin: 20 + anchors.bottomMargin: 3 + anchors.leftMargin: 5 + + value: display.deckInfo.stemSelectedQuickFXValue + visible: fxInfoSampleName.text !== "---" + + drawAsEnabled: true + progressBarColorIndicatorLevel: display.deckInfo.stemSelectedQuickFXOn ? settings.accentColor : "grey" + progressBarBackgroundColor: "black" + } + } + + // StemInfoDetails { + // id: bottomInfoDetails3 + // finalValue: (type == 0 ? "Cue" : type == 1 ? "Fade-In" : type == 2 ? "Fade-Out" : type == 3 ? "Load" : type == 4 ? "Grid" : type == 5 ? "Loop" : "-") + // finalLabel: "TYPE" + // width: 50 + // } + } + } + + // black border & shadow + Rectangle { + id: headerBlackLine + anchors.top: display.bottom + width: parent.width + color: colors.colorBlack + height: 2 + } + Rectangle { + id: headerShadow + anchors.left: parent.left + anchors.right: parent.right + anchors.top: headerBlackLine.bottom + height: 6 + gradient: Gradient { + GradientStop { position: 1.0; color: colors.colorBlack0 } + GradientStop { position: 0.0; color: colors.colorBlack63 } + } + visible: false + } + + //------------------------------------------------------------------------------------------------------------------ + // STATES + //------------------------------------------------------------------------------------------------------------------ + + Behavior on y { PropertyAnimation { duration: durations.mainTransitionSpeed; easing.type: Easing.InOutQuad } } + + states: [ + State { + name: "show"; + PropertyChanges { target: display; y: yPositionWhenShown} + }, + State { + name: "hide"; + PropertyChanges { target: display; y: yPositionWhenHidden} + } + ] +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/TempoAdjust.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/TempoAdjust.qml new file mode 100755 index 000000000000..2fd23c0b29cf --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/TempoAdjust.qml @@ -0,0 +1,184 @@ +import QtQuick 2.15 + +import '../Defines' as Defines + +Item { + id: tempoAdjust + Defines.Margins {id: customMargins } + Defines.Settings {id: settings} + + readonly property bool shift: deckInfo.shift + + property int deckId: 0 + + function getHeader(headerID) { + switch(headerID) { + case 0: + return ""; + case 1: + return "Master BPM"; + case 2: + return "BPM"; + case 3: + return "Tempo"; + case 4: + return "BPM Offset"; + case 5: + return "Tempo Offset"; + case 6: + return "Master Deck"; + case 7: + return "Tempo Range"; + case 8: + return "Key"; + case 9: + return "Original BPM"; + } + } + + function getValue(valueID) { + switch(valueID) { + case 0: + return ""; + case 1: + return deckInfo.masterBPMShort; + case 2: + return deckInfo.bpmString; + case 3: + return deckInfo.tempoStringPer; + case 4: + return (deckInfo.masterDeck == tempoAdjust.deckId) ? "0.00" : deckInfo.bpmOffset; + case 5: + return (deckInfo.masterDeck == tempoAdjust.deckId) ? "0.00%" : deckInfo.tempoNeededString; + case 6: + return deckInfo.masterDeckLetter + case 7: + return deckInfo.tempoRange + case 8: + return deckInfo.hasKey && (deckInfo.keyAdjustString != "-0") && (deckInfo.keyAdjustString != "+0") ? (settings.camelotKey ? utils.camelotConvert(deckInfo.keyString) : deckInfo.keyString) + deckInfo.keyAdjustString : deckInfo.hasKey ? (settings.camelotKey ? utils.camelotConvert(deckInfo.keyString) : deckInfo.keyString) : "No key"; + case 9: + return deckInfo.songBPM + } + } + + function getColor(valueID) { + switch(valueID) { + case 0: + return "white"; + case 1: + return settings.enableMasterBpmTextColor ? ((deckInfo.masterDeck == deckInfo.deckId) ? colors.loopActiveColor : colors.lightOrange) : "white"; + case 2: + return settings.enableBpmTextColor ? ((deckInfo.masterDeck == tempoAdjust.deckId) || ((deckInfo.bpmOffset <= 0.05) && (deckInfo.bpmOffset >= - 0.05)) ? colors.loopActiveColor : colors.lightOrange) : "white"; + case 3: + return settings.enableTempoTextColor ? ((deckInfo.tempoString <= 0.05) && (deckInfo.tempoString >= - 0.05) ? colors.loopActiveColor : colors.lightOrange) : "white"; + case 4: + return settings.enableBpmOffsetTextColor ? ((deckInfo.masterDeck == tempoAdjust.deckId) || ((deckInfo.bpmOffset <= 0.05) && (deckInfo.bpmOffset >= - 0.05)) ? colors.loopActiveColor : colors.lightOrange) : "white"; + case 5: + return settings.enableTempoOffsetTextColor ? ((deckInfo.masterDeck == tempoAdjust.deckId) || ((deckInfo.tempoNeededVal <= 0.05) && (deckInfo.tempoNeededVal >= - 0.05)) ? colors.loopActiveColor : colors.lightOrange) : "white"; + case 6: + return settings.enableMasterDeckTextColor ? ((deckInfo.masterDeck == deckInfo.deckId) ? colors.loopActiveColor : colors.lightOrange) : "white"; + case 7: + return "white" + case 8: + return deckInfo.isKeyLockOn ? colors.musicalKeyColors[deckInfo.keyIndex] : "white" + case 9: + return "white" + } + } + + Rectangle { + id: tempoBackground + width: 320 + height: 38 + + color: colors.grayBackground + // headline + Text { + anchors.top: tempoBackground.top + anchors.topMargin: 0 + anchors.left: tempoBackground.left + anchors.leftMargin: 3 + font.pixelSize: 15 + color: settings.accentColor + text: shift ? getHeader(settings.tempoDisplayLeftShift) : getHeader(settings.tempoDisplayLeft) + } + + // value + Text { + anchors.bottom: tempoBackground.bottom + anchors.bottomMargin: 0 + anchors.left: tempoBackground.left + anchors.leftMargin: 3 + font.pixelSize: 20 + font.family: "Pragmatica" + color: shift ? getColor(settings.tempoDisplayLeftShift) : getColor(settings.tempoDisplayLeft) + text: shift ? getValue(settings.tempoDisplayLeftShift) : getValue(settings.tempoDisplayLeft) + } + + // headline + Text { + anchors.top: tempoBackground.top + anchors.topMargin: 0 + anchors.left: tempoBackground.left + anchors.leftMargin: 100 + font.pixelSize: 15 + color: settings.accentColor + text: shift ? getHeader(settings.tempoDisplayCenterShift) : getHeader(settings.tempoDisplayCenter) + } + + // value + Text { + + anchors.bottom: tempoBackground.bottom + anchors.bottomMargin: 0 + anchors.left: tempoBackground.left + anchors.leftMargin: 100 + font.pixelSize: 20 + font.family: "Pragmatica" + color: shift ? getColor(settings.tempoDisplayCenterShift) : getColor(settings.tempoDisplayCenter) + text: shift ? getValue(settings.tempoDisplayCenterShift) : getValue(settings.tempoDisplayCenter) + } + + // headline + Text { + anchors.top: tempoBackground.top + anchors.topMargin: 0 + anchors.left: tempoBackground.left + anchors.leftMargin: 216 + font.pixelSize: 15 + color: settings.accentColor + text: shift ? getHeader(settings.tempoDisplayRightShift) : getHeader(settings.tempoDisplayRight) + } + + // value + Text { + + anchors.bottom: tempoBackground.bottom + anchors.bottomMargin: 0 + anchors.left: tempoBackground.left + anchors.leftMargin: 216 + font.pixelSize: 20 + font.family: "Pragmatica" + color: shift ? getColor(settings.tempoDisplayRightShift) : getColor(settings.tempoDisplayRight) + text: shift ? getValue(settings.tempoDisplayRightShift) : getValue(settings.tempoDisplayRight) + } + } + + Rectangle { + width: 1 + height: 38 + color: "#88ffffff" + anchors.top: tempoBackground.top + anchors.left: tempoBackground.left + anchors.leftMargin: 97 + } + + Rectangle { + width: 1 + height: 38 + color: "#88ffffff" + anchors.top: tempoBackground.top + anchors.left: tempoBackground.left + anchors.leftMargin: 213 + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/TrackRating.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/TrackRating.qml new file mode 100755 index 000000000000..b3857271a216 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/AdvancedScreen/Widgets/TrackRating.qml @@ -0,0 +1,42 @@ +import QtQuick 2.15 + +Item { + id: trackRating + + property int rating: 0 + readonly property variant ratingMap: { '-1': 0, '0': 0, '51': 1, '1': 1, '64': 2, '102': 2, '153': 3, '196': 4, '204': 4, '252': 5, '255': 5 } + readonly property int nrRatings: 5 + + width: 20 + height: 133 + + //-------------------------------------------------------------------------------------------------------------------- + + Rectangle { + id: ratingStars + anchors.left: parent.left + height: 40 + width: 170 + color: "transparent" + visible: ratingMap[trackRating.rating] <= nrRatings + + Row { + id: rowSmall + anchors.left: parent.left + anchors.top: parent.top + height: parent.height + spacing: 2 + // Repeater { + // model: (5 -(nrRatings - ratingMap[trackRating.rating])) + // Image { + // id: star + // source: "../Images/star.png" + // clip: true + // cache: true + // height: 34 + // width: 34 + // } + // } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/BPMIndicator.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/BPMIndicator.qml new file mode 100755 index 000000000000..43260bfda898 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/BPMIndicator.qml @@ -0,0 +1,68 @@ +/* +This module is used to define the top right section, right under the label. +Currently this section is dedicated to BPM and tempo fader information. +*/ +import QtQuick 2.14 +import QtQuick.Controls 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Rectangle { + id: root + + required property string group + required property color borderColor + + property real value: 0 + + color: "transparent" + radius: 6 + border.color: smallBoxBorder + border.width: 2 + + Mixxx.ControlProxy { + id: bpm + group: root.group + key: "bpm" + } + + Mixxx.ControlProxy { + id: rateRange + group: root.group + key: "rateRange" + } + + Text { + id: indicator + text: bpm.value > 0 ? bpm.value.toFixed(2) : "-" + font.pixelSize: 17 + color: fontColor + anchors.centerIn: parent + } + + Text { + id: range + + text: rateRange.value > 0 ? `-/+ \n${(rateRange.value * 100).toFixed()}%` : '' + font.pixelSize: 9 + color: fontColor + + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.right: parent.right + anchors.rightMargin: 5 + anchors.topMargin: 2 + + horizontalAlignment: Text.AlignHCenter + } + + states: State { + name: "compacted" + + PropertyChanges { + target: range + visible: false + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/HotcuePoint.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/HotcuePoint.qml new file mode 100644 index 000000000000..f39bdc1ca796 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/HotcuePoint.qml @@ -0,0 +1,199 @@ +/* +This module is used to define markers element as render over the the overview waveform. +When this is written, Mixxx QML doesn't have waveform overview marker ready to be used, so this +is an attempt to provide fully functional markers for the controller screen, while the Mixxx QML +interface is still being worked on. +Consider replacing this with native overview marker in the future. +*/ +import QtQuick 2.15 +import QtQuick.Shapes 1.4 +import QtQuick.Window 2.15 + +import QtQuick.Controls 2.15 + +import Mixxx 1.0 as Mixxx + +Item { + required property real position + required property int type + + property int number: 1 + property color color: 'blue' + + enum Type { + OneShot, + Loop, + IntroIn, + IntroOut, + OutroIn, + OutroOut, + LoopIn, + LoopOut + } + + property variant typeWithNumber: [ + HotcuePoint.Type.OneShot, + HotcuePoint.Type.Loop + ] + + x: position * (Window.width - 16) + width: 21 + + // One shot + Shape { + visible: type == HotcuePoint.Type.OneShot + anchors.fill: parent + antialiasing: true + + ShapePath { + strokeWidth: 1 + strokeColor: Qt.rgba(0, 0, 0, 0.5) + fillColor: color + strokeStyle: ShapePath.SolidLine + // dashPattern: [ 1, 4 ] + startX: 0; startY: 0 + + PathLine { x: 12; y: 0 } + PathLine { x: 18; y: 6 } + PathLine { x: 18; y: 7 } + PathLine { x: 12; y: 13 } + PathLine { x: 2; y: 13 } + PathLine { x: 2; y: 80 } + PathLine { x: 0; y: 80 } + PathLine { x: 0; y: 0 } + } + } + + // Intro/Outro entry marker + Shape { + visible: type == HotcuePoint.Type.IntroIn || type == HotcuePoint.Type.OutroIn + anchors.fill: parent + antialiasing: true + + ShapePath { + strokeWidth: 1 + strokeColor: Qt.rgba(0, 0, 0, 0.5) + fillColor: "#6e6e6e" + strokeStyle: ShapePath.SolidLine + // dashPattern: [ 1, 4 ] + startX: 0; startY: 0 + + PathLine { x: 11; y: 0 } + PathLine { x: 2; y: 13 } + PathLine { x: 2; y: 80 } + PathLine { x: 0; y: 80 } + PathLine { x: 0; y: 0 } + } + } + + // Intro/Outro exit marker + Shape { + visible: type == HotcuePoint.Type.IntroOut || type == HotcuePoint.Type.OutroOut + anchors.fill: parent + antialiasing: true + + ShapePath { + strokeWidth: 1 + strokeColor: Qt.rgba(0, 0, 0, 0.5) + fillColor: "#6e6e6e" + strokeStyle: ShapePath.SolidLine + // dashPattern: [ 1, 4 ] + startX: 2; startY: 0 + + PathLine { x: 0; y: 0 } + PathLine { x: 0; y: 67 } + PathLine { x: -9; y: 80 } + PathLine { x: 2; y: 80 } + PathLine { x: 2; y: 0 } + } + } + + // Loop + Shape { + visible: type == HotcuePoint.Type.Loop + anchors.fill: parent + antialiasing: true + + ShapePath { + strokeWidth: 1 + strokeColor: Qt.rgba(0, 0, 0, 0.5) + fillColor: "#6ef36e" + strokeStyle: ShapePath.SolidLine + // dashPattern: [ 1, 4 ] + startX: 13; startY: 0 + + PathArc { + x: 2; y: 13 + radiusX: 9; radiusY: 9 + direction: PathArc.Clockwise + } + PathLine { x: 2; y: 80 } + PathLine { x: 0; y: 80 } + PathLine { x: 0; y: 0 } + PathLine { x: 21; y: 0 } + } + } + + // Loop in + Shape { + visible: type == HotcuePoint.Type.LoopIn + anchors.fill: parent + antialiasing: true + + ShapePath { + strokeWidth: 1 + strokeColor: Qt.rgba(0, 0, 0, 0.5) + fillColor: "#6ef36e" + strokeStyle: ShapePath.SolidLine + // dashPattern: [ 1, 4 ] + startX: 0; startY: 0 + + PathLine { x: 8; y: 0 } + PathLine { x: 2; y: 10 } + PathLine { x: 2; y: 80 } + PathLine { x: 0; y: 80 } + PathLine { x: 0; y: 0 } + } + } + + // Loop out + Shape { + visible: type == HotcuePoint.Type.LoopOut + anchors.fill: parent + antialiasing: true + + ShapePath { + strokeWidth: 1 + strokeColor: Qt.rgba(0, 0, 0, 0.5) + fillColor: "#6ef36e" + strokeStyle: ShapePath.SolidLine + // dashPattern: [ 1, 4 ] + startX: 2; startY: 0 + + PathLine { x: -6; y: 0 } + PathLine { x: 0; y: 10 } + PathLine { x: 0; y: 80 } + PathLine { x: 2; y: 80 } + PathLine { x: 2; y: 0 } + } + } + + Shape { + visible: type in typeWithNumber + anchors.fill: parent + antialiasing: true + + ShapePath { + fillColor: "black" + strokeColor: "black" + PathText { + x: 4 + y: 3 + font.family: "Arial" + font.pixelSize: 11 + font.weight: Font.Medium + text: `${number}` + } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/KeyIndicator.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/KeyIndicator.qml new file mode 100755 index 000000000000..06006eb8abeb --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/KeyIndicator.qml @@ -0,0 +1,122 @@ +/* +This module is used to define the top left section, right under the label. +Currently this section is dedicated to key/pitch information. +*/ +import QtQuick 2.14 +import QtQuick.Controls 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Rectangle { + id: root + + required property string group + + enum Key { + NoKey, + OneD, + EightD, + ThreeD, + TenD, + FiveD, + TwelveD, + SevenD, + SecondD, + NineD, + FourD, + ElevenD, + SixD, + TenM, + FiveM, + TwelveM, + SevenM, + TwoM, + NineM, + FourM, + ElevenM, + SixM, + OneM, + EightM, + ThreeM + } + + property variant colorsMap: [ + "#b09840", // No key + "#b960a2",// 1d + "#9fc516", // 8d + "#527fc0", // 3d + "#f28b2e", // 10d + "#5bc1cf", // 5d + "#e84c4d", // 12d + "#73b629", // 7d + "#8269ab", // 2d + "#fdd615", // 9d + "#3cc0f0", // 4d + "#4cb686", // 11d + "#4cb686", // 6d + "#f5a158", // 10m + "#7bcdd9", // 5m + "#ed7171", // 12m + "#8fc555", // 7m + "#9b86be", // 2m + "#fcdf45", // 9m + "#63cdf4", // 4m + "#f1845f", // 11m + "#70c4a0", // 6m + "#c680b6", // 1m + "#b2d145", // 8m + "#7499cd" // 3m + ] + + property variant textMap: [ + "No key", + "1d", + "8d", + "3d", + "10d", + "5d", + "12d", + "7d", + "2d", + "9d", + "4d", + "11d", + "6d", + "10m", + "5m", + "12m", + "7m", + "2m", + "9m", + "4m", + "11m", + "6m", + "1m", + "8m", + "3m" + ] + + Mixxx.ControlProxy { + id: keyProxy + group: root.group + key: "key" + } + + required property color borderColor + + readonly property int key: keyProxy.value > 0 ? keyProxy.value : KeyIndicator.Key.NoKey + + radius: 6 + border.color: colorsMap[key] + border.width: 2 + + color: colorsMap[key] + + Text { + text: textMap[key] + font.pixelSize: 17 + color: fontColor + anchors.centerIn: parent + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/Keyboard.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/Keyboard.qml new file mode 100644 index 000000000000..cf5fa1d203c1 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/Keyboard.qml @@ -0,0 +1,133 @@ +/* +This module is used render the keyboard scale, originating from C major (do). +*/ +import QtQuick 2.15 +import QtQuick.Shapes 1.4 +import QtQuick.Layouts 1.3 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +import "." as S4MK3 + +Item { + id: root + + required property string group + + Mixxx.ControlProxy { + id: keyProxy + group: root.group + key: "key" + } + + readonly property int key: keyProxy.value + + RowLayout { + anchors.fill: parent + spacing: 0 + Item { + Layout.fillWidth: true + Layout.fillHeight: true + Rectangle { anchors.fill: parent; color: "transparent" } + } + Repeater { + id: whiteKeys + + model: 7 + + property variant keyMap: [ + S4MK3.KeyIndicator.Key.OneD, + S4MK3.KeyIndicator.Key.ThreeD, + S4MK3.KeyIndicator.Key.FiveD, + S4MK3.KeyIndicator.Key.TwelveD, + S4MK3.KeyIndicator.Key.SecondD, + S4MK3.KeyIndicator.Key.FourD, + S4MK3.KeyIndicator.Key.SixD, + S4MK3.KeyIndicator.Key.TenM, + S4MK3.KeyIndicator.Key.TwelveM, + S4MK3.KeyIndicator.Key.TwoM, + S4MK3.KeyIndicator.Key.NineM, + S4MK3.KeyIndicator.Key.ElevenM, + S4MK3.KeyIndicator.Key.OneM, + S4MK3.KeyIndicator.Key.ThreeM + ] + + Rectangle { + Layout.preferredWidth: 21 + Layout.fillHeight: true + Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter + radius: 2 + border.width: 1 + border.color: root.key == whiteKeys.keyMap[index] || root.key == whiteKeys.keyMap[index + 7] ? "red" : "black" + color: root.key == whiteKeys.keyMap[index] || root.key == whiteKeys.keyMap[index + 7] ? "#aaaaaa" : "white" + } + } + Item { + Layout.fillWidth: true + Layout.fillHeight: true + Rectangle { anchors.fill: parent; color: "transparent" } + } + } + RowLayout { + anchors.fill: parent + spacing: 0 + + Item { + Layout.fillWidth: true + Layout.fillHeight: true + Rectangle { anchors.fill: parent; color: "transparent" } + } + Repeater { + id: blackKeys + + model: 5 + + property variant keyMap: [ + S4MK3.KeyIndicator.Key.EightD, + S4MK3.KeyIndicator.Key.TenD, + S4MK3.KeyIndicator.Key.SevenD, + S4MK3.KeyIndicator.Key.NineD, + S4MK3.KeyIndicator.Key.ElevenD, + S4MK3.KeyIndicator.Key.FiveM, + S4MK3.KeyIndicator.Key.SevenM, + S4MK3.KeyIndicator.Key.FourM, + S4MK3.KeyIndicator.Key.SixM, + S4MK3.KeyIndicator.Key.EightM, + ] + + Item { + Layout.fillHeight: true + Layout.preferredWidth: index == 1 ? 42 : index == 4 ? 12 : 21 + Rectangle { + anchors.top: parent.top + anchors.bottom: parent.bottom + width: 12 + Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter + color: "transparent" + ColumnLayout { + anchors.fill: parent + spacing: 0 + Rectangle { + Layout.fillHeight: true + Layout.fillWidth: true + radius: 2 + border.width: 1 + color: root.key == blackKeys.keyMap[index] || root.key == blackKeys.keyMap[index + blackKeys.model] ? "#aaaaaa" : "black" + } + Item { + Layout.fillWidth: true + Layout.fillHeight: true + Rectangle { anchors.fill: parent; color: "transparent" } + } + } + } + } + } + Item { + Layout.fillWidth: true + Layout.fillHeight: true + Rectangle { anchors.fill: parent; color: "transparent" } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/LoopSizeIndicator.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/LoopSizeIndicator.qml new file mode 100755 index 000000000000..bd5938268693 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/LoopSizeIndicator.qml @@ -0,0 +1,63 @@ +/* +This module is used to define the center right section, above the waveform. +Currently this section is dedicated to display loop state information such as loop state, anchor mode or size. +*/ +import QtQuick 2.14 +import QtQuick.Controls 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Rectangle { + id: root + + required property string group + + property color loopReverseOffBoxColor: Qt.rgba(255/255,113/255,9/255, 1) + property color loopOffBoxColor: Qt.rgba(67/255,70/255,66/255, 1) + property color loopOffFontColor: "white" + property color loopOnBoxColor: Qt.rgba(125/255,246/255,64/255, 1) + property color loopOnFontColor: "black" + + Mixxx.ControlProxy { + id: beatloopSize + group: root.group + key: "beatloop_size" + } + + Mixxx.ControlProxy { + id: loopEnabled + group: root.group + key: "loop_enabled" + } + + Mixxx.ControlProxy { + id: loopAnchor + group: root.group + key: "loop_anchor" + } + + readonly property bool on: loopEnabled.value + + radius: 6 + border.width: 2 + border.color: (loopSizeIndicator.on ? loopOnBoxColor : (loopAnchor.value == 0 ? loopOffBoxColor : loopReverseOffBoxColor)) + color: (loopSizeIndicator.on ? loopOnBoxColor : (loopAnchor.value == 0 ? loopOffBoxColor : loopReverseOffBoxColor)) + + Text { + id: indicator + text: (beatloopSize.value < 1 ? `1/${1 / beatloopSize.value}` : `${beatloopSize.value}`); + anchors.centerIn: parent + font.pixelSize: 46 + color: (loopSizeIndicator.on ? loopOnFontColor : loopOffFontColor) + } + + states: State { + name: "compacted" + + PropertyChanges { + target: indicator + font.pixelSize: 17 + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/OnAirTrack.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/OnAirTrack.qml new file mode 100644 index 000000000000..8d4097ccad63 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/OnAirTrack.qml @@ -0,0 +1,82 @@ +/* +This module is used to define the top section o the screen. +Currently this section is dedicated to display title and artist of the track loaded on the deck. +*/ +import QtQuick 2.14 +import QtQuick.Controls 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Item { + id: root + + required property string group + property var deckPlayer: Mixxx.PlayerManager.getPlayer(root.group) + readonly property var currentTrack: deckPlayer.currentTrack + property bool scrolling: true + + property real speed: 1.7 + property real spacing: 30 + + Rectangle { + id: frame + anchors.top: root.top + anchors.bottom: root.bottom + width: parent.width + x: 6 + color: 'transparent' + + readonly property string fulltext: !trackLoadedControl.value || root.currentTrack?.title.trim().length + root.currentTrack?.artist.trim().length == 0 ? qsTr("No Track Loaded") : `${root.currentTrack?.title} - ${root.currentTrack?.artist}`.trim() + + Text { + id: text1 + text: frame.fulltext + font.pixelSize: 24 + font.family: "Noto Sans" + font.letterSpacing: -1 + color: fontColor + } + Text { + id: text2 + visible: root.width < text1.implicitWidth + anchors.left: text1.right + anchors.leftMargin: spacing + text: frame.fulltext + font.pixelSize: 24 + font.family: "Noto Sans" + font.letterSpacing: -1 + color: fontColor + } + } + + Mixxx.ControlProxy { + id: trackLoadedControl + + group: root.group + key: "track_loaded" + } + + Timer { + id: timer + + property int modifier: -root.speed + + repeat: true + interval: 15 + running: root.width < text1.implicitWidth && root.scrolling + + onTriggered: { + frame.x += modifier; + if (frame.x <= -text1.implicitWidth - spacing) { + frame.x = 0; + } + } + + onRunningChanged: { + if (!running) { + frame.x = 6; + } + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/Progression.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/Progression.qml new file mode 100755 index 000000000000..93bc6f2eb401 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/Progression.qml @@ -0,0 +1,43 @@ +/* +This module is used to draw an overlay on the waveform overview in order to highlight better the playback progression. +As the native Mixxx QML component involves, this component might become redundant and should be replaces with native modules. +*/ +import QtQuick 2.15 +import QtQuick.Window 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Item { + id: root + + required property string group + + property real windowWidth: Window.width + + Mixxx.ControlProxy { + id: trackLoaded + group: root.group + key: "track_loaded" + } + + Mixxx.ControlProxy { + id: playposition + group: root.group + key: "playposition" + } + + width: Math.round(playposition.value * (320 - 12)) + visible: trackLoaded.value + clip: true + + Rectangle { + anchors.fill: parent + anchors.leftMargin: -border.width + anchors.topMargin: -border.width + anchors.bottomMargin: -border.width + border.width: 2 + border.color:"black" + color: Qt.rgba(0.39, 0.80, 0.96, 0.3) + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/SplashOff.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/SplashOff.qml new file mode 100644 index 000000000000..2954d704c83c --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/SplashOff.qml @@ -0,0 +1,15 @@ +import QtQuick 2.15 + +Rectangle { + id: root + anchors.fill: parent + color: "black" + + Image { + anchors.centerIn: parent + width: root.width*0.8 + height: root.height + fillMode: Image.PreserveAspectFit + source: engine.getSetting("idleBackground") || "../../../images/templates/logo_mixxx.png" + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/StockScreen.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/StockScreen.qml new file mode 100644 index 000000000000..f392a4548dd1 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/StockScreen.qml @@ -0,0 +1,634 @@ +import QtQuick 2.15 +import QtQuick.Layouts 1.3 + +import "../../../qml" as Skin +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +import S4MK3 as S4MK3 + +Rectangle { + id: root + + required property string group + required property string screenId + + anchors.fill: parent + color: "black" + + function onSharedDataUpdate(data) { + if (!root) return; + + console.log(`Received data on screen#${root.screenId} while currently bind to ${root.group}: ${JSON.stringify(data)}`); + if (typeof data === "object" && typeof data.group[root.screenId] === "string" && root.group !== data.group[root.screenId]) { + root.group = data.group[root.screenId] + waveformOverview.player = Mixxx.PlayerManager.getPlayer(root.group) + artwork.player = Mixxx.PlayerManager.getPlayer(root.group) + console.log(`Changed group for screen ${root.screenId} to ${root.group}`); + } + var shouldBeCompacted = false; + if (typeof data.padsMode === "object") { + scrollingWaveform.visible = data.padsMode[root.group] === 4 + artworkSpacer.visible = data.padsMode[root.group] === 1 + shouldBeCompacted |= scrollingWaveform.visible || artworkSpacer.visible + } + if (typeof data.keyboardMode === "object") { + shouldBeCompacted |= data.keyboardMode[root.group] + keyboard.visible = !!data.keyboardMode[root.group] + } + deckInfo.state = shouldBeCompacted ? "compacted" : "" + if (typeof data.displayBeatloopSize === "object") { + timeIndicator.mode = data.displayBeatloopSize[root.group] ? S4MK3.TimeAndBeatloopIndicator.Mode.BeetjumpSize : S4MK3.TimeAndBeatloopIndicator.Mode.RemainingTime + timeIndicator.update() + } + } + + Mixxx.ControlProxy { + id: trackLoadedControl + + group: root.group + key: "track_loaded" + + onValueChanged: (value) => { + if (!value && deckInfo) { + deckInfo.state = "" + scrollingWaveform.visible = false + } + } + } + + Timer { + id: channelchange + + interval: 5000 + repeat: true + running: false + + onTriggered: { + root.onSharedDataUpdate({ + group: { + "leftdeck": screenId === "leftdeck" && trackLoadedControl.group === "[Channel1]" ? "[Channel3]" : "[Channel1]", + "rightdeck": screenId === "rightdeck" && trackLoadedControl.group === "[Channel2]" ? "[Channel4]" : "[Channel2]", + }, + scrollingWaveform: { + "[Channel1]": true, + "[Channel2]": true, + "[Channel3]": true, + "[Channel4]": true, + }, + keyboardMode: { + "[Channel1]": false, + "[Channel2]": false, + "[Channel3]": false, + "[Channel4]": false, + }, + displayBeatloopSize: { + "[Channel1]": false, + "[Channel2]": false, + "[Channel3]": false, + "[Channel4]": false, + }, + }); + } + } + + Component.onCompleted: { + if (typeof engine.makeSharedDataConnection !== "function") { + return + } + + engine.makeSharedDataConnection(root.onSharedDataUpdate) + + root.onSharedDataUpdate({ + group: { + "leftdeck": "[Channel1]", + "rightdeck": "[Channel2]", + }, + scrollingWaveform: { + "[Channel1]": false, + "[Channel2]": false, + "[Channel3]": false, + "[Channel4]": false, + }, + keyboardMode: { + "[Channel1]": false, + "[Channel2]": false, + "[Channel3]": false, + "[Channel4]": false, + }, + displayBeatloopSize: { + "[Channel1]": false, + "[Channel2]": false, + "[Channel3]": false, + "[Channel4]": false, + }, + }); + } + + Rectangle { + anchors.fill: parent + color: "transparent" + + Image { + id: artwork + anchors.fill: parent + + property var player: Mixxx.PlayerManager.getPlayer(root.group) + + source: player.currentTrack?.coverArtUrl + height: 100 + width: 100 + fillMode: Image.PreserveAspectFit + + opacity: artworkSpacer.visible ? 1 : 0.2 + z: -1 + } + } + + ColumnLayout { + anchors.fill: parent + spacing: 6 + + Rectangle { + Layout.fillWidth: true + Layout.preferredHeight: 36 + color: "transparent" + + RowLayout { + anchors.fill: parent + spacing: 1 + + S4MK3.OnAirTrack { + id: onAir + group: root.group + Layout.fillWidth: true + Layout.fillHeight: true + + scrolling: !scrollingWaveform.visible + } + } + } + + // Indicator + Rectangle { + id: deckInfo + + Layout.fillWidth: true + Layout.preferredHeight: 105 + Layout.leftMargin: 6 + Layout.rightMargin: 6 + color: "transparent" + + GridLayout { + id: gridLayout + anchors.fill: parent + columnSpacing: 6 + rowSpacing: 6 + columns: 2 + + // Section: Key + S4MK3.KeyIndicator { + id: keyIndicator + group: root.group + borderColor: smallBoxBorder + + Layout.fillWidth: true + Layout.fillHeight: true + } + + // Section: Bpm + S4MK3.BPMIndicator { + id: bpmIndicator + group: root.group + borderColor: smallBoxBorder + + Layout.fillWidth: true + Layout.fillHeight: true + } + + // Section: Key + S4MK3.TimeAndBeatloopIndicator { + id: timeIndicator + group: root.group + + Layout.fillWidth: true + Layout.preferredHeight: 72 + timeColor: smallBoxBorder + } + + // Section: Bpm + S4MK3.LoopSizeIndicator { + id: loopSizeIndicator + group: root.group + + Layout.fillWidth: true + Layout.preferredHeight: 72 + } + } + states: State { + name: "compacted" + + PropertyChanges { + target:deckInfo + Layout.preferredHeight: 28 + } + PropertyChanges { + target: gridLayout + columns: 4 + } + PropertyChanges { + target: bpmIndicator + state: "compacted" + } + PropertyChanges { + target: timeIndicator + Layout.preferredHeight: -1 + Layout.fillHeight: true + state: "compacted" + } + PropertyChanges { + target: loopSizeIndicator + Layout.preferredHeight: -1 + Layout.fillHeight: true + state: "compacted" + } + } + } + + Item { + id: scrollingWaveform + + Layout.fillWidth: true + Layout.minimumHeight: scrollingWaveform.visible ? 120 : 0 + Layout.leftMargin: 0 + Layout.rightMargin: 0 + + visible: false + + Mixxx.ControlProxy { + id: zoomControl + + group: root.group + key: "waveform_zoom" + } + + MixxxControls.WaveformDisplay { + id: singleWaveform + group: root.group + x: 0 + width: 320 + height: 100 + + Behavior on height { PropertyAnimation { duration: 90} } + anchors.fill: parent + zoom: zoomControl.value + backgroundColor: "#36000000" + + Mixxx.WaveformRendererEndOfTrack { + color: 'blue' + endOfTrackWarningTime: 30 + } + + Mixxx.WaveformRendererPreroll { + color: '#998977' + } + + Mixxx.WaveformRendererMarkRange { + // + Mixxx.WaveformMarkRange { + startControl: "loop_start_position" + endControl: "loop_end_position" + enabledControl: "loop_enabled" + color: '#00b400' + opacity: 0.7 + disabledColor: '#FFFFFF' + disabledOpacity: 0.6 + } + // + Mixxx.WaveformMarkRange { + startControl: "intro_start_position" + endControl: "intro_end_position" + color: '#2c5c9a' + opacity: 0.6 + durationTextColor: '#ffffff' + durationTextLocation: 'after' + } + // + Mixxx.WaveformMarkRange { + startControl: "outro_start_position" + endControl: "outro_end_position" + color: '#2c5c9a' + opacity: 0.6 + durationTextColor: '#ffffff' + durationTextLocation: 'before' + } + } + + Mixxx.WaveformRendererRGB { + axesColor: '#00ffffff' + lowColor: 'red' + midColor: 'green' + highColor: 'blue' + + gainAll: 1.0 + gainLow: 1.0 + gainMid: 1.0 + gainHigh: 1.0 + } + + Mixxx.WaveformRendererStem { + gainAll: 1.0 + } + + Mixxx.WaveformRendererBeat { + color: '#cfcfcf' + } + + Mixxx.WaveformRendererMark { + playMarkerColor: 'cyan' + playMarkerBackground: 'transparent' + defaultMark: Mixxx.WaveformMark { + align: "bottom|right" + color: "#FF0000" + textColor: "#FFFFFF" + text: " %1 " + } + + untilMark.showTime: true + untilMark.showBeats: true + untilMark.align: Qt.AlignCenter + untilMark.textSize: 14 + + Mixxx.WaveformMark { + control: "cue_point" + text: 'C' + align: 'top|right' + color: 'red' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "loop_start_position" + text: '↻' + align: 'top|left' + color: 'green' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "loop_end_position" + align: 'bottom|right' + color: 'green' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "intro_start_position" + align: 'top|right' + color: 'blue' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "intro_end_position" + text: '◢' + align: 'top|left' + color: 'blue' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "outro_start_position" + text: '◣' + align: 'top|right' + color: 'blue' + textColor: '#FFFFFF' + } + Mixxx.WaveformMark { + control: "outro_end_position" + align: 'top|left' + color: 'blue' + textColor: '#FFFFFF' + } + } + } + } + + Mixxx.ControlProxy { + id: deckScratching + + group: root.group + key: "scratch2_enable" + + onValueChanged: { + if (typeof engine.makeSharedDataConnection !== "function") { + return; + } + + if (value) { + waveformTimer.running = false; + scrollingWaveform.visible = true; + deckInfo.state = scrollingWaveform.visible ? "compacted" : "" + } else { + waveformTimer.running = true; + waveformTimer.restart() + } + } + } + + Timer { + id: waveformTimer + + interval: 4000 + repeat: false + running: false + + onTriggered: { + scrollingWaveform.visible = false; + deckInfo.state = scrollingWaveform.visible ? "compacted" : "" + } + } + + // Spacer + Item { + id: artworkSpacer + + Layout.fillWidth: true + Layout.minimumHeight: artworkSpacer.visible ? 120 : 0 + Layout.leftMargin: 6 + Layout.rightMargin: 6 + + visible: false + + Rectangle { + color: "transparent" + visible: parent.visible + anchors.top: parent.top + anchors.bottom: parent.bottom + x: 153 + width: 2 + } + } + + // Track progress + Item { + id: waveform + Layout.fillWidth: true + Layout.fillHeight: true + Layout.leftMargin: 6 + Layout.rightMargin: 6 + layer.enabled: true + + S4MK3.Progression { + id: progression + group: root.group + + anchors.top: parent.top + anchors.left: parent.left + anchors.bottom: parent.bottom + } + + Mixxx.WaveformOverview { + readonly property var player: Mixxx.PlayerManager.getPlayer(root.group) + id: waveformOverview + anchors.fill: parent + + track: player.currentTrack + } + + Mixxx.ControlProxy { + id: samplesControl + + group: root.group + key: "track_samples" + } + + // Hotcue + Repeater { + model: 16 + + S4MK3.HotcuePoint { + required property int index + + Mixxx.ControlProxy { + id: samplesControl + + group: root.group + key: "track_samples" + } + + Mixxx.ControlProxy { + id: hotcueEnabled + group: root.group + key: `hotcue_${index + 1}_status` + } + + Mixxx.ControlProxy { + id: hotcuePosition + group: root.group + key: `hotcue_${index + 1}_position` + } + + Mixxx.ControlProxy { + id: hotcueColor + group: root.group + key: `hotcue_${number}_color` + } + + anchors.top: parent.top + // anchors.left: parent.left + anchors.bottom: parent.bottom + visible: hotcueEnabled.value + + number: this.index + 1 + type: S4MK3.HotcuePoint.Type.OneShot + position: hotcuePosition.value / samplesControl.value + color: `#${(hotcueColor.value >> 16).toString(16).padStart(2, '0')}${((hotcueColor.value >> 8) & 255).toString(16).padStart(2, '0')}${(hotcueColor.value & 255).toString(16).padStart(2, '0')}` + } + } + + // Intro + S4MK3.HotcuePoint { + + Mixxx.ControlProxy { + id: introStartEnabled + group: root.group + key: `intro_start_enabled` + } + + Mixxx.ControlProxy { + id: introStartPosition + group: root.group + key: `intro_start_position` + } + + anchors.top: parent.top + anchors.bottom: parent.bottom + visible: introStartEnabled.value + + type: S4MK3.HotcuePoint.Type.IntroIn + position: introStartPosition.value / samplesControl.value + } + + // Extro + S4MK3.HotcuePoint { + + Mixxx.ControlProxy { + id: introEndEnabled + group: root.group + key: `intro_end_enabled` + } + + Mixxx.ControlProxy { + id: introEndPosition + group: root.group + key: `intro_end_position` + } + + anchors.top: parent.top + anchors.bottom: parent.bottom + visible: introEndEnabled.value + + type: S4MK3.HotcuePoint.Type.IntroOut + position: introEndPosition.value / samplesControl.value + } + + // Loop in + S4MK3.HotcuePoint { + Mixxx.ControlProxy { + id: loopStartPosition + group: root.group + key: `loop_start_position` + } + + anchors.top: parent.top + anchors.bottom: parent.bottom + visible: loopStartPosition.value > 0 + + type: S4MK3.HotcuePoint.Type.LoopIn + position: loopStartPosition.value / samplesControl.value + } + + // Loop out + S4MK3.HotcuePoint { + Mixxx.ControlProxy { + id: loopEndPosition + group: root.group + key: `loop_end_position` + } + + anchors.top: parent.top + anchors.bottom: parent.bottom + visible: loopEndPosition.value > 0 + + type: S4MK3.HotcuePoint.Type.LoopOut + position: loopEndPosition.value / samplesControl.value + } + } + + S4MK3.Keyboard { + id: keyboard + group: root.group + visible: false + Layout.fillWidth: true + Layout.fillHeight: true + Layout.leftMargin: 6 + Layout.rightMargin: 6 + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/TimeAndBeatloopIndicator.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/TimeAndBeatloopIndicator.qml new file mode 100755 index 000000000000..be5d8cdf9a6d --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/TimeAndBeatloopIndicator.qml @@ -0,0 +1,95 @@ +/* +This module is used to define the center left section, above the waveform. +Currently this section is dedicated to show the remaining time as well as the beatloop when changing. +*/ +import QtQuick 2.14 +import QtQuick.Controls 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Rectangle { + id: root + + required property string group + + property color timeColor: Qt.rgba(67/255,70/255,66/255, 1) + property color beatjumpColor: 'yellow' + + enum Mode { + RemainingTime, + BeetjumpSize + } + + property int mode: TimeAndBeatloopIndicator.Mode.RemainingTime + + radius: 6 + border.color: timeColor + border.width: 2 + color: timeColor + + Text { + id: indicator + anchors.centerIn: parent + text: "0.00" + + font.pixelSize: 46 + color: fontColor + + Mixxx.ControlProxy { + id: progression + group: root.group + key: "playposition" + } + + Mixxx.ControlProxy { + id: duration + group: root.group + key: "duration" + } + + Mixxx.ControlProxy { + id: beatjump + group: root.group + key: "beatjump_size" + } + + Mixxx.ControlProxy { + id: endoftrack + group: root.group + key: "end_of_track" + onValueChanged: (value) => { + root.border.color = value ? 'red' : timeColor + root.color = value ? 'red' : timeColor + } + } + } + + Component.onCompleted: { + indicator.text = Qt.binding(function() { + let newValue = ""; + if (root.mode === TimeAndBeatloopIndicator.Mode.RemainingTime) { + var seconds = ((1.0 - progression.value) * duration.value); + newValue = `-${parseInt(seconds / 60).toString().padStart(2, '0')}:${parseInt(seconds % 60).toString().padStart(2, '0')}`; + } else { + newValue = (beatjump.value < 1 ? `1/${1 / beatjump.value}` : `${beatjump.value}`); + } + return newValue + }); + } + + states: State { + name: "compacted" + + PropertyChanges { + target: indicator + font.pixelSize: 17 + } + } + + onModeChanged: () => { + border.color = root.mode == TimeAndBeatloopIndicator.Mode.BeetjumpSize ? beatjumpColor : timeColor + color = root.mode == TimeAndBeatloopIndicator.Mode.BeetjumpSize ? beatjumpColor : timeColor + indicator.color = root.mode == TimeAndBeatloopIndicator.Mode.BeetjumpSize ? 'black' : 'white' + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/WaveformOverview.qml b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/WaveformOverview.qml new file mode 100755 index 000000000000..b77b3bc1cb67 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/WaveformOverview.qml @@ -0,0 +1,162 @@ +/* +This module is used to waveform overview, at the bottom of the screen. It is reusing component definition of `WaveformOverview.qml` but remove +the link to markers and provide hooks with screen update/redraw, needed for partial updates. +Currently this section is dedicated to BPM and tempo fader information. +*/ +import QtQuick 2.15 +import QtQuick.Window 2.15 + +import Mixxx 1.0 as Mixxx +import Mixxx.Controls 1.0 as MixxxControls + +Item { + id: root + + required property string group + property var deckPlayer: Mixxx.PlayerManager.getPlayer(root.group) + property real scale: 0.2 + + visible: false + antialiasing: true + anchors.fill: parent + + Connections { + onGroupChanged: { + deckPlayer = Mixxx.PlayerManager.getPlayer(root.group) + console.log("Group changed!!") + } + } + + Rectangle { + color: "white" + anchors.top: parent.top + anchors.bottom: parent.bottom + x: 153 + width: 2 + } + Item { + id: waveformContainer + + property real duration: samplesControl.value / sampleRateControl.value + + anchors.fill: parent + clip: true + + Mixxx.ControlProxy { + id: samplesControl + + group: root.group + key: "track_samples" + } + + Mixxx.ControlProxy { + id: sampleRateControl + + group: root.group + key: "track_samplerate" + } + + Mixxx.ControlProxy { + id: playPositionControl + + group: root.group + key: "playposition" + } + + Mixxx.ControlProxy { + id: rateRatioControl + + group: root.group + key: "rate_ratio" + } + + Mixxx.ControlProxy { + id: zoomControl + + group: root.group + key: "waveform_zoom" + } + + Item { + id: waveformBeat + + property real effectiveZoomFactor: (zoomControl.value * rateRatioControl.value / root.scale) * 6 + + width: waveformContainer.duration * effectiveZoomFactor + height: parent.height + x: 0.5 * waveformContainer.width - playPositionControl.value * width + visible: true + + Shape { + id: preroll + + property real triangleHeight: waveformBeat.height + property real triangleWidth: 0.25 * waveformBeat.effectiveZoomFactor + property int numTriangles: Math.ceil(width / triangleWidth) + + anchors.top: waveformBeat.top + anchors.right: waveformBeat.left + width: Math.max(0, waveformBeat.x) + height: waveformBeat.height + + ShapePath { + strokeColor: 'red' + strokeWidth: 1 + fillColor: "transparent" + + PathMultiline { + paths: { + let p = []; + for (let i = 0; i < preroll.numTriangles; i++) { + p.push([Qt.point(preroll.width - i * preroll.triangleWidth, preroll.triangleHeight / 2), Qt.point(preroll.width - (i + 1) * preroll.triangleWidth, 0), Qt.point(preroll.width - (i + 1) * preroll.triangleWidth, preroll.triangleHeight), Qt.point(preroll.width - i * preroll.triangleWidth, preroll.triangleHeight / 2)]); + } + return p; + } + } + } + } + + Shape { + id: postroll + + property real triangleHeight: waveformBeat.height + property real triangleWidth: 0.25 * waveformBeat.effectiveZoomFactor + property int numTriangles: Math.ceil(width / triangleWidth) + + anchors.top: waveformBeat.top + anchors.left: waveformBeat.right + width: waveformContainer.width / 2 + height: waveformBeat.height + + ShapePath { + strokeColor: 'red' + strokeWidth: 1 + fillColor: "transparent" + + PathMultiline { + paths: { + let p = []; + for (let i = 0; i < postroll.numTriangles; i++) { + p.push([Qt.point(i * postroll.triangleWidth, postroll.triangleHeight / 2), Qt.point((i + 1) * postroll.triangleWidth, 0), Qt.point((i + 1) * postroll.triangleWidth, postroll.triangleHeight), Qt.point(i * postroll.triangleWidth, postroll.triangleHeight / 2)]); + } + return p; + } + } + } + } + } + + MixxxControls.WaveformOverview { + id: waveformOverview + // property real duration: samplesControl.value / sampleRateControl.onValueChanged + + player: root.player + anchors.fill: parent + channels: Mixxx.WaveformOverview.Channels.BothChannels + renderer: Mixxx.WaveformOverview.Renderer.RGB + colorHigh: 'white' + colorMid: 'blue' + colorLow: 'green' + } + } +} diff --git a/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/qmldir b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/qmldir new file mode 100644 index 000000000000..a330672059a4 --- /dev/null +++ b/res/controllers/TraktorKontrolS4MK3Screens/S4MK3/qmldir @@ -0,0 +1,13 @@ +module S4MK3 +BPMIndicator 1.0 BPMIndicator.qml +HotcuePoint 1.0 HotcuePoint.qml +Keyboard 1.0 Keyboard.qml +KeyIndicator 1.0 KeyIndicator.qml +LoopSizeIndicator 1.0 LoopSizeIndicator.qml +OnAirTrack 1.0 OnAirTrack.qml +Progression 1.0 Progression.qml +TimeAndBeatloopIndicator 1.0 TimeAndBeatloopIndicator.qml +WaveformOverview 1.0 WaveformOverview.qml +SplashOff 1.0 SplashOff.qml +StockScreen 1.0 StockScreen.qml +AdvancedScreen 1.0 AdvancedScreen.qml diff --git a/res/controllers/engine-api.d.ts b/res/controllers/engine-api.d.ts index fd87b01ab6a4..b2bcde0b9bc8 100644 --- a/res/controllers/engine-api.d.ts +++ b/res/controllers/engine-api.d.ts @@ -1,3 +1,6 @@ +declare interface QtSlot void> { + connect(callback: F): void +} /** ScriptConnectionJSProxy */ @@ -31,10 +34,96 @@ declare interface ScriptConnection { readonly isConnected: boolean; } +/** JavascriptPlayerProxy */ + +declare interface Player { + /** Track's artist or empty string if no track is loaded */ + readonly artist: string + /** Track's title or empty string if no track is loaded */ + readonly title: string + /** Track's album or empty string if no track is loaded */ + readonly album: string + /** Track's album artist or empty string if no track is loaded */ + readonly albumArtist: string + /** Track's genre or empty string if no track is loaded */ + readonly genre: string + /** Track's composer or empty string if no track is loaded */ + readonly composer: string + /** Track's grouping or empty string if no track is loaded */ + readonly grouping: string + /** Track's year of release or empty string if no track is loaded */ + readonly year: string + /** Track's number or empty string if no track is loaded */ + readonly trackNumber: string + /** Total number of tracks in track's album or empty string if no track is loaded */ + readonly trackTotal: string + + /** Emitted when the track is unloaded from the player. */ + trackUnloaded: QtSlot<() => void> + + /** + * Emitted with the new track's artist when a new track is loaded + * to the player or when the current track's metadata change. + */ + artistChanged: QtSlot<(newArtist: string) => void> + /** + * Emitted with the new track title when a new track is loaded + * to the player or when the current track's metadata change. + */ + titleChanged: QtSlot<(newTitle: string) => void> + /** + * Emitted with the new track album when a new track is loaded + * to the player or when the current track's metadata change. + */ + albumChanged: QtSlot<(newAlbum: string) => void> + /** + * Emitted with the new track album artist when a new track is loaded + * to the player or when the current track's metadata change. + */ + albumArtistChanged: QtSlot<(newAlbumArtist: string) => void> + /** + * Emitted with the new track genre when a new track is loaded + * to the player or when the current track's metadata change. + */ + genreChanged: QtSlot<(newGenre: string) => void> + /** + * Emitted with the new track's composer when a new track is loaded + * to the player or when the current track's metadata change. + */ + composerChanged: QtSlot<(newComposer: string) => void> + /** + * Emitted with the new track's grouping when a new track is loaded + * to the player or when the current track's metadata change. + */ + groupingChanged: QtSlot<(newGrouping: string) => void> + /** + * Emitted with the new track year of release when a new track is loaded + * to the player or when the current track's metadata change. + */ + yearChanged: QtSlot<(newYear: string) => void> + /** + * Emitted with the new track number when a new track is loaded + * to the player or when the current track's metadata change. + */ + trackNumberChanged: QtSlot<(newTrackNumber: string) => void> + /** + * Emitted with the new number of track in track's album when a new track + * is loaded to the player or when the current track's metadata change. + */ + trackTotalChanged: QtSlot<(newTrackTotal: string) => void> +} /** ControllerScriptInterfaceLegacy */ declare namespace engine { + /** + * Obtain the player associated with this deck. + * @param group The midi group for this deck; e.g. '[Channel1]' for deck 1. + * @returns The player providing track information and signals, or undefined + * if not player associated with this group was found. + */ + function getPlayer(group: string): Player | undefined + type SettingValue = string | number | boolean; /** * Gets the value of a controller setting diff --git a/res/keyboard/cs_CZ.kbd.cfg b/res/keyboard/cs_CZ.kbd.cfg index d12ee77db1bc..d84ede8a4b6b 100644 --- a/res/keyboard/cs_CZ.kbd.cfg +++ b/res/keyboard/cs_CZ.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/da_DK.kbd.cfg b/res/keyboard/da_DK.kbd.cfg index 9255c56f1bf8..9bfcbd54e86a 100644 --- a/res/keyboard/da_DK.kbd.cfg +++ b/res/keyboard/da_DK.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/de_CH.kbd.cfg b/res/keyboard/de_CH.kbd.cfg index b4da055bdfe1..d080b43be88a 100644 --- a/res/keyboard/de_CH.kbd.cfg +++ b/res/keyboard/de_CH.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/de_DE.kbd.cfg b/res/keyboard/de_DE.kbd.cfg index b912eef63e6b..aa5a976d4c79 100644 --- a/res/keyboard/de_DE.kbd.cfg +++ b/res/keyboard/de_DE.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/el_GR.kbd.cfg b/res/keyboard/el_GR.kbd.cfg index 4674298283f4..3571c934a130 100644 --- a/res/keyboard/el_GR.kbd.cfg +++ b/res/keyboard/el_GR.kbd.cfg @@ -145,6 +145,8 @@ vinylcontrol_cueing Ctrl+Alt+Θ FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/en_US.kbd.cfg b/res/keyboard/en_US.kbd.cfg index 3b8050bfe722..d14ab1b04797 100644 --- a/res/keyboard/en_US.kbd.cfg +++ b/res/keyboard/en_US.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/es_ES.kbd.cfg b/res/keyboard/es_ES.kbd.cfg index cfe492491ec9..dc13861bd505 100644 --- a/res/keyboard/es_ES.kbd.cfg +++ b/res/keyboard/es_ES.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/fi_FI.kbd.cfg b/res/keyboard/fi_FI.kbd.cfg index 9ec9721d1382..c8c6fc6bed2d 100644 --- a/res/keyboard/fi_FI.kbd.cfg +++ b/res/keyboard/fi_FI.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/fr_CH.kbd.cfg b/res/keyboard/fr_CH.kbd.cfg index ed65a7de8a4a..5f3cbfd398a4 100644 --- a/res/keyboard/fr_CH.kbd.cfg +++ b/res/keyboard/fr_CH.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/fr_FR.kbd.cfg b/res/keyboard/fr_FR.kbd.cfg index 7c1f50d2077c..dd16215ff720 100644 --- a/res/keyboard/fr_FR.kbd.cfg +++ b/res/keyboard/fr_FR.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/it_IT.kbd.cfg b/res/keyboard/it_IT.kbd.cfg index 46063ceb6c3e..3df1bda30e19 100644 --- a/res/keyboard/it_IT.kbd.cfg +++ b/res/keyboard/it_IT.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+U FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/keyboard/ru_RU.kbd.cfg b/res/keyboard/ru_RU.kbd.cfg index f506f422c515..38263d70fa35 100644 --- a/res/keyboard/ru_RU.kbd.cfg +++ b/res/keyboard/ru_RU.kbd.cfg @@ -141,6 +141,8 @@ vinylcontrol_cueing Ctrl+Alt+Г FileMenu_LoadDeck1 Ctrl+o FileMenu_LoadDeck2 Ctrl+Shift+O FileMenu_Quit Ctrl+q +LibraryMenu_SearchInCurrentView Ctrl+f +LibraryMenu_SearchInAllTracks Ctrl+Shift+F LibraryMenu_NewPlaylist Ctrl+n LibraryMenu_NewCrate Ctrl+Shift+N ViewMenu_ShowSkinSettings Ctrl+1 diff --git a/res/linux/org.mixxx.Mixxx.metainfo.xml b/res/linux/org.mixxx.Mixxx.metainfo.xml index 45bf1bfb31c9..0e410f5b67af 100644 --- a/res/linux/org.mixxx.Mixxx.metainfo.xml +++ b/res/linux/org.mixxx.Mixxx.metainfo.xml @@ -96,6 +96,10 @@ Do not edit it manually. --> + + + +

diff --git a/res/qml/ActionButton.qml b/res/qml/ActionButton.qml new file mode 100644 index 000000000000..77e57dca5dd1 --- /dev/null +++ b/res/qml/ActionButton.qml @@ -0,0 +1,47 @@ +import QtQuick +import QtQuick.Controls 2.12 +import Qt5Compat.GraphicalEffects +import "Theme" + +AbstractButton { + id: root + enum Category { + None, + Danger, + Action + } + + property var category: ActionButton.Category.None + property alias label: labelField + + implicitHeight: 24 + background: Item { + Rectangle { + id: content + anchors.fill: parent + color: root.category == ActionButton.Category.Action ? '#2D4EA1' : root.category == ActionButton.Category.Danger ? '#7D3B3B' : '#3F3F3F' + radius: 4 + } + DropShadow { + anchors.fill: parent + source: content + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + color: "#80000000" + } + } + contentItem: Item { + Label { + id: labelField + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: Theme.fontFamily + font.capitalization: Font.AllUppercase + font.bold: true + font.pixelSize: Theme.buttonFontPixelSize + color: Theme.white + } + } +} diff --git a/res/qml/ActionPopup.qml b/res/qml/ActionPopup.qml new file mode 100644 index 000000000000..b8b30ea392e8 --- /dev/null +++ b/res/qml/ActionPopup.qml @@ -0,0 +1,69 @@ +import QtQml +import QtQuick +import QtQml.Models +import QtQuick.Layouts +import QtQuick.Controls 2.15 +import QtQuick.Shapes 1.12 +import Qt5Compat.GraphicalEffects +import "Theme" + +Popup { + id: root + closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent + width: 200 + + padding: 0 + margins: 0 + leftInset: 0 + + default property alias children: content.children + + contentItem: Item { + ColumnLayout { + spacing: 2 + anchors.fill: parent + anchors.leftMargin: 20 + id: content + } + } + + background: Item { + Item { + id: content3 + anchors.fill: parent + Shape { + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + implicitHeight: 20 + ShapePath { + strokeWidth: 0 + strokeColor: 'transparent' + fillColor: Theme.backgroundColor + fillRule: ShapePath.OddEvenFill + + startX: 0 + startY: 10 + PathLine { x: 20; y: 0 } + PathLine { x: 20; y: 20 } + PathLine { x: 0; y: 10 } + } + } + Rectangle { + anchors.fill: parent + anchors.right: parent.right + anchors.leftMargin: 20 + border.width: 0 + radius: 8 + color: Theme.backgroundColor + } + } + DropShadow { + anchors.fill: parent + source: content3 + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + color: "#80000000" + } + } +} diff --git a/res/qml/Button.qml b/res/qml/Button.qml index c01dd33c48d1..d9143853d4d7 100644 --- a/res/qml/Button.qml +++ b/res/qml/Button.qml @@ -6,116 +6,152 @@ import "Theme" AbstractButton { id: root - property color normalColor: Theme.buttonNormalColor required property color activeColor - property color pressedColor: activeColor property bool highlight: false + property color normalColor: Theme.buttonNormalColor + property color pressedColor: activeColor - implicitWidth: 52 implicitHeight: 26 + implicitWidth: 52 + + background: Item { + anchors.fill: parent + + Rectangle { + id: backgroundImage + anchors.fill: parent + color: Theme.darkGray2 + radius: 0 + } + InnerShadow { + id: bottomInnerEffect + anchors.fill: parent + color: "transparent" + horizontalOffset: -1 + radius: 8 + samples: 16 + source: backgroundImage + spread: 0.3 + verticalOffset: -1 + } + InnerShadow { + id: topInnerEffect + anchors.fill: parent + color: "transparent" + horizontalOffset: 1 + radius: 8 + samples: 16 + source: bottomInnerEffect + spread: 0.3 + verticalOffset: 1 + } + DropShadow { + id: dropEffect + anchors.fill: parent + color: Theme.darkGray + horizontalOffset: 0 + radius: 4.0 + source: topInnerEffect + verticalOffset: 0 + } + } + contentItem: Item { + anchors.fill: parent + + Glow { + id: labelGlow + anchors.fill: parent + color: label.color + radius: 1 + source: label + spread: 0.1 + } + Label { + id: label + anchors.fill: parent + color: root.normalColor + font.bold: true + font.capitalization: Font.AllUppercase + font.family: Theme.fontFamily + font.pixelSize: Theme.buttonFontPixelSize + horizontalAlignment: Text.AlignHCenter + text: root.text + verticalAlignment: Text.AlignVCenter + visible: root.text != null + } + Image { + id: image + anchors.centerIn: parent + asynchronous: true + fillMode: Image.PreserveAspectFit + height: icon.height + source: icon.source + visible: false + width: icon.width + } + ColorOverlay { + anchors.fill: image + antialiasing: true + color: root.normalColor + source: image + visible: icon.source != null + } + } states: [ State { name: "pressed" when: root.pressed PropertyChanges { + color: root.checked ? Theme.accentColor : Theme.darkGray3 target: backgroundImage - source: Theme.imgButtonPressed } - PropertyChanges { - target: label color: root.pressedColor + target: label } - PropertyChanges { target: labelGlow visible: true } - }, State { name: "active" when: (root.highlight || root.checked) && !root.pressed PropertyChanges { + color: Theme.accentColor target: backgroundImage - source: Theme.imgButton } - PropertyChanges { - target: label color: root.activeColor + target: label } - PropertyChanges { target: labelGlow visible: true } - + PropertyChanges { + color: Qt.darker(Theme.accentColor, 3) + target: bottomInnerEffect + } + PropertyChanges { + color: Qt.darker(Theme.accentColor, 3) + target: topInnerEffect + } }, State { name: "inactive" when: !root.checked && !root.highlight && !root.pressed PropertyChanges { - target: backgroundImage - source: Theme.imgButton - } - - PropertyChanges { - target: label color: root.normalColor + target: label } - PropertyChanges { target: labelGlow visible: false } } ] - - background: BorderImage { - id: backgroundImage - - anchors.fill: parent - horizontalTileMode: BorderImage.Stretch - verticalTileMode: BorderImage.Stretch - source: Theme.imgButton - - border { - top: 10 - left: 10 - right: 10 - bottom: 10 - } - } - - contentItem: Item { - anchors.fill: parent - - Glow { - id: labelGlow - - anchors.fill: parent - radius: 5 - spread: 0.1 - color: label.color - source: label - } - - Label { - id: label - - anchors.fill: parent - text: root.text - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font.family: Theme.fontFamily - font.capitalization: Font.AllUppercase - font.bold: true - font.pixelSize: Theme.buttonFontPixelSize - color: root.normalColor - } - } } diff --git a/res/qml/ComboBox.qml b/res/qml/ComboBox.qml index b1f36f5be5ef..ecf32cf871b7 100644 --- a/res/qml/ComboBox.qml +++ b/res/qml/ComboBox.qml @@ -1,6 +1,8 @@ import "." as Skin import QtQuick 2.12 import QtQuick.Controls 2.12 +import QtQuick.Shapes +import Qt5Compat.GraphicalEffects import "Theme" ComboBox { @@ -8,6 +10,7 @@ ComboBox { property alias popupWidth: popup.width property bool clip: false + property int popupMaxItem: 3 background: Skin.EmbeddedBackground { } @@ -17,12 +20,14 @@ ComboBox { required property int index - width: parent.width highlighted: root.highlightedIndex === this.index text: root.textAt(this.index) + padding: 4 + verticalPadding: 8 contentItem: Text { text: itemDlgt.text + font: root.font color: Theme.deckTextColor elide: Text.ElideRight verticalAlignment: Text.AlignVCenter @@ -30,15 +35,16 @@ ComboBox { background: Rectangle { radius: 5 - border.width: itemDlgt.highlighted ? 1 : 0 - border.color: Theme.deckLineColor + border.width: 1 + border.color: itemDlgt.highlighted ? Theme.deckLineColor : "transparent" color: "transparent" } } + indicator.width: 20 + contentItem: Text { leftPadding: 5 - rightPadding: root.indicator.width + root.spacing text: root.displayText font: root.font color: Theme.deckTextColor @@ -49,21 +55,71 @@ ComboBox { popup: Popup { id: popup - y: root.height - width: root.width - implicitHeight: contentItem.implicitHeight + y: root.height/2 + width: root.width - root.indicator.width / 2 + x: root.indicator.width / 2 + height: root.indicator.implicitHeight*Math.min(root.popupMaxItem, root.count) + root.indicator.width + + padding: 0 + + contentItem: Item { + Item { + id: content + anchors.fill: parent + Shape { + id: arrow + anchors.top: parent.top + anchors.right: parent.right + anchors.rightMargin: 3 + width: root.indicator.width-4 + height: width + antialiasing: true + layer.enabled: true + layer.samples: 4 + ShapePath { + fillColor: Theme.embeddedBackgroundColor + strokeColor: Theme.deckBackgroundColor + strokeWidth: 2 + startX: arrow.width/2; startY: 0 + fillRule: ShapePath.WindingFill + capStyle: ShapePath.RoundCap + PathLine { x: root.indicator.width; y: root.indicator.width } + PathLine { x: 0; y: root.indicator.width } + PathLine { x: (root.indicator.width) / 2; y: 0 } + } + } + Skin.EmbeddedBackground { + anchors.topMargin: root.indicator.width-6 + anchors.fill: parent + ListView { + clip: true + + anchors.fill: parent - contentItem: ListView { - clip: true - implicitHeight: contentHeight - model: root.popup.visible ? root.delegateModel : null - currentIndex: root.highlightedIndex + bottomMargin: 0 + leftMargin: 0 + rightMargin: 0 + topMargin: 0 - ScrollIndicator.vertical: ScrollIndicator { + model: root.popup.visible ? root.delegateModel : null + currentIndex: root.highlightedIndex + + ScrollBar.vertical: ScrollBar { + policy: ScrollBar.AlwaysOn + } + } + } + } + DropShadow { + anchors.fill: parent + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + color: "#000000" + source: content } } - background: Skin.EmbeddedBackground { - } + background: Item {} } } diff --git a/res/qml/ControlSlider.qml b/res/qml/ControlSlider.qml index 0afd7021c0d4..82d2709e60bc 100644 --- a/res/qml/ControlSlider.qml +++ b/res/qml/ControlSlider.qml @@ -2,15 +2,19 @@ import "." as Skin import Mixxx 1.0 as Mixxx import QtQuick 2.12 -Skin.Slider { - property alias group: control.group - property alias key: control.key +Skin.Fader { + id: root + + required property string group + required property string key value: control.parameter onMoved: control.parameter = value Mixxx.ControlProxy { id: control + group: root.group + key: root.key } TapHandler { diff --git a/res/qml/DeckInfoBar.qml b/res/qml/DeckInfoBar.qml index 8dc7326dc1e4..cedb6e2ba965 100644 --- a/res/qml/DeckInfoBar.qml +++ b/res/qml/DeckInfoBar.qml @@ -11,6 +11,7 @@ Rectangle { required property string group required property int rightColumnWidth property var deckPlayer: Mixxx.PlayerManager.getPlayer(group) + property var currentTrack: deckPlayer.currentTrack property color lineColor: Theme.deckLineColor border.width: 2 @@ -26,7 +27,7 @@ Rectangle { anchors.bottom: parent.bottom anchors.margins: 5 width: height - source: root.deckPlayer.coverArtUrl + source: root.currentTrack.coverArtUrl visible: false asynchronous: true } @@ -95,7 +96,7 @@ Rectangle { Skin.EmbeddedText { id: infoBarTitle - text: root.deckPlayer.title + text: root.currentTrack.title anchors.top: infoBarHSeparator1.top anchors.left: infoBarVSeparator.left anchors.right: infoBarHSeparator1.left @@ -119,7 +120,7 @@ Rectangle { Skin.EmbeddedText { id: infoBarArtist - text: root.deckPlayer.artist + text: root.currentTrack.artist anchors.top: infoBarVSeparator.bottom anchors.left: infoBarVSeparator.left anchors.right: infoBarHSeparator1.left @@ -144,7 +145,7 @@ Rectangle { Skin.EmbeddedText { id: infoBarKey - text: root.deckPlayer.keyText + text: root.currentTrack.keyText anchors.top: infoBarHSeparator1.top anchors.bottom: infoBarVSeparator.top anchors.right: infoBarHSeparator2.left @@ -206,11 +207,11 @@ Rectangle { GradientStop { position: 0 color: { - const trackColor = root.deckPlayer.color; + const trackColor = root.currentTrack.color; if (!trackColor.valid) return Theme.deckBackgroundColor; - return Qt.darker(root.deckPlayer.color, 2); + return Qt.darker(root.currentTrack.color, 2); } } diff --git a/res/qml/Fader.qml b/res/qml/Fader.qml new file mode 100644 index 000000000000..bcae15fdde9b --- /dev/null +++ b/res/qml/Fader.qml @@ -0,0 +1,49 @@ +import Mixxx.Controls 1.0 as MixxxControls +import Qt5Compat.GraphicalEffects +import QtQuick 2.12 +import "Theme" + +MixxxControls.Slider { + id: root + + property alias fg: handleImage.source + property alias bg: backgroundImage.source + + bar: true + barMargin: 10 + implicitWidth: backgroundImage.implicitWidth + implicitHeight: backgroundImage.implicitHeight + + Image { + id: handleImage + + visible: false + source: Theme.imgSliderHandle + fillMode: Image.PreserveAspectFit + } + + handle: Item { + id: handleItem + + width: handleImage.paintedWidth + height: handleImage.paintedHeight + x: root.horizontal ? (root.visualPosition * (root.width - width)) : ((root.width - width) / 2) + y: root.vertical ? (root.visualPosition * (root.height - height)) : ((root.height - height) / 2) + + DropShadow { + source: handleImage + width: parent.width + 5 + height: parent.height + 5 + radius: 5 + verticalOffset: 5 + color: "#80000000" + } + } + + background: Image { + id: backgroundImage + + anchors.fill: parent + anchors.margins: root.barMargin + } +} diff --git a/res/qml/FormButton.qml b/res/qml/FormButton.qml new file mode 100644 index 000000000000..ac6ac3ad6ce8 --- /dev/null +++ b/res/qml/FormButton.qml @@ -0,0 +1,175 @@ +import Qt5Compat.GraphicalEffects +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import "Theme" + +AbstractButton { + id: root + + property color normalColor: Theme.white + property color backgroundColor: "#3F3F3F" + property color activeColor: Theme.deckActiveColor + property color pressedColor: activeColor + property bool highlight: false + + implicitWidth: 98 + implicitHeight: 20 + states: [ + State { + name: "pressed" + when: root.pressed + + PropertyChanges { + backgroundImage.color: root.checked ? "#3a60be" : root.backgroundColor + } + + PropertyChanges { + label.color: root.pressedColor + } + + PropertyChanges { + bottomInnerEffect.color: '#353535' + } + + PropertyChanges { + topInnerEffect.color: '#353535' + } + + PropertyChanges { + labelGlow.visible: true + } + + }, + State { + name: "active" + when: (root.highlight || root.checked) && !root.pressed + + PropertyChanges { + backgroundImage.color: "#2D4EA1" + } + + PropertyChanges { + label.color: root.activeColor + } + + PropertyChanges { + bottomInnerEffect.color: '#353535' + } + + PropertyChanges { + topInnerEffect.color: '#353535' + } + + PropertyChanges { + labelGlow.visible: true + } + + }, + State { + name: "inactive" + when: !root.checked && !root.highlight && !root.pressed + + PropertyChanges { + label.color: root.normalColor + } + + PropertyChanges { + labelGlow.visible: false + } + } + ] + + background: Item { + anchors.fill: parent + + Rectangle { + id: backgroundImage + visible: false + + anchors.fill: parent + color: root.backgroundColor + radius: 4 + } + InnerShadow { + id: bottomInnerEffect + anchors.fill: parent + radius: 8 + samples: 16 + spread: 0.3 + horizontalOffset: -1 + verticalOffset: -1 + color: "transparent" + source: backgroundImage + } + InnerShadow { + id: topInnerEffect + anchors.fill: parent + radius: 8 + samples: 16 + spread: 0.3 + horizontalOffset: 1 + verticalOffset: 1 + color: "transparent" + source: bottomInnerEffect + } + + DropShadow { + id: dropEffect + anchors.fill: parent + horizontalOffset: 0 + verticalOffset: 0 + radius: 4.0 + color: "#0E0E0E" + source: topInnerEffect + } + } + + contentItem: Item { + anchors.fill: parent + + Glow { + id: labelGlow + + anchors.fill: parent + radius: 1 + spread: 0.1 + color: label.color + source: label + } + + Label { + id: label + + visible: root.text != null + + anchors.fill: parent + text: root.text + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: Theme.fontFamily + font.capitalization: Font.AllUppercase + font.bold: true + font.pixelSize: Theme.buttonFontPixelSize + color: root.normalColor + } + Image { + id: image + + height: icon.height + width: icon.width + anchors.centerIn: parent + + source: icon.source + fillMode: Image.PreserveAspectFit + asynchronous: true + visible: false + } + ColorOverlay { + anchors.fill: image + source: image + visible: icon.source != null + color: root.normalColor + antialiasing: true + } + } +} diff --git a/res/qml/InputField.qml b/res/qml/InputField.qml new file mode 100644 index 000000000000..43dc1cc2ffe4 --- /dev/null +++ b/res/qml/InputField.qml @@ -0,0 +1,48 @@ +import QtQuick +import QtQuick.Controls 2.15 +import Qt5Compat.GraphicalEffects +import "Theme" + +FocusScope { + id: root + + property alias input: inputField + + Rectangle { + id: backgroundInput + radius: 4 + color: '#232323' + anchors.fill: parent + } + DropShadow { + id: dropSetting + anchors.fill: parent + horizontalOffset: 0 + verticalOffset: 0 + radius: 4.0 + color: "#000000" + source: backgroundInput + } + InnerShadow { + id: effect2 + anchors.fill: parent + source: dropSetting + spread: 0.2 + radius: 12 + samples: 24 + horizontalOffset: 0 + verticalOffset: 0 + color: "#353535" + } + TextInput { + id: inputField + anchors.fill: parent + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + anchors.margins: 7 + focus: true + clip: true + color: acceptableInput ? "#FFFFFF" : "#7D3B3B" + horizontalAlignment: TextInput.AlignLeft + } +} diff --git a/res/qml/Library.qml b/res/qml/Library.qml index 3f94320aac26..7be4f4ade0a5 100644 --- a/res/qml/Library.qml +++ b/res/qml/Library.qml @@ -1,140 +1,115 @@ +import "." as Skin import Mixxx 1.0 as Mixxx -import QtQuick 2.12 +import Qt.labs.qmlmodels +import QtQml +import QtQuick +import QtQml.Models +import QtQuick.Layouts +import QtQuick.Controls 2.15 +import QtQuick.Shapes 1.6 import "Theme" +import "Library" as LibraryComponent Item { - Rectangle { - color: Theme.deckBackgroundColor - anchors.fill: parent - - LibraryControl { - id: libraryControl - - onMoveVertical: (offset) => { - listView.moveSelectionVertical(offset); - } - onLoadSelectedTrack: (group, play) => { - listView.loadSelectedTrack(group, play); - } - onLoadSelectedTrackIntoNextAvailableDeck: (play) => { - listView.loadSelectedTrackIntoNextAvailableDeck(play); - } - onFocusWidgetChanged: { - switch (focusWidget) { - case FocusedWidgetControl.WidgetKind.LibraryView: - listView.forceActiveFocus(); - break; - } - } - } + id: root - ListView { - id: listView + property var sidebar: librarySources.sidebar() - function moveSelectionVertical(value) { - if (value == 0) - return ; - - const rowCount = model.rowCount(); - if (rowCount == 0) - return ; - - currentIndex = Mixxx.MathUtils.positiveModulo(currentIndex + value, rowCount); - } - - function loadSelectedTrackIntoNextAvailableDeck(play) { - const url = model.get(currentIndex).fileUrl; - if (!url) - return ; - - Mixxx.PlayerManager.loadLocationUrlIntoNextAvailableDeck(url, play); - } - - function loadSelectedTrack(group, play) { - const url = model.get(currentIndex).fileUrl; - if (!url) - return ; - - const player = Mixxx.PlayerManager.getPlayer(group); - if (!player) - return ; + LibraryComponent.SourceTree { + id: librarySources + } - player.loadTrackFromLocationUrl(url, play); - } + SplitView { + id: librarySplitView + orientation: Qt.Horizontal + anchors.fill: parent - anchors.fill: parent - anchors.margins: 10 + handle: Rectangle { + id: handleDelegate + implicitWidth: 8 + implicitHeight: 8 + color: Theme.panelSplitterBackground clip: true - keyNavigationWraps: true - highlightMoveDuration: 250 - highlightResizeDuration: 50 - model: Mixxx.Library.model - Keys.onPressed: (event) => { - switch (event.key) { - case Qt.Key_Enter: - case Qt.Key_Return: - listView.loadSelectedTrackIntoNextAvailableDeck(false); - break; + property color handleColor: SplitHandle.pressed || SplitHandle.hovered ? Theme.panelSplitterHandleActive : Theme.panelSplitterHandle + property int handleSize: SplitHandle.pressed || SplitHandle.hovered ? 6 : 5 + + ColumnLayout { + anchors.centerIn: parent + Repeater { + model: 3 + Rectangle { + width: handleSize + height: handleSize + radius: handleSize + color: handleColor + } } } - delegate: Item { - id: itemDlgt - - required property int index - required property url fileUrl - required property string artist - required property string title - - implicitWidth: listView.width - implicitHeight: 30 - - Text { - anchors.verticalCenter: parent.verticalCenter - text: itemDlgt.artist + " - " + itemDlgt.title - color: (listView.currentIndex == itemDlgt.index && listView.activeFocus) ? Theme.blue : Theme.deckTextColor + containmentMask: Item { + x: (handleDelegate.width - width) / 2 + width: 8 + height: librarySplitView.height + } + } - Behavior on color { - ColorAnimation { - duration: listView.highlightMoveDuration + SplitView { + id: sideBarSplitView + SplitView.minimumWidth: 100 + SplitView.preferredWidth: 415 + SplitView.maximumWidth: 600 + + orientation: Qt.Vertical + + handle: Rectangle { + id: handleDelegate + implicitWidth: 8 + implicitHeight: 8 + color: Theme.panelSplitterBackground + clip: true + property color handleColor: SplitHandle.pressed || SplitHandle.hovered ? Theme.panelSplitterHandleActive : Theme.panelSplitterHandle + property int handleSize: SplitHandle.pressed || SplitHandle.hovered ? 6 : 5 + + RowLayout { + anchors.centerIn: parent + Repeater { + model: 3 + Rectangle { + width: handleSize + height: handleSize + radius: handleSize + color: handleColor } } } - Image { - id: dragItem - - Drag.active: dragArea.drag.active - Drag.dragType: Drag.Automatic - Drag.supportedActions: Qt.CopyAction - Drag.mimeData: { - "text/uri-list": itemDlgt.fileUrl, - "text/plain": itemDlgt.fileUrl - } - anchors.fill: parent + containmentMask: Item { + x: (handleDelegate.width - width) / 2 + height: 8 + width: sideBarSplitView.width } + } + LibraryComponent.Browser { + SplitView.minimumHeight: 200 + SplitView.preferredHeight: 500 + SplitView.fillHeight: true - MouseArea { - id: dragArea - - anchors.fill: parent - drag.target: dragItem - onPressed: { - listView.forceActiveFocus(); - listView.currentIndex = itemDlgt.index; - parent.grabToImage((result) => { - dragItem.Drag.imageSource = result.url; - }); - } - onDoubleClicked: listView.loadSelectedTrackIntoNextAvailableDeck(false) - } + model: root.sidebar } - highlight: Rectangle { - border.color: listView.activeFocus ? Theme.blue : Theme.deckTextColor - border.width: 1 - color: "transparent" + Skin.PreviewDeck { + SplitView.minimumHeight: 100 + SplitView.preferredHeight: 100 + SplitView.maximumHeight: 200 } } + LibraryComponent.TrackList { + SplitView.fillHeight: true + + // FIXME: this is necessary to prevent the header label to render outside of the table when horizontally scrolling: https://github.com/mixxxdj/mixxx/pull/14514#issuecomment-3311914346 + clip: true + + model: root.sidebar.tracklist + } } } diff --git a/res/qml/Library/Browser.qml b/res/qml/Library/Browser.qml new file mode 100644 index 000000000000..3e28934e6b8a --- /dev/null +++ b/res/qml/Library/Browser.qml @@ -0,0 +1,223 @@ +import ".." as Skin +import Mixxx 1.0 as Mixxx +import Qt.labs.qmlmodels +import QtQml +import QtQuick +import QtQml.Models +import QtQuick.Layouts +import QtQuick.Controls 2.15 +import QtQuick.Shapes 1.12 +import Qt5Compat.GraphicalEffects +import "../Theme" + +Rectangle { + id: root + + required property var model + readonly property var featureSelection: ItemSelectionModel {} + + color: Theme.backgroundColor + + Component.onCompleted: { + root.model.activate(root.model.index(0, 0)) + } + + Rectangle { + anchors.fill: parent + anchors.topMargin: 7 + anchors.leftMargin: 7 + anchors.rightMargin: 25 + anchors.bottomMargin: 40 + color: Theme.sunkenBackgroundColor + + ColumnLayout { + anchors.fill: parent + spacing: 0 + ScrollView { + Layout.fillHeight: true + Layout.fillWidth: true + + TreeView { + id: featureView + Layout.fillWidth: true + + clip: true + + model: root.model + + selectionModel: featureSelection + + delegate: FocusScope { + required property string label + required property var icon + + readonly property real indentation: 40 + readonly property real padding: 5 + + // Assigned to by TreeView: + required property TreeView treeView + required property bool isTreeNode + required property bool expanded + required property int hasChildren + required property int depth + required property int row + required property int column + required property bool current + // FIXME The signature for that function has changed after Qt 6.4.2 (currently shipped on Ubuntu 24.04) + // See https://github.com/mixxxdj/mixxx/pull/14514#issuecomment-2770811094 for further details + readonly property var index: treeView.modelIndex(column, row) + + implicitWidth: treeView.width + implicitHeight: depth == 0 ? 42 : 35 + + // Rotate indicator when expanded by the user + // (requires TreeView to have a selectionModel) + property Animation indicatorAnimation: NumberAnimation { + target: indicator + property: "rotation" + from: expanded ? 0 : 90 + to: expanded ? 90 : 0 + duration: 100 + easing.type: Easing.OutQuart + } + TableView.onPooled: indicatorAnimation.complete() + TableView.onReused: if (current) indicatorAnimation.start() + onExpandedChanged: indicator.rotation = expanded ? 90 : 0 + + Rectangle { + id: background + anchors.fill: parent + color: depth == 0 ? Theme.darkGray3 : 'transparent' + + MouseArea { + id: rowMouseArea + anchors.fill: parent + hoverEnabled: true + acceptedButtons: Qt.LeftButton | Qt.RightButton + onClicked: (event) => { + treeView.selectionModel.select(treeView.selectionModel.model.index(row, 0), ItemSelectionModel.Rows | ItemSelectionModel.Select | ItemSelectionModel.Clear | ItemSelectionModel.Current); + treeView.model.activate(index) + if (isTreeNode && hasChildren) { + treeView.toggleExpanded(row) + } + event.accepted = true + } + } + + Rectangle { + width: 25 + anchors.left: parent.left + anchors.leftMargin: 10 + 15 * depth + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.right: parent.right + color: current ? Theme.midGray : 'transparent' + + Repeater { + id: lineIcon + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + model: !!icon ? 1 : 0 + Image { + visible: depth == 0 && icon + source: icon + height: 25 + width: 25 + } + } + + Label { + id: indicator + Layout.preferredWidth: indicator.implicitWidth + visible: isTreeNode && hasChildren + color: Theme.textColor + text: "▶" + + anchors { + left: parent.left + verticalCenter: lineIcon.bottom + } + } + + Label { + id: labelItem + anchors.left: parent.left + anchors.leftMargin: depth == 0 && row == 0 ? 10 : 34 + anchors.verticalCenter: parent.verticalCenter + clip: true + font.weight: depth == 0 ? Font.Bold : Font.Medium + font.pixelSize: 14 + text: label + color: Theme.textColor + } + Item { + visible: rowMouseArea.containsMouse && isTreeNode && hasChildren + id: newItem + height: parent.height + anchors { + verticalCenter: parent.verticalCenter + right: parent.right + rightMargin: 10 + } + Rectangle { + width: 30 + height: parent.height + anchors.centerIn: parent + gradient: Gradient { + orientation: Gradient.Horizontal + + GradientStop { + position: 1 + color: Theme.sunkenBackgroundColor + } + + GradientStop { + position: 0 + color: 'transparent' + } + } + } + Rectangle { + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + anchors.rightMargin: 5 + width: 20 + height: 20 + border.width: 2 + border.color: Theme.white + radius: 20 + color: 'transparent' + Shape { + anchors.fill: parent + anchors.margins: 4 + ShapePath { + strokeWidth: 2 + fillColor: Theme.white + capStyle: ShapePath.RoundCap + + startX: 6 + startY: 0 + PathLine { x: 6; y: 12 } + PathLine { x: 6; y: 8 } + } + ShapePath { + strokeWidth: 2 + fillColor: Theme.white + capStyle: ShapePath.RoundCap + + startX: 0 + startY: 6 + PathLine { y: 6; x: 12 } + PathLine { y: 6; x: 8 } + } + } + } + } + } + } + } + } + } + } + } +} diff --git a/res/qml/Library/Cell.qml b/res/qml/Library/Cell.qml new file mode 100644 index 000000000000..d93e57a0e765 --- /dev/null +++ b/res/qml/Library/Cell.qml @@ -0,0 +1,104 @@ +import Qt5Compat.GraphicalEffects +import QtQuick +import QtQuick.Layouts +import "../Theme" + +Rectangle { + id: root + + readonly property alias dragImage: dragImageEffect + + anchors.fill: parent + + color: selected ? Theme.accent : (row % 2 == 0 ? Theme.sunkenBackgroundColor : Theme.backgroundColor) + + Drag.dragType: Drag.Automatic + Drag.supportedActions: Qt.CopyAction + Drag.mimeData: { + "text/uri-list": file_url.toString(), + "text/plain": file_url.toString(), + } + Item { + id: dragImageSource + width: 190 + height: 85 + visible: false + Rectangle { + color: Theme.sunkenBackgroundColor + anchors { + left: parent.left + right: parent.right + top: parent.top + bottom: parent.bottom + margins: 5 + } + radius: 12 + RowLayout { + anchors.fill: parent + Image { + id: cover + Layout.fillHeight: true + Layout.preferredWidth: cover_art ? 75 : 0 + fillMode: Image.PreserveAspectFit + source: cover_art + clip: true + asynchronous: true + } + ColumnLayout { + Layout.fillWidth: true + Layout.fillHeight: true + Text { + text: track ? track.title : 'Unknown title' + color: Theme.textColor + } + Text { + text: track ? track.artist : 'Unknown artist' + color: Theme.midGray + } + } + } + Rectangle { + width: 20 + anchors { + top: parent.top + right: parent.right + bottom:parent.bottom + } + gradient: Gradient { + orientation: Gradient.Horizontal + + GradientStop { + position: 1 + color: Theme.darkGray + } + + GradientStop { + position: 0 + color: 'transparent' + } + } + } + } + } + DropShadow { + id: dragImageEffect + visible: false + anchors.fill: dragImageSource + source: dragImageSource + horizontalOffset: 0 + verticalOffset: 0 + radius: 10.0 + color: "#80000000" + } + + Rectangle { + id: border + color: Theme.darkGray2 + width: 1 + anchors { + top: parent.top + bottom: parent.bottom + right: parent.right + } + } +} diff --git a/res/qml/LibraryControl.qml b/res/qml/Library/Control.qml similarity index 68% rename from res/qml/LibraryControl.qml rename to res/qml/Library/Control.qml index 353e4b8bb21e..a5da4c133810 100644 --- a/res/qml/LibraryControl.qml +++ b/res/qml/Library/Control.qml @@ -1,3 +1,5 @@ +import ".." as Skin +import "." as LibraryComponent import Mixxx 1.0 as Mixxx import QtQuick 2.12 @@ -10,17 +12,17 @@ Item { signal loadSelectedTrack(string group, bool play) signal loadSelectedTrackIntoNextAvailableDeck(bool play) - FocusedWidgetControl { + Skin.FocusedWidgetControl { id: focusedWidgetControl - Component.onCompleted: this.value = FocusedWidgetControl.WidgetKind.LibraryView + Component.onCompleted: this.value = Skin.FocusedWidgetControl.WidgetKind.LibraryView } Mixxx.ControlProxy { group: "[Library]" key: "GoToItem" onValueChanged: (value) => { - if (value != 0 && root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView) + if (value != 0 && root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView) root.loadSelectedTrackIntoNextAvailableDeck(false); } } @@ -29,7 +31,7 @@ Item { group: "[Playlist]" key: "LoadSelectedIntoFirstStopped" onValueChanged: (value) => { - if (value != 0 && root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView) + if (value != 0 && root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView) root.loadSelectedTrackIntoNextAvailableDeck(false); } } @@ -39,7 +41,7 @@ Item { key: "SelectTrackKnob" onValueChanged: (value) => { if (value != 0) { - root.focusWidget = FocusedWidgetControl.WidgetKind.LibraryView; + root.focusWidget = Skin.FocusedWidgetControl.WidgetKind.LibraryView; root.moveVertical(value); } } @@ -50,7 +52,7 @@ Item { key: "SelectPrevTrack" onValueChanged: (value) => { if (value != 0) { - root.focusWidget = FocusedWidgetControl.WidgetKind.LibraryView; + root.focusWidget = Skin.FocusedWidgetControl.WidgetKind.LibraryView; root.moveVertical(-1); } } @@ -61,7 +63,7 @@ Item { key: "SelectNextTrack" onValueChanged: (value) => { if (value != 0) { - root.focusWidget = FocusedWidgetControl.WidgetKind.LibraryView; + root.focusWidget = Skin.FocusedWidgetControl.WidgetKind.LibraryView; root.moveVertical(1); } } @@ -71,7 +73,7 @@ Item { group: "[Library]" key: "MoveVertical" onValueChanged: (value) => { - if (value != 0 && root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView) + if (value != 0 && root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView) root.moveVertical(value); } } @@ -80,7 +82,7 @@ Item { group: "[Library]" key: "MoveUp" onValueChanged: (value) => { - if (value != 0 && root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView) + if (value != 0 && root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView) root.moveVertical(-1); } } @@ -89,7 +91,7 @@ Item { group: "[Library]" key: "MoveDown" onValueChanged: (value) => { - if (value != 0 && root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView) + if (value != 0 && root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView) root.moveVertical(1); } } @@ -104,11 +106,11 @@ Item { Instantiator { model: numDecksControl.value - delegate: LibraryControlLoadSelectedTrackHandler { + delegate: LibraryComponent.ControlLoadSelectedTrackHandler { required property int index group: "[Channel" + (index + 1) + "]" - enabled: root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView + enabled: root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView onLoadTrackRequested: (play) => { root.loadSelectedTrack(this.group, play); } @@ -125,11 +127,11 @@ Item { Instantiator { model: numPreviewDecksControl.value - delegate: LibraryControlLoadSelectedTrackHandler { + delegate: LibraryComponent.ControlLoadSelectedTrackHandler { required property int index group: "[PreviewDeck" + (index + 1) + "]" - enabled: root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView + enabled: root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView onLoadTrackRequested: (play) => { root.loadSelectedTrack(this.group, play); } @@ -146,11 +148,11 @@ Item { Instantiator { model: numSamplersControl.value - delegate: LibraryControlLoadSelectedTrackHandler { + delegate: LibraryComponent.ControlLoadSelectedTrackHandler { required property int index group: "[Sampler" + (index + 1) + "]" - enabled: root.focusWidget == FocusedWidgetControl.WidgetKind.LibraryView + enabled: root.focusWidget == Skin.FocusedWidgetControl.WidgetKind.LibraryView onLoadTrackRequested: (play) => { root.loadSelectedTrack(this.group, play); } diff --git a/res/qml/LibraryControlLoadSelectedTrackHandler.qml b/res/qml/Library/ControlLoadSelectedTrackHandler.qml similarity index 100% rename from res/qml/LibraryControlLoadSelectedTrackHandler.qml rename to res/qml/Library/ControlLoadSelectedTrackHandler.qml diff --git a/res/qml/Library/SourceTree.qml b/res/qml/Library/SourceTree.qml new file mode 100644 index 000000000000..470a03da7101 --- /dev/null +++ b/res/qml/Library/SourceTree.qml @@ -0,0 +1,194 @@ +import QtQuick +import Mixxx 1.0 as Mixxx +import "." as LibraryComponent +import "../Theme" + +Mixxx.LibrarySourceTree { + id: root + + component DefaultDelegate: LibraryComponent.Cell { + id: cell + readonly property var caps: capabilities + // FIXME: https://bugreports.qt.io/browse/QTBUG-111789 + Binding on Drag.active { + value: dragArea.drag.active + // This delays the update until the even queue is cleared + // preventing any potential oscillations causing a loop + delayed: true + } + + LibraryComponent.Track { + id: dragArea + anchors.fill: parent + capabilities: cell.caps + + onPressed: { + if (pressedButtons == Qt.LeftButton) { + tableView.selectionModel.selectRow(row); + parent.dragImage.grabToImage((result) => { + parent.Drag.imageSource = result.url; + }, Qt.size(parent.dragImage.width, parent.dragImage.height)); + } + } + onDoubleClicked: { + tableView.selectionModel.selectRow(row); + tableView.loadSelectedTrackIntoNextAvailableDeck(false); + } + } + + Text { + id: value + anchors.fill: parent + anchors.leftMargin: 15 + font.pixelSize: 14 + text: display ?? "" + verticalAlignment: Text.AlignVCenter + elide: Text.ElideRight + color: Theme.textColor + } + } + + defaultColumns: [ + Mixxx.TrackListColumn { + preferredWidth: 110 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Album + + delegate: Rectangle { + color: decoration + implicitHeight: 30 + + Image { + anchors.fill: parent + fillMode: Image.PreserveAspectCrop + source: cover_art + clip: true + asynchronous: true + } + } + }, + // FIXME: WaveformOverview is currently disabled due to performance limitation. Like for the legacy UI, a cache likely needs to be implemented to help + // Mixxx.TrackListColumn { + // label: qsTr("Preview") + // fillSpan: 3 + // preferredWidth: 300 + // columnIdx: Mixxx.TrackListColumn.SQLColumns.Title + + // delegate: LibraryCell { + // // implicitHeight: 30 + // anchors.fill: parent + + // readonly property var trackProxy: track + + // Drag.active: dragArea.drag.active + // Drag.dragType: Drag.Automatic + // Drag.supportedActions: Qt.CopyAction + // Drag.mimeData: { + // "text/uri-list": file_url, + // "text/plain": file_url + // } + + // LibraryComponent.Track { + // id: dragArea + // anchors.fill: parent + // capabilities: parent.capabilities + + // onPressed: { + // if (pressedButtons == Qt.LeftButton) { + // tableView.selectionModel.selectRow(row); + // parent.dragImage.grabToImage((result) => { + // parent.Drag.imageSource = result.url; + // }); + // } else { + // } + // } + // onDoubleClicked: { + // tableView.selectionModel.selectRow(row); + // tableView.loadSelectedTrackIntoNextAvailableDeck(false); + // } + // } + + // Mixxx.WaveformOverview { + // anchors.fill: parent + // channels: Mixxx.WaveformOverview.Channels.LeftChannel + // renderer: Mixxx.WaveformOverview.Renderer.Filtered + // colorHigh: Theme.white + // colorMid: Theme.blue + // colorLow: Theme.green + // track: trackProxy + // } + // Rectangle { + // id: border + // color: Theme.darkGray2 + // width: 1 + // anchors { + // top: parent.top + // bottom: parent.bottom + // right: parent.right + // } + // } + // } + + // }, + Mixxx.TrackListColumn { + label: qsTr("Title") + fillSpan: 3 + columnIdx: Mixxx.TrackListColumn.SQLColumns.Title + + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("Artist") + fillSpan: 2 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Artist + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("Album") + fillSpan: 1 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Album + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("Year") + preferredWidth: 80 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Year + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("Bpm") + preferredWidth: 60 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Bpm + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("Key") + preferredWidth: 70 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Key + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("File Type") + preferredWidth: 70 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.FileType + delegate: DefaultDelegate { } + }, + Mixxx.TrackListColumn { + label: qsTr("Bitrate") + preferredWidth: 70 + + columnIdx: Mixxx.TrackListColumn.SQLColumns.Bitrate + delegate: DefaultDelegate { } + } + ] + Mixxx.LibraryAllTrackSource { + label: qsTr("All...") + columns: root.defaultColumns + } +} diff --git a/res/qml/Library/Track.qml b/res/qml/Library/Track.qml new file mode 100644 index 000000000000..253c4a188b9e --- /dev/null +++ b/res/qml/Library/Track.qml @@ -0,0 +1,131 @@ +import Mixxx 1.0 as Mixxx +import QtQuick +import QtQuick.Controls 2.15 +import "../Theme" + +MouseArea { + id: dragArea + + required property var capabilities + + readonly property var library: Mixxx.Library + + drag.target: value + acceptedButtons: Qt.LeftButton | Qt.RightButton + onClicked: (mouse) => { + if (mouse.button === Qt.RightButton) + contextMenu.popup() + } + onPressAndHold: (mouse) => { + if (mouse.source === Qt.MouseEventNotSynthesized) + contextMenu.popup() + } + + function hasCapabilities(caps) { + return (dragArea.capabilities & caps) == caps; + } + + Menu { + id: contextMenu + title: qsTr("File") + + Menu { + title: qsTr("Load to") + enabled: { + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.LoadToDeck) || + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.LoadToSampler) || + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.LoadToPreviewDeck) + } + + Menu { + id: loadToDeckMenu + title: qsTr("Deck") + enabled: hasCapabilities(Mixxx.LibraryTrackListModel.Capability.LoadToDeck) + Instantiator { + model: 4 + delegate: MenuItem { + text: qsTr("Deck %1").arg(modelData+1) + onTriggered: Mixxx.PlayerManager.getPlayer(`[Channel${modelData+1}]`).loadTrack(track) + } + + onObjectAdded: (index, object) => loadToDeckMenu.insertItem(index, object) + onObjectRemoved: (index, object) => loadToDeckMenu.removeItem(object) + } + } + + Menu { + title: qsTr("Sampler") + enabled: hasCapabilities(Mixxx.LibraryTrackListModel.Capability.LoadToSampler) + } + + // Instantiator { + // id: recentFilesInstantiator + // model: settings.recentFiles + // delegate: MenuItem { + // text: settings.displayableFilePath(modelData) + // onTriggered: loadFile(modelData) + // } + + // onObjectAdded: (index, object) => recentFilesMenu.insertItem(index, object) + // onObjectRemoved: (index, object) => recentFilesMenu.removeItem(object) + // } + } + + Menu { + id: addToPlaylistMenu + title: qsTr("Add to playlists") + enabled: { + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.AddToTrackSet) + } + + MenuSeparator {} + + MenuItem { + enabled: false // TODO implement + text: qsTr("Create New Playlist") + } + } + + Menu { + id: addToCrateMenu + title: qsTr("Crates") + enabled: { + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.AddToTrackSet) + } + + MenuSeparator {} + + MenuItem { + enabled: false // TODO implement + text: qsTr("Create New Crate") + } + } + + Menu { + id: analyzeMenu + title: qsTr("Analyze") + enabled: { + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.EditMetadata)|| + hasCapabilities(Mixxx.LibraryTrackListModel.Capability.Analyze) + } + MenuItem { + text: qsTr("Analyze") + onTriggered: { + library.analyze(track) + } + } + MenuItem { + enabled: false // TODO implement + text: qsTr("Reanalyze") + } + MenuItem { + enabled: false // TODO implement + text: qsTr("Reanalyze (constant BPM)") + } + MenuItem { + enabled: false // TODO implement + text: qsTr("Reanalyze (variable BPM)") + } + } + } +} diff --git a/res/qml/Library/TrackList.qml b/res/qml/Library/TrackList.qml new file mode 100644 index 000000000000..715b7a6323e4 --- /dev/null +++ b/res/qml/Library/TrackList.qml @@ -0,0 +1,295 @@ +import ".." as Skin +import "." as LibraryComponent +import Mixxx 1.0 as Mixxx +import Qt.labs.qmlmodels +import QtQml +import QtQuick +import QtQml.Models +import QtQuick.Layouts +import QtQuick.Controls 2.15 +import "../Theme" + +Rectangle { + id: root + + color: Theme.darkGray + + required property var model + + LibraryComponent.Control { + id: libraryControl + + onMoveVertical: (offset) => { + view.selectionModel.moveSelectionVertical(offset); + } + onLoadSelectedTrack: (group, play) => { + view.loadSelectedTrack(group, play); + } + onLoadSelectedTrackIntoNextAvailableDeck: (play) => { + view.loadSelectedTrackIntoNextAvailableDeck(play); + } + onFocusWidgetChanged: { + switch (focusWidget) { + case Skin.FocusedWidgetControl.WidgetKind.LibraryView: + view.forceActiveFocus(); + break; + } + } + } + + HorizontalHeaderView { + id: horizontalHeader + + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.margins: 5 + syncView: view + + property int sortingColumn: -1 + property var sortingOrder: Qt.Descending + + delegate: Item { + id: column + required property string display + required property int index + + implicitHeight: columnName.contentHeight + 5 + implicitWidth: columnName.contentWidth + 5 + + MouseArea { + id: columnMouseHandler + anchors.fill: parent + acceptedButtons: Qt.LeftButton + onClicked: { + if (horizontalHeader.sortingColumn == index) { + horizontalHeader.sortingOrder = horizontalHeader.sortingOrder == Qt.DescendingOrder ? Qt.AscendingOrder : Qt.DescendingOrder + } else { + horizontalHeader.sortingColumn = index + horizontalHeader.sortingOrder = Qt.AscendingOrder + } + view.model.sort(horizontalHeader.sortingColumn, horizontalHeader.sortingOrder); + } + } + + Text { + id: columnName + + text: display + anchors.fill: parent + anchors.leftMargin: 15 + elide: Text.ElideRight + horizontalAlignment: Text.AlignLeft + verticalAlignment: Text.AlignVCenter + font.family: Theme.fontFamily + font.capitalization: Font.Capitalize + font.pixelSize: 12 + font.weight: Font.Medium + color: Theme.textColor + } + + Item { + anchors { + left: parent.left + leftMargin: 5 + top: parent.top + bottom: parent.bottom + } + Label { + id: sortIndicator + + visible: horizontalHeader.sortingColumn == index + + text: "▶" + rotation: horizontalHeader.sortingOrder == Qt.AscendingOrder ? 90 : -90 + + anchors.centerIn: parent + elide: Text.ElideRight + horizontalAlignment: Text.AlignRight + verticalAlignment: Text.AlignVCenter + font.family: Theme.fontFamily + font.capitalization: Font.AllUppercase + font.bold: true + font.pixelSize: Theme.buttonFontPixelSize + color: "red" + } + } + Rectangle { + id: columnResizer + color: Theme.darkGray2 + width: 1 + anchors { + top: parent.top + bottom: parent.bottom + right: parent.right + } + MouseArea { + id: columnResizeHandler + + property int sizeOffset: 0 + + anchors.fill: parent + preventStealing: true + drag { + target: parent + axis: Drag.XAxis + threshold: 2 + onActiveChanged: { + if (!drag.active && columnResizeHandler.sizeOffset !== 0) { + view.model.columns[index].preferredWidth = column.width + columnResizeHandler.sizeOffset = 0 + view.updateColumnSize() + view.forceLayout() + } + } + } + cursorShape: Qt.SizeHorCursor + onMouseXChanged: { + if (drag.active) { + column.width += mouseX + sizeOffset += mouseX + } + } + } + } + } + } + + TableView { + id: view + + function loadSelectedTrackIntoNextAvailableDeck(play) { + const urls = this.selectionModel.selectedTrackUrls(); + if (urls.length == 0) + return ; + + Mixxx.PlayerManager.loadLocationUrlIntoNextAvailableDeck(urls[0], play); + } + + function loadSelectedTrack(group, play) { + const urls = this.selectionModel.selectedTrackUrls(); + if (urls.length == 0) + return ; + + player.loadTrackFromLocationUrl(urls[0], play); + } + + ScrollBar.vertical: ScrollBar { + policy: ScrollBar.AlwaysOn + } + + anchors.top: horizontalHeader.bottom + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + anchors.margins: 5 + clip: true + reuseItems: true + Keys.onUpPressed: this.selectionModel.moveSelectionVertical(-1) + Keys.onDownPressed: this.selectionModel.moveSelectionVertical(1) + Keys.onEnterPressed: this.loadSelectedTrackIntoNextAvailableDeck(false) + Keys.onReturnPressed: this.loadSelectedTrackIntoNextAvailableDeck(false) + model: root.model + function updateColumnSize() { + usedWidth = 0; + dynamicColumnCount = 0; + if (model == null) { + return; + } + for (let c = 0; c < model.columns.length; c++) { + if (model.columns[c].hidden) { + continue + } else if (model.columns[c].preferredWidth > 0) { + usedWidth += model.columns[c].preferredWidth; + } else { + dynamicColumnCount += model.columns[c].fillSpan || 1 + } + } + } + Component.onCompleted: this.updateColumnSize() + onModelChanged: this.updateColumnSize() + + property int usedWidth: 0 + property int dynamicColumnCount: 0 + + columnWidthProvider: function(column) { + const columnDef = view.model.columns[column] + if (columnDef.hidden) { + return 0; + } + if (columnDef.preferredWidth >= 0) { + return columnDef.preferredWidth; + } + const span = columnDef.fillSpan || 1; + return span * (view.width - view.usedWidth) / view.dynamicColumnCount; + } + + selectionModel: ItemSelectionModel { + function selectRow(row) { + const rowCount = this.model.rowCount(); + if (rowCount == 0) { + this.clear(); + return ; + } + const newRow = Mixxx.MathUtils.positiveModulo(row, rowCount); + this.select(this.model.index(newRow, 0), ItemSelectionModel.Rows | ItemSelectionModel.Select | ItemSelectionModel.Clear | ItemSelectionModel.Current); + } + + function moveSelectionVertical(value) { + if (value == 0) + return ; + + const selected = this.selectedIndexes; + const oldRow = (selected.length == 0) ? 0 : selected[0].row; + this.selectRow(oldRow + value); + } + + function selectedTrackUrls() { + return this.selectedIndexes.map((index) => { + return this.model.getUrl(index.row); + }); + } + model: view.model + } + + delegate: Item { + id: item + required property bool selected + required property color decoration + required property var display + required property var track + required property string file_url + required property url cover_art + required property int row + + implicitHeight: 30 + + Loader { + id: loader + anchors.fill: parent + property bool selected: item.selected + property color decoration: item.decoration + property var display: item.display + property var track: item.track + property url file_url: item.file_url + property url cover_art: item.cover_art + property int row: item.row + property var tableView: view + property var capabilities: root.model ? root.model.getCapabilities() : Mixxx.LibraryTrackListModel.Capability.None + sourceComponent: delegate + focus: true + + onLoaded: { + // Workaround needed for WaveformOverview column to load the data + // if (track) + // Mixxx.Library.analyze(track) + } + } + // Workaround needed for WaveformOverview column to load the data + // TableView.onReused: { + // if (track) + // Mixxx.Library.analyze(track) + // } + } + } +} diff --git a/res/qml/Mixxx/Controls/WaveformOverview.qml b/res/qml/Mixxx/Controls/WaveformOverview.qml index 1c217986451a..0ed78fea1562 100644 --- a/res/qml/Mixxx/Controls/WaveformOverview.qml +++ b/res/qml/Mixxx/Controls/WaveformOverview.qml @@ -6,8 +6,9 @@ Mixxx.WaveformOverview { id: root required property string group + readonly property var player: Mixxx.PlayerManager.getPlayer(root.group) - player: Mixxx.PlayerManager.getPlayer(root.group) + track: player.currentTrack Mixxx.ControlProxy { id: trackLoadedControl diff --git a/res/qml/OrientationToggleButton.qml b/res/qml/OrientationToggleButton.qml index 280cd3baf443..556c69fc2bec 100644 --- a/res/qml/OrientationToggleButton.qml +++ b/res/qml/OrientationToggleButton.qml @@ -13,7 +13,7 @@ Item { implicitWidth: 56 implicitHeight: 26 - Skin.Slider { + Skin.Fader { id: orientationSlider anchors.fill: parent @@ -28,7 +28,7 @@ Item { stepSize: 1 value: control.value orientation: Qt.Horizontal - snapMode: Slider.SnapOnRelease + snapMode: Fader.SnapOnRelease onMoved: { // The slider's `value` is not updated until after the move ended. const val = valueAt(visualPosition); diff --git a/res/qml/PreviewDeck.qml b/res/qml/PreviewDeck.qml new file mode 100644 index 000000000000..d7e22d7cd8cd --- /dev/null +++ b/res/qml/PreviewDeck.qml @@ -0,0 +1,42 @@ +import "." as Skin +import Mixxx 1.0 as Mixxx +import Qt.labs.qmlmodels +import QtQml +import QtQuick +import QtQml.Models +import QtQuick.Layouts +import QtQuick.Controls 2.15 +import QtQuick.Shapes 1.6 +import "Theme" + +Rectangle { + id: root + + color: 'transparent' + + Shape { + anchors.fill: parent + ShapePath { + strokeColor: Theme.midGray + strokeWidth: 1 + fillColor: "transparent" + capStyle: ShapePath.RoundCap + + startX: 0 + startY: 0 + PathLine { x: width; y: 0 } + PathLine { x: width; y: height } + PathLine { x: 0; y: height } + PathLine { x: 0; y: 0 } + PathLine { x: width; y: height } + PathLine { x: 0; y: height } + PathLine { x: width; y: 0 } + } + } + + Text { + anchors.centerIn: parent + color: 'white' + text: "PreviewDeck placeholder" + } +} diff --git a/res/qml/Sampler.qml b/res/qml/Sampler.qml index df39c786ed06..202bef92be5f 100644 --- a/res/qml/Sampler.qml +++ b/res/qml/Sampler.qml @@ -9,13 +9,14 @@ Rectangle { required property string group property bool minimized: false property var deckPlayer: Mixxx.PlayerManager.getPlayer(group) + property var currentTrack: deckPlayer.currentTrack color: { - const trackColor = root.deckPlayer.color; + const trackColor = root.currentTrack.color; if (!trackColor.valid) return Theme.backgroundColor; - return Qt.darker(root.deckPlayer.color, 2); + return Qt.darker(root.currentTrack.color, 2); } implicitHeight: gainKnob.height + 10 Drag.active: dragArea.drag.active @@ -25,7 +26,7 @@ Rectangle { let data = { "mixxx/player": group }; - const trackLocationUrl = deckPlayer.trackLocationUrl; + const trackLocationUrl = root.currentTrack.trackLocationUrl; if (trackLocationUrl) data["text/uri-list"] = trackLocationUrl; @@ -83,7 +84,7 @@ Rectangle { Text { id: label - text: root.deckPlayer.title + text: root.currentTrack.title anchors.top: embedded.top anchors.left: playButton.right anchors.right: embedded.right @@ -164,11 +165,6 @@ Rectangle { Mixxx.ControlProxy { id: ejectControl - function trigger() { - this.value = 1; - this.value = 0; - } - group: root.group key: "eject" } diff --git a/res/qml/Settings.qml b/res/qml/Settings.qml new file mode 100644 index 000000000000..8a9d39eb9a96 --- /dev/null +++ b/res/qml/Settings.qml @@ -0,0 +1,276 @@ +import "." as Skin +import Mixxx 1.0 as Mixxx +import QtQuick 2.12 +import QtQuick.Controls +import QtQuick.Layouts +import QtQuick.Shapes +import Qt5Compat.GraphicalEffects +import "Theme" + +Popup { + id: root + + property int activeCategoryIndex: 0 + property list sections: ["SoundHardware", "Library", "Controller", "Interface", "MixerEffect", "AutoDJ", "Broadcast", "Recording", "Analyzer", "StatsPerformance"] + + readonly property var manager: managerItem + + background: Rectangle { + anchors.fill: parent + color: Theme.darkGray2 + opacity: parent.radius < 0 ? Math.max(0.1, 1 + parent.radius / 8) : 1 + radius: 8 + } + contentItem: Item { + anchors.centerIn: parent + height: parent.height - 40 + width: parent.width - 40 + + RowLayout { + anchors.fill: parent + spacing: 0 + + Rectangle { + Layout.fillHeight: true + Layout.preferredWidth: 280 + border.color: Theme.darkGray3 + border.width: 6 + color: Theme.darkGray + + ColumnLayout { + anchors.fill: parent + anchors.margins: 6 + spacing: 0 + + Rectangle { + id: searchSetting + + property bool active: false + property alias input: searchInput + + Layout.fillWidth: true + color: Theme.midGray + height: 30 + + Text { + id: searchInputPlaceholder + anchors.verticalCenter: parent.verticalCenter + color: Theme.white + text: 'Search...' + visible: !parent.active + } + TextInput { + id: searchInput + anchors.verticalCenter: parent.verticalCenter + visible: parent.active + width: parent.width + + onActiveFocusChanged: { + parent.active = activeFocus; + } + onTextEdited: { + root.manager.search(text); + } + } + TapHandler { + onTapped: { + parent.active = true; + searchInput.forceActiveFocus(); + } + } + } + ListView { + id: categoryList + Layout.fillHeight: true + Layout.fillWidth: true + clip: true + focus: true + model: sectionProperties + visible: !searchSetting.active + + delegate: Rectangle { + required property int index + required property var label + + color: ListView.isCurrentItem ? Theme.darkGray3 : Theme.darkGray2 + height: 38 + width: ListView.view.width + + Image { + id: handleImage + anchors.left: parent.left + anchors.leftMargin: 8 + anchors.verticalCenter: parent.verticalCenter + fillMode: Image.PreserveAspectFit + height: 24 + source: "images/gear.svg" + visible: false + } + ColorOverlay { + anchors.fill: handleImage + antialiasing: true + color: parent.ListView.isCurrentItem ? Theme.accentColor : Theme.midGray + source: handleImage + } + Text { + anchors.left: handleImage.right + anchors.leftMargin: 8 + anchors.verticalCenter: parent.verticalCenter + color: Theme.white + font.bold: parent.ListView.isCurrentItem + text: label + } + TapHandler { + onTapped: { + categoryList.currentIndex = index; + } + } + } + } + ListView { + id: settingResultList + Layout.fillHeight: true + Layout.fillWidth: true + clip: true + focus: true + model: root.manager.model + visible: searchSetting.active + + delegate: Rectangle { + required property var display + required property int index + required property var toolTip + required property var whatsThis + + color: Theme.darkGray2 + height: 40 + width: ListView.view.width + + ColumnLayout { + anchors.fill: parent + anchors.margins: 4 + + Text { + Layout.fillWidth: true + Layout.preferredHeight: implicitHeight + color: Theme.white + text: searchSetting.input.text ? display.replace(searchSetting.input.text, `${searchSetting.input.text}`) : display + textFormat: Text.RichText + } + Text { + Layout.fillWidth: true + Layout.preferredHeight: implicitHeight + color: Theme.midGray + font.pixelSize: 10 + text: searchSetting.input.text ? whatsThis.replace(searchSetting.input.text, `${searchSetting.input.text}`) : whatsThis + textFormat: Text.RichText + } + } + TapHandler { + onTapped: { + for (let setting of toolTip) { + setting.activated(); + } + parent.forceActiveFocus(); + } + } + } + } + } + } + ColumnLayout { + Layout.fillHeight: true + Layout.fillWidth: true + + Text { + Layout.alignment: Qt.AlignHCenter + Layout.preferredHeight: 36 + color: Theme.white + font.pixelSize: 16 + font.weight: Font.DemiBold + text: "Settings" + } + Rectangle { + id: tabBar + + readonly property var categoryItem: categoriesLoader.itemAt(categoryList.currentIndex) ? categoriesLoader.itemAt(categoryList.currentIndex).item : null + readonly property int selectedIndex: categoryItem && categoryItem.selectedIndex !== undefined ? categoryItem.selectedIndex : 0 + readonly property var tabs: categoryItem ? categoryItem.tabs : [] + + Layout.fillWidth: true + Layout.preferredHeight: 30 + color: Theme.darkGray3 + visible: tabs?.length > 0 + + RowLayout { + anchors.fill: parent + + Repeater { + model: tabBar.tabs + + Skin.Button { + required property int index + required property string modelData + + Layout.alignment: Qt.AlignHCenter + Layout.preferredHeight: 22 + Layout.preferredWidth: parent.width / (tabBar.tabs.length + 2) + activeColor: Theme.white + checked: tabBar.selectedIndex == index + text: modelData + + onPressed: { + categoriesLoader.itemAt(categoryList.currentIndex).item.selectedIndex = index; + } + } + } + } + } + + Mixxx.SettingParameterManager { + id: managerItem + Layout.fillHeight: true + Layout.fillWidth: true + Layout.leftMargin: 20 + + Repeater { + id: categoriesLoader + model: root.sections + + Loader { + id: category + + required property int index + required property var modelData + + anchors.fill: parent + source: `Settings/${modelData}.qml` + visible: categoryList.currentIndex == index + + // asynchronous: true // Unsupported + onLoaded: { + for (let i = sectionProperties.count; i < index; i++) + sectionProperties.append({}); + sectionProperties.set(index, { + "label": category.item.label + }); + } + + Connections { + function onActivated() { + categoryList.currentIndex = index; + } + + target: category.item + } + } + } + } + } + } + } + + ListModel { + id: sectionProperties + } +} diff --git a/res/qml/Settings/Analyzer.qml b/res/qml/Settings/Analyzer.qml new file mode 100644 index 000000000000..f56980a576e9 --- /dev/null +++ b/res/qml/Settings/Analyzer.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Analyzer" + + Mixxx.SettingParameter { + label: "A grey square" + + Rectangle { + color: 'grey' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/AudioConnection.qml b/res/qml/Settings/AudioConnection.qml new file mode 100644 index 000000000000..5dac3d13b7a5 --- /dev/null +++ b/res/qml/Settings/AudioConnection.qml @@ -0,0 +1,173 @@ +import QtQuick 2.12 +import QtQuick.Shapes +import "../Theme" + +Item { + id: root + + enum Flags { + AboutToDelete = 1, + CannotConnect = 2 + } + + required property var source + required property var router + property var sink: undefined + property var target: source.mapToItem(router, source.width/2, source.height/2) + + property bool system: false + property bool vertical: false + property bool existing: false + property int flags: 0 + + readonly property bool ready: !!source && !!sink + + visible: !source || !sink || source.visible && sink.visible + + z: 0 + + states: [ + State { + name: "warning" + when: root.flags + + PropertyChanges { + line.strokeColor: Theme.warningColor + } + + PropertyChanges { + root.z: 50 + } + }, + State { + name: "system" + when: root.system + + PropertyChanges { + line.strokeColor: Theme.darkGray2 + } + }, + State { + name: "existing" + when: root.existing + + PropertyChanges { + line.strokeColor: Theme.midGray + } + }, + State { + name: "setting" + when: root.sink === undefined + + PropertyChanges { + line.strokeColor: Theme.accentColor + } + + PropertyChanges { + root.z: 50 + } + }, + State { + name: "set" + when: root.sink != undefined && !root.existing + + PropertyChanges { + line.strokeColor: Theme.accentColor + } + } + ] + + property var sourcePosition: source.mapToItem(router, source.width/2, source.height/2) + property var sinkPosition: sink ? sink.mapToItem(router, sink.width/2, sink.height/2) : target + + onSinkPositionChanged: { + scale.xScale = sourcePosition.x > sinkPosition.x ? -1 : 1 + scale.yScale = sourcePosition.y > sinkPosition.y ? -1 : 1 + } + + onSourcePositionChanged: { + scale.xScale = sourcePosition.x > sinkPosition.x ? -1 : 1 + scale.yScale = sourcePosition.y > sinkPosition.y ? -1 : 1 + } + + x: sourcePosition.x + y: sourcePosition.y + width: Math.max(2, Math.abs(sourcePosition.x - sinkPosition.x)) + height: Math.max(2, Math.abs(sourcePosition.y - sinkPosition.y)) + + onSinkChanged: { + if (sink != null && source != null) { + // swap entities if the connection was made backward + if (source.type !== "source") { + let swap = root.source + root.source = root.sink + root.sink = swap + return; + } + target = null + if (sink.connections !== undefined) { + sink.connections.add(root) + } else { + sink.connection = root + } + if (source.connections !== undefined) { + source.connections.add(root) + } else { + source.connection = root + } + } + } + onSourceChanged: { + if (sink != null && source != null) { + // swap entities if the connection was made backward + if (source.type !== "source") { + let swap = root.source + root.source = root.sink + root.sink = swap + return; + } + target = null + if (sink.connections !== undefined) { + sink.connections.add(root) + } else { + sink.connection = root + } + if (source.connections !== undefined) { + source.connections.add(root) + } else { + source.connection = root + } + } + } + onTargetChanged: { + if (!source) + return + scale.xScale = sourcePosition.x > sinkPosition.x ? -1 : 1 + scale.yScale = sourcePosition.y > sinkPosition.y ? -1 : 1 + } + + Shape { + anchors.fill: parent + // anchors.centerIn: parent + antialiasing: true + layer.enabled: true + layer.samples: 16 + layer.textureMirroring: ShaderEffectSource.MirrorHorizontally + ShapePath { + id: line + strokeColor: Theme.midGray + strokeWidth: 2 + fillColor: "transparent" + capStyle: ShapePath.RoundCap + joinStyle: ShapePath.BevelJoin + + startX: 1 + startY: 1 + PathQuad { x: root.width * 0.5; y: root.height * 0.5; controlX: root.width * (root.vertical ? 0 : 0.3); controlY : root.height * (root.vertical ? 0.3 : 0) } + PathQuad { x: root.width; y: root.height; controlX: root.width * (root.vertical ? 1 : 0.7); controlY : root.height * (root.vertical ? 0.7 : 1) } + } + } + transform: Scale { + id: scale + } +} diff --git a/res/qml/Settings/AudioEntity.qml b/res/qml/Settings/AudioEntity.qml new file mode 100644 index 000000000000..d797ba96ef13 --- /dev/null +++ b/res/qml/Settings/AudioEntity.qml @@ -0,0 +1,326 @@ +import QtQuick 2.12 +import QtQuick.Controls +import QtQuick.Layouts +import ".." as Skin +import "../Theme" + +Item { + id: root + + signal connect(var entity) + signal disconnect(var entity) + + signal scrolled() + signal gatewayReady(string address, Item node) + + required property string name + required property string group + property list gateways: [] + property bool advanced: false + + implicitHeight: 54 + 32 * gatewayRepeater.visibleChannels + width: 135 + z: 10 + + onGatewaysChanged: { + gatewayRepeater.visibleChannels = root.gateways.length + } + + property alias handleSource: handleSourceEdge + property alias handleSink: handleSinkEdge + + property var metaType: null + Rectangle { + id: content + radius: 15 + color: Theme.darkGray3 + anchors.fill: parent + anchors.margins: 8 + Column { + id: gatewayColumn + anchors.fill: parent + padding: 0 + spacing: 4 + + Item { + height: nameLabel.implicitHeight + 18 + width: parent.width + Label { + id: nameLabel + anchors.fill: parent + anchors.margins: 9 + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignTop + text: name + color: Theme.white + elide: Text.ElideRight + font.pixelSize: 15 + fontSizeMode: Text.Fit + } + } + + Repeater { + id: gatewayRepeater + model: root.gateways + property int visibleChannels: root.gateways.length + Repeater { + id: node + + required property int index + readonly property string label: root.gateways[index].name + readonly property string address: root.gateways[index].address || root.gateways[index].name + readonly property var channels: root.gateways[index].channels || [0, 1] + readonly property var instances: root.gateways[index].instances || 1 + readonly property string type: root.gateways[index].type + readonly property bool advanced: root.gateways[index].advanced || false + readonly property bool required: !!root.gateways[index].required + + model: node.channels.length/2 * instances + + property list channelAssignation: [...Array(node.channels.length/2)].map((_, i) => i) + + function availableEdge() { + for (let i = 0; i < node.count; i++) { + let current = node.itemAt(i); + if (current.edgeItem.connection) continue; + return i; + } + } + function assignedEdges() { + let assignation = {} + for (let i = 0; i < node.count; i++) { + let current = node.itemAt(i); + if (current.edgeItem.connection) { + assignation[node.channelAssignation[i]] = current.edgeItem.connection + } + } + return assignation + } + property int connectionCount: 0 + Item { + id: channel + + required property int index + property alias edgeItem: edge + property bool counted: channel.index == 0 + + visible: (edgeItem.connection?.ready || index == node.connectionCount) && (!node.advanced || root.advanced) + onVisibleChanged: { + if (counted != channel.visible) + gatewayRepeater.visibleChannels += channel.visible ? 1 : -1 + counted = channel.visible + } + + width: parent.width + height: 28 + RowLayout { + anchors { + left: parent.left + right: parent.right + leftMargin: 15 + rightMargin: 15 + } + id: inputLabel + Label { + Layout.fillWidth: true + Layout.alignment: Qt.AlignVCenter + Layout.preferredHeight: 28 + verticalAlignment: Text.AlignVCenter + text: node.instances == 1 ? label : `${label} #${index+1}` + color: Theme.white + elide: Text.ElideRight + font.pixelSize: 10 + fontSizeMode: Text.Fit + } + // Item { + // Layout.fillWidth: true + // } + Skin.ComboBox { + Layout.minimumWidth: implicitWidth + id: channelSelector + property int previousIndex: node.channelAssignation[channel.index] ?? 0 + visible: node.count > 1 && node.channels.length > 2 + spacing: 2 + clip: true + + font.pixelSize: 12 + model: { + return [...Array(node.channels.length/2)].map((e, i) => `Ch ${i * 2 + node.channels[0] + 1} - ${i * 2 + node.channels[0] + 2}`); + } + currentIndex: node.channelAssignation[channel.index] ?? 0 + onActivated: (activatedIndex) => { + let alreadyAssigned = node.channelAssignation.indexOf(activatedIndex) + node.channelAssignation[alreadyAssigned] = previousIndex + node.channelAssignation[channel.index] = activatedIndex + } + } + } + Rectangle { + id: edge + property var entity: root + property var advanced: node.advanced + property int instance: index / (node.channels.length/2) + property string type: node.type + property string group: root.group + property var address: node.address + + anchors.horizontalCenter: type == "source" ? parent.right : parent.left + anchors.verticalCenter: inputLabel.verticalCenter + + property var connection: null + property bool counted: false + property bool connecting: false + + onConnectionChanged: { + if (counted != !!edge.connection) + node.connectionCount += edge.connection ? 1 : -1 + counted = !!edge.connection + } + + function updateConnectionPosition() { + if (edge.connection && edge.connection.source == edge) { + edge.connection.sourcePosition = edge.mapToItem(edge.connection.router, edge.width/2, edge.height/2) + } else if (edge.connection && edge.connection.sink == edge) { + edge.connection.sinkPosition = edge.mapToItem(edge.connection.router, edge.width/2, edge.height/2) + } + } + + Connections { + target: root + function onScrolled() { + edge.updateConnectionPosition() + } + function onXChanged() { + edge.updateConnectionPosition() + } + function onYChanged() { + edge.updateConnectionPosition() + } + } + + Connections { + target: channel + function onHeightChanged() { + edge.updateConnectionPosition() + } + function onYChanged() { + edge.updateConnectionPosition() + } + } + + color: Theme.midGray + width: 10 + height: width + radius: width/2 + z: 100 + + states: [ + State { + name: "idle" + }, + State { + name: "warning" + when: (!edge.connection && node.required) || (edge.connection && edge.connection.state == "warning") + + PropertyChanges { + edge.width: 15 + edge.color: Theme.warningColor + } + }, + State { + name: "hidden" + when: edge.connection && !edge.connection.visible + + PropertyChanges { + channel.opacity: 0.5 + } + }, + State { + name: "setting" + when: edge.connection && !edge.connection.existing || edge.connecting + + PropertyChanges { + edge.width: 15 + edge.color: Theme.accentColor + } + } + ] + + MouseArea { + id: edgeMouseArea + hoverEnabled: edge.connection != null && edge.connection.visible + anchors.fill: parent + onPressed: { + if (edge.connection && edge.connection.flags & AudioConnection.Flags.AboutToDelete) { + root.disconnect(edge.connection) + } else if (edge.connection == null) { + root.connect(parent) + } + } + onEntered: { + if (edge.connection) { + edge.connection.flags |= AudioConnection.Flags.AboutToDelete + } + } + onExited: { + if (edge.connection) { + edge.connection.flags &= ~AudioConnection.Flags.AboutToDelete + } + } + } + } + } + Component.onCompleted: { + root.gatewayReady(address, node) + } + } + } + } + AudioEntityEdge { + id: handleSourceEdge + entity: root + type: "source" + + Connections { + target: root + + function onImplicitHeightChanged() { + handleSourceEdge.updateConnectionPosition() + } + function onXChanged() { + handleSourceEdge.updateConnectionPosition() + } + function onYChanged() { + handleSourceEdge.updateConnectionPosition() + } + } + + anchors.horizontalCenter: handleSourceEdge.vertical ? parent.horizontalCenter : parent.right + anchors.verticalCenter: handleSourceEdge.vertical ? parent.bottom : undefined + anchors.top: handleSourceEdge.vertical ? undefined :parent.top + anchors.topMargin: handleSourceEdge.vertical ? 0 :16 + } + AudioEntityEdge { + id: handleSinkEdge + entity: root + type: "sink" + + Connections { + target: root + + function onImplicitHeightChanged() { + handleSinkEdge.updateConnectionPosition() + } + function onXChanged() { + handleSinkEdge.updateConnectionPosition() + } + function onYChanged() { + handleSinkEdge.updateConnectionPosition() + } + } + + anchors.horizontalCenter: handleSinkEdge.vertical ? parent.horizontalCenter : parent.left + anchors.verticalCenter: handleSinkEdge.vertical ? parent.top : parent.verticalCenter + } + } +} diff --git a/res/qml/Settings/AudioEntityEdge.qml b/res/qml/Settings/AudioEntityEdge.qml new file mode 100644 index 000000000000..45b67f584b52 --- /dev/null +++ b/res/qml/Settings/AudioEntityEdge.qml @@ -0,0 +1,24 @@ +import QtQuick 2.12 + +Rectangle { + id: root + property bool vertical: false + required property var entity + required property string type + + property var connections: new Set() + + color: 'transparent' + width: 10 + height: 10 + + function updateConnectionPosition() { + for (let connection of connections) { + if (connection && connection.source == root) { + connection.sourcePosition = root.mapToItem(connection.router, root.width/2, root.height/2) + } else if (connection && connection.sink == root) { + connection.sinkPosition = root.mapToItem(connection.router, root.width/2, root.height/2) + } + } + } +} diff --git a/res/qml/Settings/AudioRouter.qml b/res/qml/Settings/AudioRouter.qml new file mode 100644 index 000000000000..5b60bf879258 --- /dev/null +++ b/res/qml/Settings/AudioRouter.qml @@ -0,0 +1,797 @@ +import Mixxx 1.0 as Mixxx +import QtQuick 2 +import QtQuick.Controls +import QtQuick.Layouts +import "../Theme" + +Rectangle { + id: root + color: '#0E0E0E' + radius: 5 + clip: true + + enum Mode { + Simple, + Advanced, + Legacy + } + + property var connections: new Set() + property var selectedTab: "" + property var newConnection: null + readonly property var mode: modeChoice.selected == "simple" ? AudioRouter.Mode.Simple : modeChoice.selected == "legacy" ? AudioRouter.Mode.Legacy : AudioRouter.Mode.Advanced + + property int hiddenConnections: 2 + + onModeChanged: { + updateHiddenConnectionCount() + } + + property var manager: Mixxx.SoundManager + + property Component connectionEdge: Qt.createComponent("AudioConnection.qml") + + property var inputDevices: new Object() + property var outputDevices: new Object() + + property var system: new Object() + property bool hasChanges: false + + property alias multiSoundcard: multiSoundcardChoice + + property var inputs: new Object() + property var outputs: new Object() + + function updateHiddenConnectionCount() { + root.hiddenConnections = 0 + if (root.mode == AudioRouter.Mode.Simple) { + for (let connection of root.connections) { + if (connection.source?.advanced || connection.sink?.advanced) { + root.hiddenConnections += 1 + } + } + } + } + + // FriendlyName aims to parse the raw device name extract it in such a way that it gets grouped within the UI + // Note that naming structures changes across API and devices. This function is experimental and aims to be extended with more logic + // If not extraction works, it will fallback to return the device name as "card name" (a.k.a a group on the router) and a single channel names "Default" + function friendlyName(api, rawName) { + // "api" value can be found in https://github.com/PortAudio/portaudio + switch (api) { + // TODO unimplemented, need some data or platform to test with + // case "JACK Audio Connection Kit": + // case "OSS": + // case "iOS Audio": + // case "Core Audio": + // case "AudioIO": + // case "AudioScience HPI": + // case "PulseAudio": + // case "sndio": + + case "ALSA": { + const hwAlsa = / (\(hw:\d+,\d+\))/; + let components = rawName.split(':') + let cardName = components.shift().trim() + let deviceName = components.length > 0 ? components.join(":").trim().replace(hwAlsa, "") : "Default" + return [cardName, deviceName] + } + case "MME": { + // API truncates the name to 31 chars + if (rawName.length === 31 && rawName.substr(-1) !== ')') { + const match = /(.+) \((.*)/.exec(rawName) + if (match) { + const [_, deviceName, cardName, ..._loopback] = match + return [cardName, deviceName] + } + break + } + } + case "ASIO": + case "Windows DirectSound": + case "Windows WASAPI": { + const match = /(.+) \((.*)\)( \[Loopback\])?/.exec(rawName) + if (match) { + const [_, deviceName, cardName, ..._loopback] = match + return [cardName, deviceName] + } + break + } + case "Windows WDM-KS": { + const match = /(.+) \((.*)\)( \[Loopback\])?/.exec(rawName.replace(/\r?\n/g, '')) + if (match) { + let [_, deviceName, cardName, ..._loopback] = match + if (cardName.startsWith("@System32\\drivers")) { + let components = cardName.split(";") + cardName = components[components.length - 1] + } + return [cardName, deviceName] + } + break + } + } + + return [rawName, ""] + } + + function generateDeviceList(api, devices, existing) { + console.log(`generating device list for: ${JSON.stringify(devices)}`) + let cards = {} + // cardName -> deviceName -> duplicateCount + let deviceNameDuplicate = {} + for (let device of devices) { + let [cardName, deviceName] = root.friendlyName(api, device.displayName) + cardName = !cardName ? "Unnamed card" : cardName + deviceName = !deviceName ? "Default" : deviceName + console.log(`cardName=${cardName},deviceName=${deviceName}`) + if (cards[cardName] === undefined) { + cards[cardName] = { + gateways: { + [deviceName]: { + name: deviceName, + node: existing[cardName]?.gateways?.[deviceName]?.node ?? null, + device: device, + channels: device.channelCount + } + }, + channelCount: device.channelCount, + } + continue + } + console.log(`cards=${cards[cardName]}`) + + // If the group (card name) has already a "Default" channel, we add the new channel as "Default #N" for better UX + if (cards[cardName].gateways[deviceName] !== undefined) { + if (deviceNameDuplicate[cardName] === undefined) { + deviceNameDuplicate[cardName] = { + [deviceName]: 1 + } + } else { + deviceNameDuplicate[cardName][deviceName] = (deviceNameDuplicate[cardName][deviceName] ?? 0) + 1 + } + deviceName = `${deviceName} #${deviceNameDuplicate[cardName][deviceName] + 1}` + } + + cards[cardName].gateways[deviceName] = { + name: deviceName, + node: existing[cardName]?.gateways?.[deviceName]?.node ?? null, + device: device, + channels: device.channelCount + } + cards[cardName].channelCount += device.channelCount + } + return cards + } + + function update(api) { + console.log(`Using sound api: ${api} ${typeof api}`) + root.inputs = generateDeviceList(api, manager.availableInputDevices(api), root.inputs) + root.outputs = generateDeviceList(api, manager.availableOutputDevices(api), root.outputs) + root.loadConnections() + } + + function registerInputEdge(device, address, node) { + root.inputs[device].gateways[address].node = node + if (root.inputs[device].gateways[address].delayedConnections) { + addExistingConnection(node, root.inputs[device].gateways[address].delayedConnections) + root.inputs[device].gateways[address].delayedConnections = undefined + } + } + function registerOutputEdge(device, address, node) { + root.outputs[device].gateways[address].node = node + if (root.outputs[device].gateways[address].delayedConnections) { + addExistingConnection(node, root.outputs[device].gateways[address].delayedConnections) + root.outputs[device].gateways[address].delayedConnections = undefined + } + } + + readonly property list audioTypeMap: [ + {entity: "Mixer",channel: "Main"}, // Main, + {entity: "Mixer",channel: "PFL"}, // Headphones, + {entity: "Mixer",channel: "Booth"}, // Booth, + {entity: "Mixer",channel: "Bus"}, // Bus, + {entity: "Deck",channel: "Output"}, // Deck, + {entity: "Deck",channel: "Vinyl Control"}, // VinylControl, + {entity: "Mixer",channel: "Microphone"}, // Microphone, + {entity: "Mixer",channel: "Auxiliary"}, // Auxiliary, + {entity: "Record",channel: "Additional input"}, // RecordBroadcast, + ] + + function addExistingConnection(node, connections) { + if (!connections) return; + for (let connection of connections) { + let typeDef = audioTypeMap[connection.type] + let source = root.system[typeDef.entity].gateways[typeDef.channel][connection.index].edgeItem + let availableEdge = node.availableEdge() + if (!source || availableEdge === null) { + console.error("Unable to get the source and sink of the existing connection!", source, availableEdge) + continue; + } + let connectionItem = root.connectionEdge.createObject(root, { + "existing": true, + "router": root, + "source": source, + "sink": node.itemAt(availableEdge).edgeItem, + }) + root.connections.add(connectionItem) + node.channelAssignation[availableEdge] = connection.channelGroup / 2 + } + root.updateHiddenConnectionCount() + } + + function loadConnections() { + while (root.connections.size) { + let connection = root.connections.keys().next().value; + root.entityOnDisconnect(connection) + } + + for (let device of Object.keys(root.outputs)) { + for (let address of Object.keys(root.outputs[device].gateways)) { + let gateway = root.outputs[device].gateways[address] + let node = gateway.node + let connections = root.outputs[device].gateways[address].device.connections(Mixxx.SoundManager) + + if (!connections) continue; + if (node) { + addExistingConnection(node, connections) + } else if (connections.length) { + root.outputs[device].gateways[address].delayedConnections = connections + } + } + } + + for (let device of Object.keys(root.inputs)) { + for (let address of Object.keys(root.inputs[device].gateways)) { + let gateway = root.inputs[device].gateways[address] + let node = gateway.node + let connections = root.inputs[device].gateways[address].device.connections(Mixxx.SoundManager) + console.log("INPUT", gateway, node, connections) + + if (!connections) continue; + if (node) { + addExistingConnection(node, connections) + } else if (connections.length) { + root.inputs[device].gateways[address].delayedConnections = connections + } + } + } + + root.hasChanges = false + } + + MouseArea { + enabled: root.newConnection != null + anchors.fill: parent + hoverEnabled: true + preventStealing: true + onPositionChanged: (mouse) => { + if (root.newConnection) { + root.newConnection.target = Qt.point(mouse.x, mouse.y) + } + } + onExited: { + if (root.newConnection) { + root.newConnection.destroy(); + root.newConnection.source.connection = null + root.newConnection = null + } + } + onPressed: { + if (root.newConnection) { + root.newConnection.destroy(); + root.newConnection.source.connection = null + root.newConnection = null + } + } + } + + function entityOnConnect(edge) { + if (root.newConnection != null) { + if (edge.type == root.newConnection.source.type || edge.group == root.newConnection.source.group || edge.entity == root.newConnection.source.entity) { + root.newConnection.flags |= AudioConnection.Flags.CannotConnect + return; + } + root.newConnection.source.connecting = false + if (root.newConnection.source == edge) { + root.newConnection.destroy(); + } else { + root.newConnection.sink = edge + root.connections.add(root.newConnection) + root.hasChanges = true + } + root.newConnection = null + } else { + root.newConnection = connectionEdge.createObject(root, {"router": root, "source": edge}); + } + } + + function entityOnDisconnect(connection) { + var sink = connection.sink; + var source = connection.source; + root.connections.delete(connection) + if (connection.existing) + root.hasChanges = true + + if (source != null) { + if (source.connection !== undefined) { + source.connection = null + } else { + source.connections.delete(connection) + } + } + + if (sink != null) { + if (sink.connection !== undefined) { + sink.connection = null + } else { + sink.connections.delete(connection) + } + } + connection.destroy() + } + + RowLayout { + anchors.fill: parent + + ColumnLayout { + visible: root.mode == AudioRouter.Mode.Advanced + Layout.fillHeight: true + Layout.minimumWidth: 200 + Layout.maximumWidth: 220 + Text { + Layout.alignment: Qt.AlignHCenter + Layout.margins: 15 + text: "Inputs" + color: '#626262' + font.pixelSize: 14 + } + + ListView { + id: inputList + Layout.margins: 15 + Layout.fillHeight: true + Layout.fillWidth: true + model: Object.keys(root.inputs) + reuseItems: false + spacing: 15 + delegate: AudioEntity { + id: inputEntity + required property var modelData + width: ListView.view.width + + name: modelData + group: "external" + gateways: { + let channels = [] + let maxChannelPerInput = 4 / root.inputs[modelData].channelCount; + for (let item of Object.values(root.inputs[modelData].gateways)) { + let channel = 0 + for (; channel < item.channels && channel <= maxChannelPerInput; channel += 2) { + channels.push({ + name: item.name, + address: item.address, + channels: [channel, channel+1], + type: "source", + advanced: true + }); + } + if (channel < item.channels) { + let start = channels[channels.length-1].channels[0] + let channelPicker = [...Array(item.channels - start)] + channels[channels.length-1].channels = channelPicker.map((_, i) => start+i) + } + } + return channels; + } + advanced: root.mode == AudioRouter.Mode.Advanced + + onGatewayReady: (address, node) => { + root.registerInputEdge(modelData, address, node) + } + + onConnect: (point) => root.entityOnConnect(point) + onDisconnect: (point) => root.entityOnDisconnect(point) + Connections { + target: inputList + function onContentYChanged() { + inputEntity.scrolled() + } + function onXChanged() { + inputEntity.scrolled() + } + function onYChanged() { + inputEntity.scrolled() + } + function onWidthChanged() { + inputEntity.scrolled() + } + function onHeightChanged() { + inputEntity.scrolled() + } + } + } + ScrollBar.vertical: ScrollBar { + policy: ScrollBar.AlwaysOn + anchors.right: inputList.left + anchors.rightMargin: 6 + } + } + } + Rectangle { + visible: root.mode == AudioRouter.Mode.Advanced + Layout.fillHeight: true + Layout.preferredWidth: 1 + color: '#626262' + } + ColumnLayout { + id: mainCanvas + RowLayout { + Layout.topMargin: 6 + Layout.bottomMargin: 3 + Item { + Layout.fillWidth: true + } + RatioChoice { + id: modeChoice + options: [ + "simple", + !root.hiddenConnections ? "advanced" : "advanced (!)", + "legacy" + ] + onOptionsChanged: { + if (modeChoice.selected.startsWith("advanced")) { + modeChoice.selected = options[1] + } + } + tooltips: !root.hiddenConnections ? [] : [null, `${root.hiddenConnections} connection${root.hiddenConnections > 1 ? 's' : ''} hidden\nUse the advanced mode to view them`, null] + } + } + Item { + Layout.fillHeight: true + } + RowLayout { + Layout.bottomMargin: 3 + RatioChoice { + id: multiSoundcardChoice + normalizedWidth: false + options: [ + "experimental", + "default", + "disabled" + ] + tooltips: [ + "No delay", + "Long delay", + "Short delay" + ] + + onSelectedChanged: { + root.hasChanges = true + } + + Mixxx.SettingParameter { + label: "Multi-Soundcard Synchronization" + } + } + Text { + text: "Multi-Soundcard Synchronization" + color: Theme.white + font.pixelSize: 14 + } + Item { + Layout.fillWidth: true + } + } + } + Rectangle { + visible: root.mode != AudioRouter.Mode.Legacy + Layout.fillHeight: true + Layout.preferredWidth: 1 + color: '#626262' + } + + ColumnLayout { + visible: root.mode != AudioRouter.Mode.Legacy + Layout.fillHeight: true + Layout.minimumWidth: 200 + Layout.maximumWidth: 220 + Text { + Layout.alignment: Qt.AlignHCenter + Layout.margins: 15 + text: "Outputs" + color: '#626262' + font.pixelSize: 14 + } + + ListView { + id: outputList + Layout.margins: 15 + Layout.fillHeight: true + Layout.fillWidth: true + model: Object.keys(root.outputs) + reuseItems: false + spacing: 15 + cacheBuffer: Math.max(0, contentHeight) // Disable lazy loading to make sure all item are loaded and can be bounded to connection + delegate: AudioEntity { + id: outputEntity + required property var modelData + width: ListView.view.width + + name: modelData + group: "external" + gateways: { + let channels = [] + let maxChannelPerOutput = 4 / root.outputs[modelData].channelCount; + for (let item of Object.values(root.outputs[modelData].gateways)) { + let channel = 0 + for (; channel < item.channels && channel <= maxChannelPerOutput; channel += 2) { + channels.push({ + name: item.name, + address: item.address, + channels: [channel, channel+1], + type: "sink" + }); + } + if (channel < item.channels) { + let start = channels[channels.length-1].channels[0] + let channelPicker = [...Array(item.channels - start)] + channels[channels.length-1].channels = channelPicker.map((_, i) => start+i) + } + } + return channels; + } + + onGatewayReady: (address, node) => { + root.registerOutputEdge(modelData, address, node) + } + + onConnect: (point) => root.entityOnConnect(point) + onDisconnect: (point) => root.entityOnDisconnect(point) + Connections { + target: outputList + function onContentYChanged() { + outputEntity.scrolled() + } + function onXChanged() { + outputEntity.scrolled() + } + function onYChanged() { + outputEntity.scrolled() + } + function onWidthChanged() { + outputEntity.scrolled() + } + function onHeightChanged() { + outputEntity.scrolled() + } + } + } + ScrollBar.vertical: ScrollBar { + policy: ScrollBar.AlwaysOn + anchors.left: outputList.right + anchors.leftMargin: 6 + } + } + + Item { + Layout.fillHeight: true + } + } + } + + Repeater { + id: decks + model: 4 + AudioEntity { + visible: root.mode != AudioRouter.Mode.Legacy + required property int index + id: deck + x: root.width / (root.mode == AudioRouter.Mode.Advanced ? 4 : 5) + y: (root.height / 5) * (1 + index) - implicitHeight / 2 + + name: `Deck ${index+1}` + group: "internal" + gateways: [{ + name: "Output", + type: "source", + advanced: true + }, { + name: "Vinyl Control", + type: "sink", + advanced: true + } + ] + advanced: root.mode == AudioRouter.Mode.Advanced + + onConnect: (point) => root.entityOnConnect(point) + onDisconnect: (point) => root.entityOnDisconnect(point) + + onGatewayReady: (address, node) => { + if (!root.system["Deck"]) { + root.system["Deck"] = { + gateways: {} + } + } + if (!root.system["Deck"].gateways[address]) { + root.system["Deck"].gateways[address] = [] + } + root.system["Deck"].gateways[address][deck.index] = node.itemAt(0) + } + } + onItemAdded: (index, item) => { + deckConnections.items.push(item) + } + onItemRemoved: (index, item) => { + deckConnections.items.slice(deckConnections.items.indexOf(item), 1) + } + } + + AudioEntity { + visible: root.mode != AudioRouter.Mode.Legacy + id: mixer + + x: root.width / 2 + y: Math.max(root.height / 16 , root.height / (root.mode == AudioRouter.Mode.Advanced ? 3 : 2) - implicitHeight / 2) + + name: "Mixer" + group: "internal" + + advanced: root.mode == AudioRouter.Mode.Advanced + + gateways: [{ + name: "PFL", + type: "source" + }, { + name: "Main", + type: "source", + required: true + }, { + name: "Booth", + type: "source" + }, { + name: "Left Bus", + type: "source", + advanced: true + }, { + name: "Center Bus", + type: "source", + advanced: true + }, { + name: "Right Bus", + type: "source", + advanced: true + }, { + name: "Auxiliary", + type: "sink", + instances: 4, + advanced: true + }, { + name: "Microphone", + type: "sink", + instances: 4, + advanced: true + } + ] + + Mixxx.SettingParameter { + label: "PFL" + } + Mixxx.SettingParameter { + label: "Main" + } + Mixxx.SettingParameter { + label: "Booth" + } + Mixxx.SettingParameter { + label: "Mixer" + } + Mixxx.SettingParameter { + label: "Decks" + } + Mixxx.SettingParameter { + label: "Input" + } + Mixxx.SettingParameter { + label: "Output" + } + Mixxx.SettingParameter { + label: "Broadcast" + } + + handleSource.vertical: mixer.height < root.height*0.75 + + onConnect: (point) => root.entityOnConnect(point) + onDisconnect: (point) => root.entityOnDisconnect(point) + + onGatewayReady: (address, node) => { + if (!root.system["Mixer"]) { + root.system["Mixer"] = { + gateways: {} + } + } + let nodeIdxOffset = 0 + if (address.endsWith(" Bus")) { + nodeIdxOffset = address.startsWith("Left ") ? 0 : address.startsWith("Right ") ? 2 : 1 + address = "Bus" + } + console.log("register", address, nodeIdxOffset) + if (!root.system["Mixer"].gateways[address]) { + root.system["Mixer"].gateways[address] = [] + } + for (let nodeIdx = 0; nodeIdx < node.count; nodeIdx++) { + root.system["Mixer"].gateways[address][nodeIdxOffset + nodeIdx] = node.itemAt(nodeIdx) + } + } + } + Repeater { + id: deckConnections + property list items: [] + model: items + AudioConnection { + visible: root.mode != AudioRouter.Mode.Legacy + required property var modelData + router: root + source: modelData.handleSource + sink: mixer.handleSink + system: true + } + } + AudioEntity { + id: record + visible: root.mode == AudioRouter.Mode.Advanced + + x: root.width / 5 * 3 + y: root.height / 5 * 4 - implicitHeight / 2 + + name: "Record/Broadcast" + group: "internal" + metaType: "sink" + + handleSink.vertical: true + + gateways: [{ + name: "Alternative input", + type: "sink" + } + ] + property var alternativeConnection: null + readonly property bool hasAlternativeConnection: alternativeConnection && alternativeConnection.ready + + onConnect: (point) => { + if (root.newConnection != null) { + record.alternativeConnection = root.newConnection + } + root.entityOnConnect(point) + if (root.newConnection != null) { + record.alternativeConnection = root.newConnection + } + } + onDisconnect: (point) => { + record.alternativeConnection = null + root.entityOnDisconnect(point) + } + + onGatewayReady: (address, node) => { + if (!root.system["Record"]) { + root.system["Record"] = { + gateways: {} + } + } + if (!root.system["Record"].gateways[address]) { + root.system["Record"].gateways[address] = [] + } + node = node.itemAt(0) + root.system["Record"].gateways[address][node.index] = node + } + } + + AudioConnection { + visible: root.mode == AudioRouter.Mode.Advanced && !record.hasAlternativeConnection + + router: root + source: mixer.handleSource + sink: record.handleSink + system: true + vertical: true + } +} diff --git a/res/qml/Settings/AutoDJ.qml b/res/qml/Settings/AutoDJ.qml new file mode 100644 index 000000000000..a8dd46caea76 --- /dev/null +++ b/res/qml/Settings/AutoDJ.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "AutoDJ" + + Mixxx.SettingParameter { + label: "A black square" + + Rectangle { + color: 'black' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/Broadcast.qml b/res/qml/Settings/Broadcast.qml new file mode 100644 index 000000000000..d8150886807e --- /dev/null +++ b/res/qml/Settings/Broadcast.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Broadcast" + + Mixxx.SettingParameter { + label: "A yellow square" + + Rectangle { + color: 'yellow' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/Category.qml b/res/qml/Settings/Category.qml new file mode 100644 index 000000000000..16d232cb12a6 --- /dev/null +++ b/res/qml/Settings/Category.qml @@ -0,0 +1,9 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Mixxx.SettingGroup { + id: root + + property int selectedIndex: 0 + property list tabs: [] +} diff --git a/res/qml/Settings/Controller.qml b/res/qml/Settings/Controller.qml new file mode 100644 index 000000000000..1023da91d3b6 --- /dev/null +++ b/res/qml/Settings/Controller.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Controllers" + + Mixxx.SettingParameter { + label: "A orange square" + + Rectangle { + color: 'orange' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/Interface.qml b/res/qml/Settings/Interface.qml new file mode 100644 index 000000000000..848da7fe71bb --- /dev/null +++ b/res/qml/Settings/Interface.qml @@ -0,0 +1,18 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + tabs: ["theme & colour", "waveform", "decks"] + + label: "Interface" + + Mixxx.SettingParameter { + label: "A pink square" + + Rectangle { + color: 'pink' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/Library.qml b/res/qml/Settings/Library.qml new file mode 100644 index 000000000000..1ca75978c25e --- /dev/null +++ b/res/qml/Settings/Library.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Library" + + Mixxx.SettingParameter { + label: "A blue square" + + Rectangle { + color: 'blue' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/MixerEffect.qml b/res/qml/Settings/MixerEffect.qml new file mode 100644 index 000000000000..3be92fc7c17f --- /dev/null +++ b/res/qml/Settings/MixerEffect.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Mixer & Effects" + + Mixxx.SettingParameter { + label: "A green square" + + Rectangle { + color: 'green' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/RatioChoice.qml b/res/qml/Settings/RatioChoice.qml new file mode 100644 index 000000000000..137e24cf7bc1 --- /dev/null +++ b/res/qml/Settings/RatioChoice.qml @@ -0,0 +1,309 @@ +import QtQuick 2.12 +import QtQuick.Controls +import QtQuick.Layouts +import QtQuick.Shapes +import Qt5Compat.GraphicalEffects +import "../Theme" +import ".." as Skin + +Item { + id: root + required property list options + property list tooltips: [] + property string selected: options.length ? options[0] : null + property real spacing: 9 + property real maxWidth: 0 + property bool normalizedWidth: true + + onTooltipsChanged: { + popup.close() + } + + FontMetrics { + id: fontMetrics + font.pixelSize: 14 + font.capitalization: Font.AllUppercase + } + + implicitHeight: (contentList.visible ? contentList.height : contentSpin.height) + dropRatio.radius * 2 + implicitWidth: (contentList.visible ? contentList.width : contentSpin.width) + dropRatio.radius * 2 + readonly property real cellSize: { + Math.max.apply(null, options.map((option) => fontMetrics.advanceWidth(option))) + root.spacing*2 + } + + Rectangle { + id: contentList + visible: root.maxWidth == 0 || root.maxWidth > root.cellSize * root.options.length + anchors.centerIn: parent + height: 24 + width: { + if (root.normalizedWidth) { + root.cellSize * root.options.length + root.spacing + } else { + options.reduce((acc, option) => acc + fontMetrics.advanceWidth(option) + root.spacing*2, 0) + root.spacing + } + } + color: '#2B2B2B' + radius: height / 2 + RowLayout { + anchors.fill: parent + Repeater { + model: options + Item { + required property int index + required property var modelData + width: root.normalizedWidth ? root.cellSize : fontMetrics.advanceWidth(modelData) + root.spacing*2 + height: contentList.height + Rectangle { + anchors.fill: parent + color: root.selected == modelData ? Theme.accentColor : 'transparent' + radius: height / 2 + id: contentOption + Text { + text: modelData + color: Theme.white + anchors.fill: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font: fontMetrics.font + } + MouseArea { + anchors.fill: parent + hoverEnabled: !!root.tooltips[index] + onPressed: { + root.selected = modelData + } + + onEntered: { + if (!root.tooltips[index]) return; + popup.tooltip = root.tooltips[index] || "" + popup.x = Qt.binding(function() { return contentOption.mapToItem(root, 0, 0).x + contentOption.width / 2 - popup.width / 2; }) + popup.open() + } + onExited: { + popup.close() + } + } + } + InnerShadow { + visible: root.selected == modelData + id: bottomOptionInnerEffect + anchors.fill: parent + radius: 8 + samples: 32 + spread: 0.4 + horizontalOffset: -1 + verticalOffset: -1 + color: "#0E2A54" + source: contentOption + } + InnerShadow { + visible: root.selected == modelData + id: topOptionInnerEffect + anchors.fill: parent + radius: 8 + samples: 32 + spread: 0.4 + horizontalOffset: 1 + verticalOffset: 1 + color: "#0E2A54" + source: bottomOptionInnerEffect + } + } + } + } + } + SpinBox { + id: contentSpin + visible: !contentList.visible + anchors.centerIn: parent + from: 0 + padding: 0 + spacing: root.spacing + to: root.options.length - 1 + font: fontMetrics.font + value: root.options.indexOf(root.selected) + + property real textWidth: fontMetrics.advanceWidth(root.options.reduce((accumulator, currentValue) => accumulator.length > currentValue.length ? accumulator : currentValue, "")) + + contentItem: Item { + width: contentSpin.textWidth + 2 * contentSpin.spacing + Rectangle { + id: content + anchors.fill: parent + color: Theme.accentColor + radius: height / 2 + Text { + id: textLabel + anchors.fill: parent + text: contentSpin.textFromValue(contentSpin.value, contentSpin.locale) ?? "" + color: Theme.white + font: contentSpin.font + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + } + } + InnerShadow { + id: bottomInnerEffect + anchors.fill: parent + radius: 8 + samples: 32 + spread: 0.4 + horizontalOffset: -1 + verticalOffset: -1 + color: "#0E2A54" + source: content + } + InnerShadow { + id: topInnerEffect + anchors.fill: parent + radius: 8 + samples: 32 + spread: 0.4 + horizontalOffset: 1 + verticalOffset: 1 + color: "#0E2A54" + source: bottomInnerEffect + } + } + + component Indicator: Rectangle { + required property string text + height: implicitHeight + implicitWidth: 24 + implicitHeight: 24 + radius: parent.height / 2 + color: '#2B2B2B' + border.width: 0 + + Text { + text: parent.text + font.pixelSize: contentSpin.font.pixelSize + color: Theme.white + anchors.fill: parent + fontSizeMode: Text.Fit + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + } + } + + up.indicator: Indicator { + x: contentSpin.mirrored ? 0 : parent.width - width + text: ">" + } + + down.indicator: Indicator { + x: contentSpin.mirrored ? parent.width - width : 0 + text: "<" + } + + background: Rectangle { + implicitWidth: contentSpin.textWidth + 2 * contentSpin.spacing + 48 + radius: parent.height / 2 + color: '#2B2B2B' + } + + textFromValue: function(value) { + return root.options[value]; + } + + valueFromText: function(text) { + for (var i = 0; i < root.options.length; ++i) { + if (root.options[i].toLowerCase().indexOf(text.toLowerCase()) === 0) + return i + } + return contentSpin.value + } + + onValueChanged: { + root.selected = contentSpin.textFromValue(value) ?? "" + popup.tooltip = root.tooltips[contentSpin.value] ?? "" + popup.x = contentSpin.width / 2 - popup.width / 2 + } + MouseArea { + anchors.fill: parent + hoverEnabled: true + + onEntered: { + if (!root.tooltips[contentSpin.value]) return; + popup.x = contentSpin.width / 2 - popup.width / 2 + popup.open() + } + onExited: { + popup.close() + } + onPressed: { + mouse.accepted = false + } + } + } + DropShadow { + id: dropRatio + anchors.margins: dropRatio.radius + anchors.fill: root + horizontalOffset: 0 + verticalOffset: 0 + radius: 4.0 + color: "#80000000" + source: contentList.visible ? contentList : contentSpin + } + Popup { + id: popup + y: root.height + x: 0 + width: Math.max(tooltip.implicitWidth* 1.5, 50) + height: tooltip.implicitHeight + 15 + closePolicy: Popup.NoAutoClose + + property string tooltip: "" + + padding: 0 + + contentItem: Item { + Item { + id: contentPopup + anchors.fill: parent + Shape { + anchors.top: parent.top + anchors.horizontalCenter: parent.horizontalCenter + width: 20 + height: width + antialiasing: true + layer.enabled: true + layer.samples: 4 + ShapePath { + fillColor: Theme.embeddedBackgroundColor + strokeColor: Theme.deckBackgroundColor + strokeWidth: 2 + startX: 10; startY: 0 + fillRule: ShapePath.WindingFill + capStyle: ShapePath.RoundCap + PathLine { x: 20; y: 10 } + PathLine { x: 0; y: 10 } + PathLine { x: 10; y: 0 } + } + } + Skin.EmbeddedBackground { + anchors.topMargin: 10 + anchors.fill: parent + Text { + anchors.centerIn: parent + id: tooltip + color: Theme.white + text: popup.tooltip + } + } + } + DropShadow { + anchors.fill: parent + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + color: "#000000" + source: contentPopup + } + } + + background: Item {} + } +} diff --git a/res/qml/Settings/Recording.qml b/res/qml/Settings/Recording.qml new file mode 100644 index 000000000000..16ac87057aae --- /dev/null +++ b/res/qml/Settings/Recording.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Recording" + + Mixxx.SettingParameter { + label: "A red square" + + Rectangle { + color: 'red' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Settings/SoundHardware.qml b/res/qml/Settings/SoundHardware.qml new file mode 100644 index 000000000000..16ca0c5d56c9 --- /dev/null +++ b/res/qml/Settings/SoundHardware.qml @@ -0,0 +1,639 @@ +import QtQuick +import QtQuick.Layouts +import Mixxx 1.0 as Mixxx +import ".." as Skin +import "../Theme" + +Category { + id: root + + label: "Sound hardware" + tabs: ["engine", "delays", "stats"] + + property bool hasChanges: router.hasChanges + property bool committing: false + + Mixxx.ControlProxy { + id: mainEnabled + group: "[Master]" + key: "enabled" + } + Mixxx.ControlProxy { + id: headEnabled + group: "[Master]" + key: "headEnabled" + } + Mixxx.ControlProxy { + id: boothEnabled + group: "[Master]" + key: "booth_enabled" + } + Mixxx.ControlProxy { + id: mainDelay + group: "[Master]" + key: "delay" + } + Mixxx.ControlProxy { + id: headDelay + group: "[Master]" + key: "headDelay" + } + Mixxx.ControlProxy { + id: boothDelay + group: "[Master]" + key: "boothDelay" + } + Mixxx.ControlProxy { + id: monoMix + group: "[Master]" + key: "mono_mixdown" + } + Mixxx.ControlProxy { + id: micMonitorMode + group: "[Master]" + key: "talkover_mix" + } + + function save() { + const manager = Mixxx.SoundManager; + mainEnabled.value = mainMixEnabled.options.indexOf(mainMixEnabled.selected) + monoMix.value = !mainOutputMode.options.indexOf(mainOutputMode.selected) + manager.setForceNetworkClock(soundClock.options[1] == soundClock.selected) + manager.setSampleRate(parseInt(sampleRate.selected)) + manager.setAudioBufferSizeIndex(audioBuffer.currentIndex + 1) + micMonitorMode.value = microphoneMonitorMode.currentIndex + manager.setAPI(soundApi.selected) + manager.setKeylockEngine(keylock.options.indexOf(keylock.selected)) + + // Router + manager.setSyncBuffers(router.multiSoundcard.options.indexOf(router.multiSoundcard.selected)) + + let connectionsHandler = (connections, device) => { + for (let channel of Object.keys(connections)) { + let connection = connections[channel] + let type; + let index = 0; + let isOutput = true + if (connection.source.entity.name == "Mixer") { + switch (connection.source.address) { + case "Main": + type = 0; + break; + case "PFL": + type = 1; + break; + case "Booth": + type = 2; + break; + case "Left Bus": + case "Center Bus": + case "Right Bus": + index = connection.source.address.startsWith("Left") ? 0 : connection.source.address.startsWith("Right") ? 2 : 1; + type = 3; + break; + default: + console.error(`unsupported address: ${connection.source.address}`) + continue; + } + } else if (connection.sink.entity.name == "Mixer") { + isOutput = false; + type = connection.sink.address == "Auxiliary" ? 7 : 6; + index = connection.sink.instance; + } else if (connection.source.entity.name.startsWith("Deck ") && connection.source.address == "Output") { + type = 4; + index = parseInt(connection.source.entity.name.split(' ')[1])-1; + } else if (connection.sink.entity.name.startsWith("Deck ")) { + isOutput = false; + type = connection.source.address == "Output" ? 4 : 5; + index = parseInt(connection.sink.entity.name.split(' ')[1])-1; + } else if (connection.sink.entity.name == "Microphone") { + isOutput = false; + type = 6 + index = connection.sink.instance; + } else if (connection.sink.entity.name == "Auxiliary") { + isOutput = false; + type = 7; + index = connection.sink.instance; + } else if (connection.sink.entity.name == "RecordBroadcast") { + isOutput = false; + type = 8; + index = connection.sink.instance; + } else { + console.error(`unsupported entity: ${connection.source.entity.name} ${connection.sink.entity.name}`) + continue; + } + console.log(isOutput ? "addOutput" : "addInput", device, type, channel * 2, index) + if (isOutput) { + manager.addOutput(device, type, channel * 2, index) + } else { + manager.addInput(device, type, channel * 2, index) + } + } + }; + manager.clearOutputs() + for (let device of Object.keys(router.outputs)) { + for (let address of Object.keys(router.outputs[device].gateways)) { + let gateway = router.outputs[device].gateways[address] + let connections = gateway.node && gateway.node.assignedEdges ? gateway.node.assignedEdges() : {}; + connectionsHandler(connections, gateway.device) + } + } + manager.clearInputs() + for (let device of Object.keys(router.inputs)) { + for (let address of Object.keys(router.inputs[device].gateways)) { + let gateway = router.inputs[device].gateways[address] + let connections = gateway.node && gateway.node.assignedEdges ? gateway.node.assignedEdges() : {}; + connectionsHandler(connections, gateway.device) + } + } + + mainDelay.value = mainDelaySlider.value + boothDelay.value = boothDelaySlider.value + headDelay.value = headphoneDelaySlider.value + + root.committing = true + manager.commit() + } + + function load() { + const manager = Mixxx.SoundManager; + mainMixEnabled.selected = mainMixEnabled.options[mainEnabled.value ? 0 : 1 ] + mainOutputMode.selected = mainOutputMode.options[monoMix.value ? 0 : 1 ] + soundClock.selected = soundClock.options[manager.getForceNetworkClock() ? 1 : 0 ] + sampleRate.update(manager.getAPI()) + sampleRate.selected = qsTr("%1 Hz").arg(manager.getSampleRate()) + audioBuffer.currentIndex = manager.getAudioBufferSizeIndex() - 1 + microphoneMonitorMode.enabled = manager.hasMicInputs() + microphoneMonitorMode.currentIndex = micMonitorMode.value + soundApi.options = manager.getHostAPIList() + soundApi.selected = manager.getAPI() + keylock.update() + keylock.selected = keylock.options[manager.getKeylockEngine()] + + // Router + router.multiSoundcard.selected = router.multiSoundcard.options[manager.getSyncBuffers()] + router.update(manager.getAPI()) + + //Delays + mainDelayLabel.enabled = mainEnabled.value + mainDelaySlider.enabled = mainEnabled.value + mainDelaySlider.value = mainDelay.value + boothDelayLabel.enabled = boothEnabled.value + boothDelaySlider.enabled = boothEnabled.value + boothDelaySlider.value = boothDelay.value + headphoneDelayLabel.enabled = headEnabled.value + headphoneDelaySlider.enabled = headEnabled.value + headphoneDelaySlider.value = headDelay.value + + root.hasChanges = Qt.binding(function() { return router.hasChanges; }); + } + + Component.onCompleted: { + load() + } + + ColumnLayout { + anchors.fill: parent + + Item { + id: tabSection + Layout.fillWidth: true + Layout.preferredHeight: root.selectedIndex == 0 ? engine.height : delays.height + Mixxx.SettingGroup { + label: "Engine" + visible: root.selectedIndex == 0 + onActivated: { + root.selectedIndex = 0 + } + anchors.left: parent.left + anchors.right: parent.right + RowLayout { + id: engine + anchors.left: parent.left + anchors.right: parent.right + ColumnLayout { + Layout.fillWidth: true + Layout.alignment: Qt.AlignTop + RowLayout { + Text { + Mixxx.SettingParameter { + label: "Main Mix" + } + Layout.fillWidth: true + text: "Main Mix" + color: Theme.white + font.pixelSize: 14 + } + RatioChoice { + id: mainMixEnabled + options: [ + "on", + "off" + ] + selected: options[mainEnabled.value ? 0 : 1 ] + onSelectedChanged: { + root.hasChanges = true + } + } + } + + RowLayout { + Text { + Mixxx.SettingParameter { + label: "Main Output Mode" + } + Layout.fillWidth: true + text: "Main Output Mode" + color: Theme.white + font.pixelSize: 14 + } + RatioChoice { + id: mainOutputMode + options: [ + "mono", + "stereo" + ] + selected: options[monoMix.value ? 0 : 1 ] + onSelectedChanged: { + root.hasChanges = true + } + } + } + + RowLayout { + Text { + Mixxx.SettingParameter { + label: "Sound Clock" + } + Layout.fillWidth: true + text: "Sound Clock" + color: Theme.white + font.pixelSize: 14 + } + RatioChoice { + id: soundClock + options: [ + "soundcard", + "network" + ] + onSelectedChanged: { + root.hasChanges = true + } + } + } + + RowLayout { + Text { + Layout.fillWidth: true + text: "Keylock engine" + color: Theme.white + font.pixelSize: 14 + } + RatioChoice { + id: keylock + normalizedWidth: false + maxWidth: tabSection.width * 0.4 + options: [] + tooltips: [] + + function update() { + let options = [] + let tooltips = [] + for (let engine of Mixxx.SoundManager.getKeylockEngines()) { + switch (engine) { + case 0: + options.push(qsTr("Soundtouch")) + tooltips.push(qsTr("Faster")) + break + case 1: + options.push(qsTr("Rubberband")) + tooltips.push(qsTr("Better")) + break + case 2: + options.push(qsTr("Rubberband R3")) + tooltips.push(qsTr("Near-hi-fi quality")) + break + } + } + keylock.options = options + keylock.tooltips = tooltips + } + + onSelectedChanged: { + root.hasChanges = true + } + + Mixxx.SettingParameter { + label: "Keylock engine" + } + } + } + } + Item { + Layout.preferredWidth: 70 + } + ColumnLayout { + Layout.alignment: Qt.AlignTop + RowLayout { + Text { + Layout.fillWidth: true + text: "Sound API" + color: Theme.white + font.pixelSize: 14 + } + RatioChoice { + id: soundApi + maxWidth: tabSection.width * 0.4 + options: [] + + onSelectedChanged: { + root.hasChanges = true + router.update(soundApi.selected) + sampleRate.update(soundApi.selected) + } + + Mixxx.SettingParameter { + label: "Sound API" + } + } + } + RowLayout { + Text { + Mixxx.SettingParameter { + label: "Sample Rate" + } + Layout.fillWidth: true + text: "Sample Rate" + color: Theme.white + font.pixelSize: 14 + } + RatioChoice { + id: sampleRate + Layout.minimumWidth: sampleRate.implicitWidth + options: [] + function update(api) { + let data = [] + for (let sampleRate of Mixxx.SoundManager.getSampleRates(api)) { + data.push(qsTr("%1 Hz").arg(sampleRate)); + } + sampleRate.options = data + } + onSelectedChanged: { + root.hasChanges = true + } + } + } + + Connections { + target: sampleRate + function onSelectedChanged() { + let sampleRateValue = parseInt(sampleRate.selected) + audioBuffer.update(sampleRateValue) + } + } + + RowLayout { + Text { + Mixxx.SettingParameter { + label: "Audio Buffer" + } + Layout.fillWidth: true + text: "Audio Buffer" + color: Theme.white + font.pixelSize: 14 + } + Skin.ComboBox { + id: audioBuffer + spacing: 2 + clip: true + + font.pixelSize: 12 + + function update(sampleRate) { + let data = [] + let framesPerBuffer = 1; + for (; framesPerBuffer / sampleRate * 1000 < 1.0; framesPerBuffer *= 2) { + } + for (let i = 0; i < 7; i++) { + const latency = framesPerBuffer / sampleRate * 1000; + // i + 1 in the next line is a latency index as described in SSConfig + data.push(qsTr("%1 ms").arg(latency.toFixed(1))); + framesPerBuffer *= 2 + } + let currentIndex = audioBuffer.currentIndex + audioBuffer.model = data + audioBuffer.currentIndex = currentIndex + } + onCurrentIndexChanged: { + root.hasChanges = true + } + } + } + + RowLayout { + Text { + Mixxx.SettingParameter { + label: "Microphone Monitor Mode" + } + Layout.fillWidth: true + text: "Microphone Monitor Mode" + color: Theme.white + opacity: Mixxx.SoundManager.hasMicInputs() ? 1.0 : 0.5 + font.pixelSize: 14 + } + Skin.ComboBox { + id: microphoneMonitorMode + spacing: 2 + clip: true + opacity: enabled ? 1.0 : 0.5 + + font.pixelSize: 12 + model: [ + "Main output only", + "Main and booth outputs", + "Direct monitor (recording and broadcasting only)" + ] + onCurrentIndexChanged: { + root.hasChanges = true + } + } + } + } + } + } + + Mixxx.SettingGroup { + label: "Delays" + visible: root.selectedIndex == 1 + onActivated: { + root.selectedIndex = 1 + } + anchors.left: parent.left + anchors.right: parent.right + GridLayout { + id: delays + anchors.left: parent.left + anchors.right: parent.right + columns: 2 + rowSpacing: 0 + Text { + Mixxx.SettingParameter { + label: "Main Output" + } + id: mainDelayLabel + Layout.fillWidth: true + text: "Main Output" + color: Theme.white + opacity: enabled ? 1 : 0.5 + font.pixelSize: 14 + } + Skin.Slider { + id: mainDelaySlider + Layout.fillWidth: true + markers: ["0ms", "100ms", "1s", "10s", null] + suffix: "ms" + slider.to: 1000 + + onValueChanged: { + root.hasChanges = true + } + } + Text { + Mixxx.SettingParameter { + label: "Booth Output" + } + id: boothDelayLabel + Layout.fillWidth: true + text: "Booth Output" + color: Theme.white + opacity: enabled ? 1 : 0.5 + enabled: boothEnabled.value + font.pixelSize: 14 + } + Skin.Slider { + id: boothDelaySlider + Layout.fillWidth: true + markers: ["0ms", "100ms", "1s", "10s", null] + suffix: "ms" + enabled: boothEnabled.value + value: boothDelay.value + slider.to: 1000 + + onValueChanged: { + root.hasChanges = true + } + } + Text { + Mixxx.SettingParameter { + label: "Headphone Output" + } + id: headphoneDelayLabel + Layout.fillWidth: true + text: "Headphone Output" + color: Theme.white + opacity: enabled ? 1 : 0.5 + enabled: headEnabled.value + font.pixelSize: 14 + } + Skin.Slider { + id: headphoneDelaySlider + Layout.fillWidth: true + markers: ["0ms", "100ms", "1s", "10s", null] + suffix: "ms" + enabled: headEnabled.value + value: headDelay.value + slider.to: 1000 + + onValueChanged: { + root.hasChanges = true + } + } + } + } + + Mixxx.SettingGroup { + label: "Stats" + visible: root.selectedIndex == 2 + onActivated: { + root.selectedIndex = 2 + } + Mixxx.SettingParameter { + label: "A white square" + Rectangle { + width: 20 + height: 20 + color: 'white' + } + } + } + } + Mixxx.SettingGroup { + label: "Router" + Layout.fillWidth: true + Layout.fillHeight: true + AudioRouter { + id: router + anchors.fill: parent + } + Rectangle { + anchors.fill: parent + visible: root.committing + color: Qt.alpha('grey', 0.3) + MouseArea { + anchors.fill: parent + preventStealing: true + hoverEnabled: true + + onWheel: (mouse)=> { + mouse.accepted = true + } + } + } + } + RowLayout { + Layout.topMargin: 4 + Skin.FormButton { + enabled: !root.committing + visible: root.hasChanges + text: "Cancel" + opacity: enabled ? 1.0 : 0.5 + backgroundColor: "#7D3B3B" + activeColor: "#999999" + onPressed: { + root.load() + } + } + Item { + Layout.fillWidth: true + } + Text { + Layout.alignment: Qt.AlignVCenter + Layout.rightMargin: 16 + id: errorMessage + text: "" + color: "#7D3B3B" + } + Skin.FormButton { + enabled: root.hasChanges && !root.committing + text: "Save" + opacity: enabled ? 1.0 : 0.5 + backgroundColor: root.hasChanges ? "#3a60be" : "#3F3F3F" + activeColor: "#999999" + onPressed: { + errorMessage.text = "" + root.save() + } + } + } + } + Connections { + target: Mixxx.SoundManager + function onCommitted(error) { + root.committing = false + if (error) { + errorMessage.text = error + } + root.load() + } + } +} diff --git a/res/qml/Settings/StatsPerformance.qml b/res/qml/Settings/StatsPerformance.qml new file mode 100644 index 000000000000..a61b68730339 --- /dev/null +++ b/res/qml/Settings/StatsPerformance.qml @@ -0,0 +1,16 @@ +import QtQuick +import Mixxx 1.0 as Mixxx + +Category { + label: "Stats & Performance" + + Mixxx.SettingParameter { + label: "A grey square" + + Rectangle { + color: 'grey' + height: 20 + width: 20 + } + } +} diff --git a/res/qml/Slider.qml b/res/qml/Slider.qml index bcae15fdde9b..ae9f828f73f0 100644 --- a/res/qml/Slider.qml +++ b/res/qml/Slider.qml @@ -1,49 +1,170 @@ -import Mixxx.Controls 1.0 as MixxxControls import Qt5Compat.GraphicalEffects import QtQuick 2.12 +import QtQuick.Controls +import QtQuick.Layouts import "Theme" -MixxxControls.Slider { +RowLayout { id: root + property list markers: ["", ""] - property alias fg: handleImage.source - property alias bg: backgroundImage.source + property alias suffix: textInputSection.suffix + property alias slider: control + property alias value: control.value - bar: true - barMargin: 10 - implicitWidth: backgroundImage.implicitWidth - implicitHeight: backgroundImage.implicitHeight + height: 30 - Image { - id: handleImage + Slider { + id: control - visible: false - source: Theme.imgSliderHandle - fillMode: Image.PreserveAspectFit - } - - handle: Item { - id: handleItem + Layout.fillWidth: true - width: handleImage.paintedWidth - height: handleImage.paintedHeight - x: root.horizontal ? (root.visualPosition * (root.width - width)) : ((root.width - width) / 2) - y: root.vertical ? (root.visualPosition * (root.height - height)) : ((root.height - height) / 2) + background: Item { + x: control.leftPadding + 7 + implicitWidth: 200 + implicitHeight: 4 + width: control.availableWidth - 7 + height: control.availableHeight + Rectangle { + width: parent.width + height: 4 + radius: 2 + color: "#181818" + } + Repeater { + id: delegate + model: markers + anchors.fill: parent + anchors.leftMargin: 7 + Item { + required property int index + required property var modelData + x: parent.width * (index / (delegate.model.length - 1)) + y: -4 + height: control.availableHeight - DropShadow { - source: handleImage - width: parent.width + 5 - height: parent.height + 5 - radius: 5 - verticalOffset: 5 - color: "#80000000" + Rectangle { + id: mark + visible: modelData != null + anchors { + top: parent.top + } + width: 1 + height: 11 + color: Qt.alpha(Theme.white, 0.25) + } + Text { + id: label + visible: modelData != null + anchors { + top: mark.bottom + topMargin: 4 + horizontalCenter: mark.left + } + color: Qt.alpha(Theme.white, 0.25) + font.pixelSize: 9 + text: modelData ?? "" + } + } + } + } + handle: Item { + x: control.leftPadding + control.visualPosition * (control.availableWidth - width) + y: -5 + width: 14 + height: 14 + Rectangle { + id: handle + anchors.fill: parent + radius: 7 + color: Theme.accentColor + } + InnerShadow { + id: handleEffect1 + anchors.fill: parent + samples: 16 + horizontalOffset: 0 + verticalOffset: 0 + radius: 16.0 + color: "#0E2A54" + source: handle + } + DropShadow { + id: handleEffect2 + anchors.fill: parent + source: handleEffect1 + horizontalOffset: 0 + verticalOffset: 0 + radius: 12.0 + color: Qt.alpha(Theme.darkGray, 0.25) + } } } + FocusScope { + id: textInputSection + Layout.leftMargin: 17 + Layout.minimumWidth: fontMetrics.advanceWidth + 8 + Layout.preferredHeight: 30 + Layout.margins: 4 - background: Image { - id: backgroundImage + property string suffix: "" + visible: suffix.length > 0 - anchors.fill: parent - anchors.margins: root.barMargin + Rectangle { + id: backgroundInput + radius: 4 + color: Theme.darkGray2 + anchors.fill: parent + anchors.margins: 4 + } + DropShadow { + id: dropSetting + anchors.fill: parent + horizontalOffset: 0 + verticalOffset: 0 + radius: 4.0 + color: Theme.darkGray + source: backgroundInput + } + InnerShadow { + id: effect2 + anchors.fill: parent + source: dropSetting + spread: 0.2 + radius: 12 + samples: 24 + horizontalOffset: 0 + verticalOffset: 0 + color: "#353535" + } + Item { + anchors.fill: parent + anchors.margins: 4 + TextInput { + anchors.left: parent.left + anchors.right: inputField.left + anchors.margins: 3 + focus: true + color: Qt.alpha(acceptableInput ? Theme.white : Theme.warningColor, root.enabled ? 1 : 0.5) + onAccepted: { + control.value = parseInt(text) + } + text: Math.round(control.value) + horizontalAlignment: TextInput.AlignRight + validator: IntValidator {bottom: control.from; top: control.to} + } + Text { + id: inputField + anchors.right: parent.right + anchors.margins: textInputSection.suffix.length > 0 ? 10 : 0 + text: textInputSection.suffix + color: Qt.alpha(Theme.white, root.enabled ? 1 : 0.5) + TextMetrics { + id: fontMetrics + font.family: inputField.font.family + text: `${control.to} ${parent.text}` + } + } + } } } diff --git a/res/qml/Theme/Theme.qml b/res/qml/Theme/Theme.qml index ca1b4d498e51..31154df62ce0 100644 --- a/res/qml/Theme/Theme.qml +++ b/res/qml/Theme/Theme.qml @@ -2,65 +2,73 @@ import QtQuick 2.12 pragma Singleton QtObject { - property color white: "#e3d7fb" - property color yellow: "#fca001" - property color red: "#ea2a4e" + property color accent: "#2D4EA1" + property color accentColor: "#3a60be" + property color backgroundColor: "#2E2E2E" property color blue: "#01dcfc" - property color green: "#85c85b" - property color lightGray: "#747474" - property color lightGray2: "#b0b0b0" - property color midGray: "#696969" - property color darkGray: "#0f0f0f" - property color darkGray2: "#2e2e2e" - property color eqHighColor: white - property color eqMidColor: white - property color eqLowColor: white - property color eqFxColor: red - property color effectColor: yellow - property color effectUnitColor: red property color bpmSliderBarColor: green - property color volumeSliderBarColor: blue - property color gainKnobColor: blue - property color samplerColor: blue - property color crossfaderOrientationColor: lightGray + property color buttonNormalColor: midGray property color crossfaderBarColor: red - property color toolbarBackgroundColor: darkGray2 - property color pflActiveButtonColor: blue - property color backgroundColor: "#1e1e20" + property color crossfaderOrientationColor: lightGray + property color darkGray: "#0f0f0f" + property color darkGray2: "#242424" + property color darkGray3: "#202020" property color deckActiveColor: green property color deckBackgroundColor: darkGray - property color knobBackgroundColor: "#262626" property color deckLineColor: darkGray2 - property color deckTextColor: lightGray2 + property color deckTextColor: white + property color effectColor: yellow + property color effectUnitColor: red property color embeddedBackgroundColor: "#a0000000" - property color buttonNormalColor: midGray - property color textColor: lightGray2 + property color eqFxColor: red + property color eqHighColor: white + property color eqLowColor: white + property color eqMidColor: white + property color gainKnobColor: blue + property color green: "#85c85b" + property color knobBackgroundColor: "#262626" + property color lightGray2: "#b0b0b0" + property color lightGray: "#747474" + property color midGray: "#696969" + property color panelSplitterBackground: backgroundColor + property color panelSplitterHandleActive: lightGray2 + property color panelSplitterHandle: midGray + property color pflActiveButtonColor: blue + property color red: "#ea2a4e" + property color samplerColor: blue + property color sunkenBackgroundColor: "#0C0C0C" + property color textColor: white property color toolbarActiveColor: white - property color waveformPrerollColor: midGray - property color waveformPostrollColor: midGray + property color toolbarBackgroundColor: darkGray2 + property color volumeSliderBarColor: blue + property color warningColor: "#7D3B3B" property color waveformBeatColor: lightGray property color waveformCursorColor: white property color waveformMarkerDefault: '#ff7a01' - property color waveformMarkerLabel: Qt.rgba(255, 255, 255, 0.8) property color waveformMarkerIntroOutroColor: '#2c5c9a' + property color waveformMarkerLabel: Qt.rgba(255, 255, 255, 0.8) property color waveformMarkerLoopColor: '#00b400' property color waveformMarkerLoopColorDisabled: '#FFFFFF' - property string fontFamily: "Open Sans" - property int textFontPixelSize: 14 + property color waveformPostrollColor: midGray + property color waveformPrerollColor: midGray + property color white: "#D9D9D9" + property color yellow: "#fca001" property int buttonFontPixelSize: 10 + property int textFontPixelSize: 14 + property string fontFamily: "Open Sans" + property string imgBpmSliderBackground: "images/slider_bpm.svg" property string imgButton: "images/button.svg" property string imgButtonPressed: "images/button_pressed.svg" - property string imgSliderHandle: "images/slider_handle.svg" - property string imgBpmSliderBackground: "images/slider_bpm.svg" - property string imgVolumeSliderBackground: "images/slider_volume.svg" - property string imgCrossfaderHandle: "images/slider_handle_crossfader.svg" property string imgCrossfaderBackground: "images/slider_crossfader.svg" - property string imgMicDuckingSliderHandle: "images/slider_handle_micducking.svg" - property string imgMicDuckingSlider: "images/slider_micducking.svg" - property string imgPopupBackground: imgButton + property string imgCrossfaderHandle: "images/slider_handle_crossfader.svg" property string imgKnob: "images/knob.svg" - property string imgKnobShadow: "images/knob_shadow.svg" property string imgKnobMini: "images/miniknob.svg" property string imgKnobMiniShadow: "images/miniknob_shadow.svg" + property string imgKnobShadow: "images/knob_shadow.svg" + property string imgMicDuckingSlider: "images/slider_micducking.svg" + property string imgMicDuckingSliderHandle: "images/slider_handle_micducking.svg" + property string imgPopupBackground: imgButton property string imgSectionBackground: "images/section.svg" + property string imgSliderHandle: "images/slider_handle.svg" + property string imgVolumeSliderBackground: "images/slider_volume.svg" } diff --git a/res/qml/WaveformDisplay.qml b/res/qml/WaveformDisplay.qml index bc3b74c59f68..18bc24780554 100644 --- a/res/qml/WaveformDisplay.qml +++ b/res/qml/WaveformDisplay.qml @@ -10,6 +10,8 @@ Item { required property string group property bool splitStemTracks: false + readonly property string zoomGroup: Mixxx.Config.waveformZoomSynchronization() ? "[Channel1]" : group + enum MouseStatus { Normal, Bending, @@ -22,6 +24,13 @@ Item { zoom: zoomControl.value backgroundColor: "#5e000000" + Behavior on zoom { + SmoothedAnimation { + duration: 500 + velocity: -1 + } + } + Mixxx.WaveformRendererEndOfTrack { color: '#ff8872' endOfTrackWarningTime: 30 @@ -62,11 +71,11 @@ Item { } } - Mixxx.WaveformRendererRGB { + Mixxx.WaveformRendererFiltered { axesColor: '#a1a1a1a1' - lowColor: '#ff2154d7' - midColor: '#cfb26606' - highColor: '#e5029c5c' + lowColor: '#2154D7' + midColor: '#97632D' + highColor: '#D5C2A2' gainAll: 1.0 gainLow: 1.0 @@ -84,13 +93,14 @@ Item { } Mixxx.WaveformRendererMark { - playMarkerColor: 'cyan' - playMarkerBackground: 'orange' + playMarkerColor: '#D9D9D9' + playMarkerBackground: '#D9D9D9' defaultMark: Mixxx.WaveformMark { align: "bottom|right" color: "#00d9ff" textColor: "#1a1a1a" text: " %1 " + endIcon: Qt.resolvedUrl("images/jump_%1.svg") } untilMark.showTime: true @@ -180,8 +190,14 @@ Item { Mixxx.ControlProxy { id: zoomControl - group: root.group + group: root.zoomGroup key: "waveform_zoom" + + Component.onCompleted: { + if (group == root.group) { + value = Mixxx.Config.waveformDefaultZoom() + } + } } MouseArea { @@ -243,10 +259,10 @@ Item { mouseStatus = WaveformDisplay.MouseStatus.Normal; } - onWheel: { - if (wheel.angleDelta.y < 0 && zoomControl.value > 1) { + onWheel: (mouse) => { + if (mouse.angleDelta.y < 0 && zoomControl.value > 1) { zoomControl.value -= 1; - } else if (wheel.angleDelta.y > 0 && zoomControl.value < 10.0) { + } else if (mouse.angleDelta.y > 0 && zoomControl.value < 10.0) { zoomControl.value += 1; } } diff --git a/res/qml/WaveformRow.qml b/res/qml/WaveformRow.qml deleted file mode 100644 index be129fc42bfa..000000000000 --- a/res/qml/WaveformRow.qml +++ /dev/null @@ -1,380 +0,0 @@ -import "." as Skin -import Mixxx 1.0 as Mixxx -import QtQuick 2.14 -import QtQuick.Shapes 1.12 -import "Theme" - -Item { - id: root - - enum MouseStatus { - Normal, - Bending, - Scratching - } - - property string group // required - property var deckPlayer: Mixxx.PlayerManager.getPlayer(group) - - Item { - id: waveformContainer - - property real duration: samplesControl.value / sampleRateControl.value - - anchors.fill: parent - clip: true - - Mixxx.ControlProxy { - id: samplesControl - - group: root.group - key: "track_samples" - } - - Mixxx.ControlProxy { - id: sampleRateControl - - group: root.group - key: "track_samplerate" - } - - Mixxx.ControlProxy { - id: playPositionControl - - group: root.group - key: "playposition" - } - - Mixxx.ControlProxy { - id: rateRatioControl - - group: root.group - key: "rate_ratio" - } - - Mixxx.ControlProxy { - id: zoomControl - - group: root.group - key: "waveform_zoom" - } - - Mixxx.ControlProxy { - id: introStartPosition - - group: root.group - key: "intro_start_position" - } - - Mixxx.ControlProxy { - id: introEndPosition - - group: root.group - key: "intro_end_position" - } - - Mixxx.ControlProxy { - id: outroStartPosition - - group: root.group - key: "outro_start_position" - } - - Mixxx.ControlProxy { - id: outroEndPosition - - group: root.group - key: "outro_end_position" - } - - Mixxx.ControlProxy { - id: loopStartPosition - - group: root.group - key: "loop_start_position" - } - - Mixxx.ControlProxy { - id: loopEndPosition - - group: root.group - key: "loop_end_position" - } - - Mixxx.ControlProxy { - id: loopEnabled - - group: root.group - key: "loop_enabled" - } - - Mixxx.ControlProxy { - id: mainCuePosition - - group: root.group - key: "cue_point" - } - - Item { - id: waveform - - property real effectiveZoomFactor: (1 / rateRatioControl.value) * (100 / zoomControl.value) - - width: waveformContainer.duration * effectiveZoomFactor - height: parent.height - x: playMarker.screenPosition * waveformContainer.width - playPositionControl.value * width - visible: root.deckPlayer.isLoaded - - WaveformShader { - group: root.group - anchors.fill: parent - } - - Shape { - id: preroll - - property real triangleHeight: waveform.height - property real triangleWidth: 0.25 * waveform.effectiveZoomFactor - property int numTriangles: Math.ceil(width / triangleWidth) - - anchors.top: waveform.top - anchors.right: waveform.left - width: Math.max(0, waveform.x) - height: waveform.height - - ShapePath { - strokeColor: Theme.waveformPrerollColor - strokeWidth: 1 - fillColor: "transparent" - - PathMultiline { - paths: { - let p = []; - for (let i = 0; i < preroll.numTriangles; i++) { - p.push([ - Qt.point(preroll.width - i * preroll.triangleWidth, preroll.triangleHeight / 2), - Qt.point(preroll.width - (i + 1) * preroll.triangleWidth, 0), - Qt.point(preroll.width - (i + 1) * preroll.triangleWidth, preroll.triangleHeight), - Qt.point(preroll.width - i * preroll.triangleWidth, preroll.triangleHeight / 2), - ]); - } - return p; - } - } - } - } - - Shape { - id: postroll - - property real triangleHeight: waveform.height - property real triangleWidth: 0.25 * waveform.effectiveZoomFactor - property int numTriangles: Math.ceil(width / triangleWidth) - - anchors.top: waveform.top - anchors.left: waveform.right - width: waveformContainer.width / 2 - height: waveform.height - - ShapePath { - strokeColor: Theme.waveformPostrollColor - strokeWidth: 1 - fillColor: "transparent" - - PathMultiline { - paths: { - let p = []; - for (let i = 0; i < postroll.numTriangles; i++) { - p.push([ - Qt.point(i * postroll.triangleWidth, postroll.triangleHeight / 2), - Qt.point((i + 1) * postroll.triangleWidth, 0), - Qt.point((i + 1) * postroll.triangleWidth, postroll.triangleHeight), - Qt.point(i * postroll.triangleWidth, postroll.triangleHeight / 2), - ]); - } - return p; - } - } - } - } - - Repeater { - model: root.deckPlayer.beatsModel - - Rectangle { - property real alpha: 0.9 // TODO: Make this configurable (i.e., "[Waveform],beatGridAlpha" config option) - - width: 1 - height: waveform.height - x: (framePosition * 2 / samplesControl.value) * waveform.width - color: Theme.waveformBeatColor - } - } - - Skin.WaveformIntroOutro { - id: intro - - visible: introStartPosition.value != -1 || introEndPosition.value != -1 - - height: waveform.height - x: ((introStartPosition.value != -1 ? introStartPosition.value : introEndPosition.value) / samplesControl.value) * waveform.width - width: introEndPosition.value == -1 ? 0 : ((introEndPosition.value - introStartPosition.value) / samplesControl.value) * waveform.width - } - - Skin.WaveformIntroOutro { - id: outro - - visible: outroStartPosition.value != -1 || outroEndPosition.value != -1 - isIntro: false - - height: waveform.height - x: ((outroStartPosition.value != -1 ? outroStartPosition.value : outroEndPosition.value) / samplesControl.value) * waveform.width - width: outroEndPosition.value == -1 || outroStartPosition.value == -1 ? 0 : ((outroEndPosition.value - outroStartPosition.value) / samplesControl.value) * waveform.width - } - - Skin.WaveformLoop { - id: loop - - visible: loopStartPosition.value != -1 && loopEndPosition.value != -1 - - height: waveform.height - x: (loopStartPosition.value / samplesControl.value) * waveform.width - width: ((loopEndPosition.value - loopStartPosition.value) / samplesControl.value) * waveform.width - enabled: loopEnabled.value - } - - Repeater { - model: root.deckPlayer.hotcuesModel - - Item { - id: cue - - required property int startPosition - required property int endPosition - required property string label - required property bool isLoop - required property int hotcueNumber - - Skin.WaveformHotcue { - group: root.group - hotcueNumber: cue.hotcueNumber + 1 - label: cue.label - isLoop: cue.isLoop - - x: (startPosition * 2 / samplesControl.value) * waveform.width - width: cue.isLoop ? ((endPosition - startPosition) * 2 / samplesControl.value) * waveform.width : null - height: waveform.height - } - } - } - - Skin.WaveformCue { - id: maincue - - height: waveform.height - x: (mainCuePosition.value / samplesControl.value) * waveform.width - } - } - } - - Shape { - id: playMarkerShape - - anchors.fill: parent - - ShapePath { - id: playMarker - - property real screenPosition: 0.5 - - startX: playMarkerShape.width * playMarker.screenPosition - startY: 0 - strokeColor: Theme.waveformCursorColor - strokeWidth: 1 - - PathLine { - id: marker - - x: playMarkerShape.width * playMarker.screenPosition - y: playMarkerShape.height - } - } - } - - Mixxx.ControlProxy { - id: scratchPositionEnableControl - - group: root.group - key: "scratch_position_enable" - } - - Mixxx.ControlProxy { - id: scratchPositionControl - - group: root.group - key: "scratch_position" - } - - Mixxx.ControlProxy { - id: wheelControl - - group: root.group - key: "wheel" - } - - MouseArea { - property int mouseStatus: WaveformRow.MouseStatus.Normal - property point mouseAnchor: Qt.point(0, 0) - - anchors.fill: parent - acceptedButtons: Qt.LeftButton | Qt.RightButton - onPressed: { - mouseAnchor = Qt.point(mouse.x, mouse.y); - if (mouse.button == Qt.LeftButton) { - if (mouseStatus == WaveformRow.MouseStatus.Bending) - wheelControl.parameter = 0.5; - - mouseStatus = WaveformRow.MouseStatus.Scratching; - scratchPositionEnableControl.value = 1; - // TODO: Calculate position properly - scratchPositionControl.value = -mouse.x * waveform.effectiveZoomFactor * 2; - console.log(mouse.x); - } else { - if (mouseStatus == WaveformRow.MouseStatus.Scratching) - scratchPositionEnableControl.value = 0; - - wheelControl.parameter = 0.5; - mouseStatus = WaveformRow.MouseStatus.Bending; - } - } - onPositionChanged: { - switch (mouseStatus) { - case WaveformRow.MouseStatus.Bending: { - const diff = mouse.x - mouseAnchor.x; - // Start at the middle of [0.0, 1.0], and emit values based on how far - // the mouse has traveled horizontally. Note, for legacy (MIDI) reasons, - // this is tuned to 127. - const v = 0.5 + (diff / 1270); - // clamp to [0.0, 1.0] - wheelControl.parameter = Mixxx.MathUtils.clamp(v, 0, 1); - break; - }; - case WaveformRow.MouseStatus.Scratching: - // TODO: Calculate position properly - scratchPositionControl.value = -mouse.x * waveform.effectiveZoomFactor * 2; - break; - } - } - onReleased: { - switch (mouseStatus) { - case WaveformRow.MouseStatus.Bending: - wheelControl.parameter = 0.5; - break; - case WaveformRow.MouseStatus.Scratching: - scratchPositionEnableControl.value = 0; - break; - } - mouseStatus = WaveformRow.MouseStatus.Normal; - } - } -} diff --git a/res/qml/WaveformShader.qml b/res/qml/WaveformShader.qml deleted file mode 100644 index 33de4acde0cf..000000000000 --- a/res/qml/WaveformShader.qml +++ /dev/null @@ -1,88 +0,0 @@ -import Mixxx 1.0 as Mixxx -import QtQuick 2.12 - -ShaderEffect { - id: root - - property string group // required - property var deckPlayer: Mixxx.PlayerManager.getPlayer(group) - property size framebufferSize: Qt.size(width, height) - property int waveformLength: root.deckPlayer.waveformLength - property int textureSize: root.deckPlayer.waveformTextureSize - property int textureStride: root.deckPlayer.waveformTextureStride - property real firstVisualIndex: 1 - property real lastVisualIndex: root.deckPlayer.waveformLength / 2 - property color axesColor: "#FFFFFF" - property color highColor: "#0000FF" - property color midColor: "#00FF00" - property color lowColor: "#FF0000" - property real highGain: filterWaveformEnableControl.value ? (filterHighKillControl.value ? 0 : filterHighControl.value) : 1 - property real midGain: filterWaveformEnableControl.value ? (filterMidKillControl.value ? 0 : filterMidControl.value) : 1 - property real lowGain: filterWaveformEnableControl.value ? (filterLowKillControl.value ? 0 : filterLowControl.value) : 1 - property real allGain: pregainControl.value - property Image waveformTexture - - fragmentShader: "qrc:/shaders/rgbsignal_qml.frag.qsb" - - Mixxx.ControlProxy { - id: pregainControl - - group: root.group - key: "pregain" - } - - Mixxx.ControlProxy { - id: filterWaveformEnableControl - - group: root.group - key: "filterWaveformEnable" - } - - Mixxx.ControlProxy { - id: filterHighControl - - group: "[EqualizerRack1_" + root.group + "_Effect1]" - key: "parameter3" - } - - Mixxx.ControlProxy { - id: filterHighKillControl - - group: "[EqualizerRack1_" + root.group + "_Effect1]" - key: "button_parameter3" - } - - Mixxx.ControlProxy { - id: filterMidControl - - group: "[EqualizerRack1_" + root.group + "_Effect1]" - key: "parameter2" - } - - Mixxx.ControlProxy { - id: filterMidKillControl - - group: "[EqualizerRack1_" + root.group + "_Effect1]" - key: "button_parameter2" - } - - Mixxx.ControlProxy { - id: filterLowControl - - group: "[EqualizerRack1_" + root.group + "_Effect1]" - key: "parameter1" - } - - Mixxx.ControlProxy { - id: filterLowKillControl - - group: "[EqualizerRack1_" + root.group + "_Effect1]" - key: "button_parameter1" - } - - waveformTexture: Image { - visible: false - layer.enabled: false - source: root.deckPlayer.waveformTexture - } -} diff --git a/res/qml/images/gear.svg b/res/qml/images/gear.svg new file mode 100644 index 000000000000..c4f6cebc1aaa --- /dev/null +++ b/res/qml/images/gear.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + diff --git a/res/qml/images/jump_backward.svg b/res/qml/images/jump_backward.svg new file mode 100644 index 000000000000..9131647878b1 --- /dev/null +++ b/res/qml/images/jump_backward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/qml/images/jump_forward.svg b/res/qml/images/jump_forward.svg new file mode 100644 index 000000000000..e16aff0117d4 --- /dev/null +++ b/res/qml/images/jump_forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/qml/images/library_computer.png b/res/qml/images/library_computer.png new file mode 100644 index 000000000000..c8fd2fd4d368 Binary files /dev/null and b/res/qml/images/library_computer.png differ diff --git a/res/qml/images/library_crates.png b/res/qml/images/library_crates.png new file mode 100644 index 000000000000..4d6874104abe Binary files /dev/null and b/res/qml/images/library_crates.png differ diff --git a/res/qml/images/library_playlist.png b/res/qml/images/library_playlist.png new file mode 100644 index 000000000000..c6f88e1ce98c Binary files /dev/null and b/res/qml/images/library_playlist.png differ diff --git a/res/qml/main.qml b/res/qml/main.qml index ced85a02856e..f79470440c41 100644 --- a/res/qml/main.qml +++ b/res/qml/main.qml @@ -1,86 +1,79 @@ import "." as Skin import Mixxx 1.0 as Mixxx import QtQuick 2.12 -import QtQuick.Controls 2.12 +import QtQuick.Controls +import QtQuick.Layouts +import Qt5Compat.GraphicalEffects import "Theme" ApplicationWindow { id: root + property alias maximizeLibrary: maximizeLibraryButton.checked property alias show4decks: show4DecksButton.checked property alias showEffects: showEffectsButton.checked property alias showSamplers: showSamplersButton.checked - property alias maximizeLibrary: maximizeLibraryButton.checked - width: 1920 - height: 1080 color: Theme.backgroundColor + height: 1080 visible: true + width: 1920 Column { + id: content anchors.fill: parent + move: Transition { + NumberAnimation { + duration: 150 + properties: "x,y" + } + } + Rectangle { id: toolbar - - width: parent.width - height: 36 color: Theme.toolbarBackgroundColor + height: 36 radius: 1 + width: parent.width - Row { - padding: 5 - spacing: 5 + RowLayout { + anchors.fill: parent Skin.Button { id: show4DecksButton - - text: "4 Decks" activeColor: Theme.white checkable: true + text: "4 Decks" } - Skin.Button { id: maximizeLibraryButton - - text: "Library" activeColor: Theme.white checkable: true + text: "Library" } - Skin.Button { id: showEffectsButton - - text: "Effects" activeColor: Theme.white checkable: true + text: "Effects" } - Skin.Button { id: showSamplersButton - - text: "Sampler" activeColor: Theme.white checkable: true + text: "Sampler" } - - Skin.Button { - id: showPreferencesButton - - text: "Prefs" - activeColor: Theme.white - onClicked: { - Mixxx.PreferencesDialog.show(); - } + Item { + Layout.fillWidth: true } - Skin.Button { id: showDevToolsButton - - text: "Develop" activeColor: Theme.white checkable: true checked: devToolsWindow.visible + text: "Develop" + onClicked: { if (devToolsWindow.visible) devToolsWindow.close(); @@ -90,132 +83,152 @@ ApplicationWindow { DeveloperToolsWindow { id: devToolsWindow - - width: 640 height: 480 + width: 640 + } + } + Skin.Button { + id: showPreferencesButton + activeColor: Theme.white + checked: settingsPopup.opened + icon.height: 16 + icon.source: "images/gear.svg" + icon.width: 16 + implicitWidth: implicitHeight + + onClicked: { + if (!settingsPopup.opened) { + settingsPopup.open(); + } + } + onPressAndHold: { + Mixxx.PreferencesDialog.show(); } } } } - Skin.WaveformDisplay { id: deck3waveform - group: "[Channel3]" - width: root.width height: 120 visible: root.show4decks && !root.maximizeLibrary + width: root.width - FadeBehavior on visible { + FadeBehavior on visible { fadeTarget: deck3waveform } } - Skin.WaveformDisplay { id: deck1waveform - group: "[Channel1]" - width: root.width height: 120 visible: !root.maximizeLibrary + width: root.width - FadeBehavior on visible { + FadeBehavior on visible { fadeTarget: deck1waveform } } - Skin.WaveformDisplay { id: deck2waveform - group: "[Channel2]" - width: root.width height: 120 visible: !root.maximizeLibrary + width: root.width - FadeBehavior on visible { + FadeBehavior on visible { fadeTarget: deck2waveform } } - Skin.WaveformDisplay { id: deck4waveform - group: "[Channel4]" - width: root.width height: 120 visible: root.show4decks && !root.maximizeLibrary + width: root.width - FadeBehavior on visible { + FadeBehavior on visible { fadeTarget: deck4waveform } } - Skin.DeckRow { id: decks12 - leftDeckGroup: "[Channel1]" + minimized: root.maximizeLibrary rightDeckGroup: "[Channel2]" width: parent.width - minimized: root.maximizeLibrary } - Skin.CrossfaderRow { id: crossfader - crossfaderWidth: decks12.mixer.width - width: parent.width visible: !root.maximizeLibrary + width: parent.width - Skin.FadeBehavior on visible { + Skin.FadeBehavior on visible { fadeTarget: crossfader } } - Skin.DeckRow { id: decks34 - leftDeckGroup: "[Channel3]" - rightDeckGroup: "[Channel4]" - width: parent.width minimized: root.maximizeLibrary + rightDeckGroup: "[Channel4]" visible: root.show4decks + width: parent.width - Skin.FadeBehavior on visible { + Skin.FadeBehavior on visible { fadeTarget: decks34 } } - Skin.SamplerRow { id: samplers - - width: parent.width visible: root.showSamplers + width: parent.width - Skin.FadeBehavior on visible { + Skin.FadeBehavior on visible { fadeTarget: samplers } } - Skin.EffectRow { id: effects - - width: parent.width visible: root.showEffects + width: parent.width - Skin.FadeBehavior on visible { + Skin.FadeBehavior on visible { fadeTarget: effects } } - Skin.Library { - width: parent.width height: parent.height - y + width: parent.width } - - move: Transition { - NumberAnimation { - properties: "x,y" - duration: 150 + } + Skin.Settings { + id: settingsPopup + height: Math.max(840, parent.height * 0.7) + modal: true + width: Math.max(1400, parent.width * 0.8) + x: Math.round((parent.width - width) / 2) + y: Math.round((parent.height - height) / 2) + + Overlay.modal: Rectangle { + id: overlayModal + property real radius: 12 + + readonly property bool hasHardwareAcceleration: Mixxx.Config.useAcceleration() + + anchors.fill: parent + color: Qt.alpha('#00000010', hasHardwareAcceleration ? 1.0 : 0.6) + + Repeater { + model: hasHardwareAcceleration ? 1 : 0 + GaussianBlur { + anchors.fill: overlayModal + deviation: 4 + radius: Math.max(0, overlayModal.radius) + samples: 16 + source: content + } } } } diff --git a/res/skins/Deere/style.qss b/res/skins/Deere/style.qss index 698132fbae35..0b7e9c58b9a1 100644 --- a/res/skins/Deere/style.qss +++ b/res/skins/Deere/style.qss @@ -2439,6 +2439,18 @@ WEffectChainPresetSelector::indicator:unchecked:selected, outline: none; } +#CueStandardButton { +/* tall button, about the same height as cue number + label edit box */ + width: 28px; + height: 46px; + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 20px; + qproperty-icon: url(skin:/../Deere/icon/ic_loop_in_48px.svg); + background-color: #3B3B3B; + border-radius: 2px; + outline: none; +} + #CueSavedLoopButton { /* tall button, about the same height as cue number + label edit box */ width: 28px; @@ -2451,11 +2463,23 @@ WEffectChainPresetSelector::indicator:unchecked:selected, outline: none; } -#CueDeleteButton:hover, #CueSavedLoopButton:hover { +#CueSavedJumpButton { +/* tall button, about the same height as cue number + label edit box */ + width: 28px; + height: 46px; + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 20px; + qproperty-icon: url(skin:/../Deere/icon/ic_beatjump_forward_48px.svg); + background-color: #3B3B3B; + border-radius: 2px; + outline: none; +} + +#CueDeleteButton:hover, #CueStandardButton:hover, #CueSavedLoopButton:hover, #CueSavedJumpButton:hover { background-color: #4B4B4B; } -#CueSavedLoopButton:checked { +#CueDeleteButton:checked, #CueStandardButton:checked, #CueSavedLoopButton:checked, #CueSavedJumpButton:checked { background-color: #006596; } diff --git a/res/skins/LateNight/classic/buttons/btn__bpm_select_edit.svg b/res/skins/LateNight/classic/buttons/btn__bpm_select_edit.svg new file mode 100644 index 000000000000..c707ee4610d8 --- /dev/null +++ b/res/skins/LateNight/classic/buttons/btn__bpm_select_edit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/skins/LateNight/classic/buttons/btn__bpm_select_tap.svg b/res/skins/LateNight/classic/buttons/btn__bpm_select_tap.svg new file mode 100644 index 000000000000..8cd1a6190baa --- /dev/null +++ b/res/skins/LateNight/classic/buttons/btn__bpm_select_tap.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_minus.svg b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_minus.svg new file mode 100644 index 000000000000..f27274bf9864 --- /dev/null +++ b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_minus.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_minus_pressed.svg b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_minus_pressed.svg new file mode 100644 index 000000000000..ed779861a128 --- /dev/null +++ b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_minus_pressed.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_plus.svg b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_plus.svg new file mode 100644 index 000000000000..e88f557fb0a6 --- /dev/null +++ b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_plus.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_plus_pressed.svg b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_plus_pressed.svg new file mode 100644 index 000000000000..676b351296e3 --- /dev/null +++ b/res/skins/LateNight/classic/buttons/btn__bpm_spinbox_plus_pressed.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/skins/LateNight/classic/buttons/spinbox_down_pressed.svg b/res/skins/LateNight/classic/buttons/spinbox_down_pressed.svg index ae2f639884e1..b5e1582e2680 100644 --- a/res/skins/LateNight/classic/buttons/spinbox_down_pressed.svg +++ b/res/skins/LateNight/classic/buttons/spinbox_down_pressed.svg @@ -1,14 +1,14 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/res/skins/LateNight/classic/buttons/spinbox_up_pressed.svg b/res/skins/LateNight/classic/buttons/spinbox_up_pressed.svg index 0356b0c6b029..83dee27b45bd 100644 --- a/res/skins/LateNight/classic/buttons/spinbox_up_pressed.svg +++ b/res/skins/LateNight/classic/buttons/spinbox_up_pressed.svg @@ -1,14 +1,14 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/res/skins/LateNight/classic/style/mark_jump_backward.svg b/res/skins/LateNight/classic/style/mark_jump_backward.svg new file mode 100644 index 000000000000..32eb6fe7fa84 --- /dev/null +++ b/res/skins/LateNight/classic/style/mark_jump_backward.svg @@ -0,0 +1,51 @@ + + + + + + diff --git a/res/skins/LateNight/classic/style/mark_jump_forward.svg b/res/skins/LateNight/classic/style/mark_jump_forward.svg new file mode 100644 index 000000000000..1bac1d9150f8 --- /dev/null +++ b/res/skins/LateNight/classic/style/mark_jump_forward.svg @@ -0,0 +1,51 @@ + + + + + + diff --git a/res/skins/LateNight/decks/rate_controls.xml b/res/skins/LateNight/decks/rate_controls.xml index 8736cf01feb9..156b5e1299c8 100644 --- a/res/skins/LateNight/decks/rate_controls.xml +++ b/res/skins/LateNight/decks/rate_controls.xml @@ -20,40 +20,32 @@ min,me - - BpmRateTapContainer + + + + BpmTapSyncContainer vertical - min,me - ,46 + min,min + BpmTapContainer - stacked - 57f,-1me + + 62f,42f - - - tempo_tap_bpm_tap_visual_bpm - BpmTap - 57f,-1me - 1 - - ,tempo_tap - - - ,bpm_tap - RightButton - - - + + AlignCenter + 0,0 vertical - 57f,-1me + 62f,-1me BpmText visual_bpm - 57f,22f + 62f,22f center 2 @@ -69,43 +61,50 @@ + + + visual_bpm_edit + 0,0 + 62f,42f + + - - - + - - SyncBox - horizontal - min,min - - - sync_enabled - SyncDeck - 40f,22f - 2 - true - - ,sync_enabled - LeftButton - - - ,sync_leader - RightButton - - - - sync_leader - SyncLeader - 22f,22f - 3 - - ,sync_leader - LeftButton - - + + SyncBox + horizontal + min,min + + + sync_enabled + SyncDeck + 40f,22f + 2 + true + + ,sync_enabled + LeftButton + + + ,sync_leader + RightButton + + + + sync_leader + SyncLeader + 22f,22f + 3 + + ,sync_leader + LeftButton + + + + - + 0min,0me diff --git a/res/skins/LateNight/decks/rate_controls_compact.xml b/res/skins/LateNight/decks/rate_controls_compact.xml index 77a92533863e..1164e14ed718 100644 --- a/res/skins/LateNight/decks/rate_controls_compact.xml +++ b/res/skins/LateNight/decks/rate_controls_compact.xml @@ -15,105 +15,171 @@ - BpmRateTapContainer + RateContainer vertical - min,min + max,min - - BpmTapContainer - stacked - 60f,40f + + + + BpmTapSyncContainer + vertical + min,max - - - tempo_tap_bpm_tap_visual_bpm - BpmTap - me,me - 1 - - ,tempo_tap - - - ,bpm_tap - RightButton - - - - AlignCenter - vertical - me,me + + + BpmTapContainer + + 62f,42f + + + + AlignCenter + 0,0 + vertical + 62f,42f + + + BpmText + visual_bpm + 62f,22f + center + 2 + + ,visual_bpm + + + + rate_display + RateText + center + + 2 + + + + + + visual_bpm_edit + 0,0 + 62f,42f + + + + + + + SyncBox + horizontal + min,min - - BpmText - visual_bpm - -1me,22f - center - 2 + + sync_enabled + SyncDeck + 40f,22f + 2 + true + + ,sync_enabled + LeftButton + - ,visual_bpm + ,sync_leader + RightButton - - - rate_display - RateText - - center - 2 - + + + sync_leader + SyncLeader + 22f,22f + 3 + + ,sync_leader + LeftButton + + - + + [LateNight],show_sync_button_compact + visible + + - + - 0min,0me + 0f,0me RateControls - min,min horizontal + min,min - - - AlignCenter - min,min - vertical - - - SyncBoxCompact - horizontal - min,min + + + RateStack + + + + RateSliderBoxCompact + 59f,97f + stacked - - sync_enabled - SyncDeck - 40f,22f - 2 - true - - ,sync_enabled - LeftButton - - - ,sync_leader - RightButton - - - - sync_leader - SyncLeader - 22f,22f - 3 - - ,sync_leader - LeftButton - - + + + 54f,97f + + + + + RateSlider + 40f,95f + 10,2 + rate + skins:LateNight//sliders/knob_pitch_deck.svg + skins:LateNight//sliders/slider_pitch_deck_compact.svg + false + + + + true + 20.0 + false + + ,rate + + + + + + + min,me + vertical + + + RateRangeDisplayTop + + 0min,0me + + RateRangeDisplayBottom + + + - + - - RateSliderBoxCompactSync + + RateSliderBoxCompact stacked max,me @@ -124,7 +190,7 @@ - - - - [LateNight],show_sync_button_compact - visible - - - - - RateSliderBoxCompact - max,min - stacked - - - - 54f,97f - - - - - RateSlider - 40f,95f - 5,2 - rate - skins:LateNight//sliders/knob_pitch_deck.svg - skins:LateNight//sliders/slider_pitch_deck_compact.svg - false - - - - true - 20.0 - false - - ,rate - - - - + - - min,me - vertical - - - RateRangeDisplayTop - - 0min,0me - - RateRangeDisplayBottom - - - - - [LateNight],show_sync_button_compact - - visible - - + + - 0min,0me + 0f,0me diff --git a/res/skins/LateNight/palemoon/buttons/btn__1_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__1_jump_active.svg new file mode 100644 index 000000000000..32db0fbeef18 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__1_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 1 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__1_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__1_jump_backward_active.svg new file mode 100644 index 000000000000..3a5cbf0fa4c6 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__1_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 1 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__1_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__1_jump_backward_set.svg new file mode 100644 index 000000000000..80d42927df85 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__1_jump_backward_set.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 1 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__1_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__1_jump_set.svg new file mode 100644 index 000000000000..df9ede90a00f --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__1_jump_set.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 1 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__2_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__2_jump_active.svg new file mode 100644 index 000000000000..65852c2770bd --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__2_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 2 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__2_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__2_jump_backward_active.svg new file mode 100644 index 000000000000..5f3f6beae404 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__2_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 2 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__2_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__2_jump_backward_set.svg new file mode 100644 index 000000000000..e659764ff09e --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__2_jump_backward_set.svg @@ -0,0 +1,141 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 2 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__2_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__2_jump_set.svg new file mode 100644 index 000000000000..878c29d5d780 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__2_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 2 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__3_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__3_jump_active.svg new file mode 100644 index 000000000000..8c1e1f74e21c --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__3_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 3 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__3_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__3_jump_backward_active.svg new file mode 100644 index 000000000000..42279089324c --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__3_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 3 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__3_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__3_jump_backward_set.svg new file mode 100644 index 000000000000..24cdf8a22619 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__3_jump_backward_set.svg @@ -0,0 +1,142 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 3 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__3_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__3_jump_set.svg new file mode 100644 index 000000000000..9e0fb7988d16 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__3_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 3 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__4_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__4_jump_active.svg new file mode 100644 index 000000000000..af6642fed585 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__4_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 4 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__4_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__4_jump_backward_active.svg new file mode 100644 index 000000000000..6b7edbf3dde8 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__4_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 4 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__4_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__4_jump_backward_set.svg new file mode 100644 index 000000000000..a713dcb31f9a --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__4_jump_backward_set.svg @@ -0,0 +1,141 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 4 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__4_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__4_jump_set.svg new file mode 100644 index 000000000000..975238cd8819 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__4_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 4 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__5_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__5_jump_active.svg new file mode 100644 index 000000000000..c763f411727d --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__5_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 5 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__5_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__5_jump_backward_active.svg new file mode 100644 index 000000000000..33f2d776f67c --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__5_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 5 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__5_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__5_jump_backward_set.svg new file mode 100644 index 000000000000..6d95d1c93e06 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__5_jump_backward_set.svg @@ -0,0 +1,141 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 5 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__5_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__5_jump_set.svg new file mode 100644 index 000000000000..e795b9511e65 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__5_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 5 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__6_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__6_jump_active.svg new file mode 100644 index 000000000000..f30ba783b5b5 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__6_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 6 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__6_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__6_jump_backward_active.svg new file mode 100644 index 000000000000..2462bab48307 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__6_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 6 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__6_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__6_jump_backward_set.svg new file mode 100644 index 000000000000..4ee803845153 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__6_jump_backward_set.svg @@ -0,0 +1,141 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 6 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__6_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__6_jump_set.svg new file mode 100644 index 000000000000..5330e902b77d --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__6_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 6 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__7_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__7_jump_active.svg new file mode 100644 index 000000000000..c8627f977f95 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__7_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 7 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__7_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__7_jump_backward_active.svg new file mode 100644 index 000000000000..59d22b14edc7 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__7_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 7 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__7_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__7_jump_backward_set.svg new file mode 100644 index 000000000000..bdf8f36c43ec --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__7_jump_backward_set.svg @@ -0,0 +1,141 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 7 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__7_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__7_jump_set.svg new file mode 100644 index 000000000000..bda752ca3323 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__7_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 7 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__8_jump_active.svg b/res/skins/LateNight/palemoon/buttons/btn__8_jump_active.svg new file mode 100644 index 000000000000..40febc1fde78 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__8_jump_active.svg @@ -0,0 +1,138 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 8 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__8_jump_backward_active.svg b/res/skins/LateNight/palemoon/buttons/btn__8_jump_backward_active.svg new file mode 100644 index 000000000000..6329382ee52a --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__8_jump_backward_active.svg @@ -0,0 +1,140 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 8 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__8_jump_backward_set.svg b/res/skins/LateNight/palemoon/buttons/btn__8_jump_backward_set.svg new file mode 100644 index 000000000000..9b0a526335ba --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__8_jump_backward_set.svg @@ -0,0 +1,141 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 8 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__8_jump_set.svg b/res/skins/LateNight/palemoon/buttons/btn__8_jump_set.svg new file mode 100644 index 000000000000..14816a72589f --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__8_jump_set.svg @@ -0,0 +1,139 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + 8 + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__bpm_select_edit.svg b/res/skins/LateNight/palemoon/buttons/btn__bpm_select_edit.svg new file mode 100644 index 000000000000..db137487b591 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__bpm_select_edit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__bpm_select_tap.svg b/res/skins/LateNight/palemoon/buttons/btn__bpm_select_tap.svg new file mode 100644 index 000000000000..c8607f950187 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__bpm_select_tap.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__bpm_spinbox_minus.svg b/res/skins/LateNight/palemoon/buttons/btn__bpm_spinbox_minus.svg new file mode 100644 index 000000000000..d63889bcbbcb --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__bpm_spinbox_minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__bpm_spinbox_plus.svg b/res/skins/LateNight/palemoon/buttons/btn__bpm_spinbox_plus.svg new file mode 100644 index 000000000000..bac91ac3c610 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__bpm_spinbox_plus.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/skins/LateNight/palemoon/buttons/btn__jump_backward.svg b/res/skins/LateNight/palemoon/buttons/btn__jump_backward.svg new file mode 120000 index 000000000000..aef92f44c47c --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__jump_backward.svg @@ -0,0 +1 @@ +btn__beatjump_left.svg \ No newline at end of file diff --git a/res/skins/LateNight/palemoon/buttons/btn__jump_forward.svg b/res/skins/LateNight/palemoon/buttons/btn__jump_forward.svg new file mode 120000 index 000000000000..8b75f65c6344 --- /dev/null +++ b/res/skins/LateNight/palemoon/buttons/btn__jump_forward.svg @@ -0,0 +1 @@ +btn__beatjump_right.svg \ No newline at end of file diff --git a/res/skins/LateNight/style.qss b/res/skins/LateNight/style.qss index c3997c4afc52..ffa57fd19755 100644 --- a/res/skins/LateNight/style.qss +++ b/res/skins/LateNight/style.qss @@ -13,6 +13,7 @@ WTrackProperty, WRecordingDuration, QSpinBox, WBeatSpinBox, +WBpmEditor QDoubleSpinBox, WCueMenuPopup, WCueMenuPopup QLabel, WCueMenuPopup QLineEdit, @@ -481,14 +482,9 @@ WSpinny { /* #SyncBox { qproperty-layoutAlignment: 'AlignHCenter | AlignTop'; } -#BpmRateTapContainer { - margin: 1px; -} #RateControls { qproperty-layoutAlignment: 'AlignHCenter | AlignBottom'; -} -#RateSliderBoxCompactSync { margin-left: 5px; } @@ -498,6 +494,18 @@ WTrackProperty[selected="false"] { border: 0px solid transparent; border-radius: 1px; } + +#BpmClickOverlay, +#BpmTapButton, +#BpmTapButton:focus { + background-color: transparent; +} +WBpmEditor, +#BpmClickOverlay { + border: none; +} + + /************** Decks ********************************************************/ diff --git a/res/skins/LateNight/style_classic.qss b/res/skins/LateNight/style_classic.qss index 3df5b9279419..78d1d0179a6d 100644 --- a/res/skins/LateNight/style_classic.qss +++ b/res/skins/LateNight/style_classic.qss @@ -88,11 +88,20 @@ WLibrary, WTrackProperty:hover, WTrackProperty:hover[selected="false"], WTrackProperty:hover[selected="true"], -#BpmTapContainer:hover { +#BpmTapContainer:hover, +#BpmTapSelectButton, +#BpmEditSelectButton { background-color: #151517; border-radius: 1px; } - #BpmTap[pressed="true"] { + #BpmTapSelectButton { + image: url(skins:LateNight/classic/buttons/btn__bpm_select_tap.svg) no-repeat center center; + } + #BpmEditSelectButton { + border-left: 0px; + image: url(skins:LateNight/classic/buttons/btn__bpm_select_edit.svg) no-repeat left top; + } + #BpmTapButton[pressed="true"] { border: 1px solid #7d350d; } @@ -287,16 +296,13 @@ WSearchLineEdit, } WBeatSpinBox, +WBpmEditor QDoubleSpinBox, #spinBoxTransition { selection-color: #000; selection-background-color: #d2d2d2; } - WBeatSpinBox:focus { - selection-color: #000; - selection-background-color: #d2d2d2; - } WBeatSpinBox:focus, - #spinBoxTransition:focus { + WBpmEditor QDoubleSpinBox:focus { background-color: #000; } @@ -604,7 +610,7 @@ WLibrary { /************** RateControls ********************************************/ #RateContainer { - padding: 4px 0px 0px 0px; + padding: 2px 0px 0px 0px; } #RateText { @@ -612,8 +618,8 @@ WLibrary { margin: 0px; } - #SyncBox { - margin: 2px 1px 1px 2px; + #BpmTapSyncContainer { + margin: 0px 2px 1px 2px; } #RateControls { @@ -627,12 +633,16 @@ WLibrary { /********************** Loop Controls / AutoDJ spinbox ************************/ +WBeatSpinBox, +WBpmEditor QDoubleSpinBox, +#spinBoxTransition { + background-color: #0f0f0f; + } WBeatSpinBox { border-width: 2px 19px 2px 2px; border-image: url(skins:LateNight/classic/buttons/spinbox_elevated_border.svg) 2 19 2 2; margin: 1px 0px 0px 1px; padding: 0px -17px 2px 1px; - background-color: #0f0f0f; } WBeatSpinBox:focus { border-image: url(skins:LateNight/classic/buttons/spinbox_elevated_border_focus.svg) 2 19 2 2; @@ -645,7 +655,6 @@ WLibrary { height: 19px; padding: 0px -15px 0px 0px; margin: 0px 2px 3px 5px; - background-color: #0f0f0f; } #spinBoxTransition:focus { border-image: url(skins:LateNight/classic/buttons/spinbox_embedded_border_focus_orange.svg) 3 19 2 3; @@ -695,6 +704,54 @@ WLibrary { } +WBpmEditor { + padding: 0px; + margin: 0px; + border: none; +} +WBpmEditor QDoubleSpinBox, +WBpmEditor QDoubleSpinBox:focus { + border-image: none; + border: 1px solid #d08e00; + border-radius: 2px; + margin: 0px; + /* top/bottom padding is required to make room for the buttons! */ + padding: 2px 0px 16px 0px; + font-size: 14px/14px; +} +WBpmEditor QDoubleSpinBox QLineEdit { + text-align: center; +} + +WBpmEditor QDoubleSpinBox::up-button, +WBpmEditor QDoubleSpinBox::down-button { + subcontrol-origin: padding; + subcontrol-position: bottom; + position: absolute; + height: 16px; + width: 30px; + background-color: #171719; +} +WBpmEditor QDoubleSpinBox::up-button { + image: url(skins:LateNight/classic/buttons/btn__bpm_spinbox_plus.svg) no-repeat; + bottom: 0px; + left: 30px; + right: 0px; + } + WBpmEditor QDoubleSpinBox::up-button:pressed { + image: url(skins:LateNight/classic/buttons/btn__bpm_spinbox_plus_pressed.svg) no-repeat; + } +WBpmEditor QDoubleSpinBox::down-button { + bottom: 0px; + left: 0px; + right: 30px; + image: url(skins:LateNight/classic/buttons/btn__bpm_spinbox_minus.svg) no-repeat; + } + WBpmEditor QDoubleSpinBox::down-button:pressed { + image: url(skins:LateNight/classic/buttons/btn__bpm_spinbox_minus_pressed.svg) no-repeat; + } + + /************** Mixer *********************************************************/ @@ -1214,7 +1271,9 @@ WSearchLineEdit QAbstractScrollArea, #fadeModeCombobox:!editable, #fadeModeCombobox:!editable:on, #fadeModeCombobox QAbstractScrollArea, -WBeatSpinBox, #spinBoxTransition, +WBeatSpinBox, +#spinBoxTransition, +WBpmEditor QDoubleSpinBox, #LibraryFeatureControls QLabel, #LibraryFeatureControls QRadioButton { color: #888; @@ -1640,7 +1699,6 @@ QPushButton#pushButtonAnalyze:checked { WPushButton#PlayDeck[displayValue="0"], WPushButton#PlayDeckMini[displayValue="0"], WPushButton#PlaySampler[displayValue="0"], -WPushButton#BpmTap[displayValue="0"], WPushButton#FxFocusButton[displayValue="0"], #SamplerSettings WPushButton[displayValue="0"], #SamplerSettingsMini WPushButton[displayValue="0"], @@ -2116,8 +2174,28 @@ QPushButton#pushButtonRepeatPlaylist:!checked { } /* widgets in cue popup menu */ -#CueDeleteButton, -#CueSavedLoopButton { +#CueDeleteButton { + qproperty-icon: url(skins:LateNight/classic/buttons/btn__delete.svg); + /* color buttons are 42x24 px. + To get the final size for the Delete button consider border width. + It's a tall button, about the same height as cue number + label edit box */ + width: 24px; + height: 24px; + border-width: 2px; + border-image: url(skins:LateNight/classic/buttons/btn_embedded_library.svg) 2 2 2 2; + qproperty-iconSize: 18px; + /* has no effect + padding: 0px; */ +} +#CueDeleteButton:hover { + background-color: #6c2e2e; +} + +#CueDeleteButton[pressed="true"], #CueDeleteButton:pressed, #CueDeleteButton:clicked { + background-color: #dc4141 !important; +} + +#CueStandardButton, #CueSavedLoopButton, #CueSavedJumpButton { /* color buttons are 42x24 px. To get the final size for the Delete button consider border width. It's a tall button, about the same height as cue number + label edit box */ @@ -2125,18 +2203,43 @@ QPushButton#pushButtonRepeatPlaylist:!checked { height: 42px; border-width: 2px; border-image: url(skins:LateNight/classic/buttons/btn_embedded_library.svg) 2 2 2 2; + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 20px; + /* has no effect + padding: 0px; */ } #CueDeleteButton { image: url(skins:LateNight/classic/buttons/btn__delete.svg); } +#CueStandardButton { + qproperty-icon: url(skins:LateNight/classic/buttons/btn__beats_hotcues_later.svg); +} #CueSavedLoopButton { image: url(skins:LateNight/classic/buttons/btn__loop.svg); + qproperty-icon: url(skins:LateNight/classic/buttons/btn__loop.svg); +} +#CueSavedJumpButton[direction="impossible"], #CueSavedJumpButton[direction="forward"] { + qproperty-icon: url(skins:LateNight/classic/buttons/btn__beatjump_right.svg); } -#CueDeleteButton:pressed, +#CueSavedJumpButton[direction="backward"] { + qproperty-icon: url(skins:LateNight/classic/buttons/btn__beatjump_left.svg); +} + #CueSavedLoopButton:pressed, #CueSavedLoopButton:checked { background-color: #db0000; outline: none; + image: url(skins:LateNight/classic/buttons/btn__loop_active.svg); +} + +#CueSavedJumpButton:pressed, WCueMenuPopup #CueSavedJumpButton:checked, + #CueStandardButton:pressed, WCueMenuPopup #CueStandardButton:checked { + background-color: #db0000; + outline: none; +} +#CueSavedJumpButton[direction="impossible"] { + background-color: #787878 !important; + outline: none; } #CueLabelEdit { @@ -2252,13 +2355,23 @@ WLibrary QPlainTextEdit, #LibraryBPMSpinBox, /* Track label inline editor in decks and samplers */ WTrackPropertyEditor, -WTrackProperty[selected="true"] { +WTrackProperty[selected="true"], +#BpmTapSelectButton, #BpmEditSelectButton { color: #ddd; background-color: #0f0f0f; selection-color: #000; selection-background-color: #ccc; border: 1px solid #5E4507; } +#BpmTapSelectButton { + border-right: 0px; +} +#BpmTapButton { + border: 1px solid #5E4507; + } + #BpmTapButton:pressed { + border: 1px solid #d08e00; + } /* Entire BPM cell */ /* Lock icon at the left */ diff --git a/res/skins/LateNight/style_palemoon.qss b/res/skins/LateNight/style_palemoon.qss index 4eb0deadec76..3543f5720f95 100644 --- a/res/skins/LateNight/style_palemoon.qss +++ b/res/skins/LateNight/style_palemoon.qss @@ -353,6 +353,8 @@ WTrackProperty:hover[selected="false"], WTrackProperty:hover[selected="true"], WTrackProperty[selected="true"], #BpmTapContainer:hover, +#BpmTapSelectButton, +#BpmEditSelectButton, #PlayPositionText:hover, #PlayPositionTextSmall:hover { background-color: #151517; } @@ -360,10 +362,21 @@ WTrackProperty[selected="true"], WTrackProperty[selected="true"] { background-color: #181819; } - #BpmTap[pressed="true"], - WTrackProperty[selected="true"] { + WTrackProperty[selected="true"], + #BpmTapSelectButton, + #BpmEditSelectButton, + #BpmTapButton { border: 1px solid #7d350d; -/* border: 1px solid #888;*/ + } + #BpmTapSelectButton { + border-right: 0px; + image: url(skins:LateNight/palemoon/buttons/btn__bpm_select_tap.svg) no-repeat center center; + } + #BpmEditSelectButton { + image: url(skins:LateNight/palemoon/buttons/btn__bpm_select_edit.svg) no-repeat left top; + } + #BpmTapButton:pressed { + border: 1px solid #257b82; } /* Disabled for now since the hover effect is stuck as soon as the @@ -640,7 +653,7 @@ WTrackProperty[selected="true"], /************** RateControls ********************************************/ #RateContainer { - padding: 4px 0px 0px 0px; + padding: 2px 0px 0px 0px; } #RateText { @@ -648,8 +661,8 @@ WTrackProperty[selected="true"], margin: 0px 2px 0px 0px; } -#SyncBox { - margin: 2px 1px 1px 2px; +#BpmTapSyncContainer { + margin: 0px 2px 1px 2px; } #RateControls { @@ -659,11 +672,13 @@ WTrackProperty[selected="true"], /********************** Loop Controls / AutoDJ spinbox ************************/ WBeatSpinBox, +WBpmEditor QDoubleSpinBox, #spinBoxTransition { selection-color: #a7998b; selection-background-color: #111; } WBeatSpinBox:focus, + WBpmEditor QDoubleSpinBox:focus, #spinBoxTransition:focus, #LibraryBPMSpinBox:focus { selection-color: #000; @@ -675,6 +690,7 @@ WBeatSpinBox { border-width: 3px 19px 2px 3px; border-image: url(skins:LateNight/palemoon/buttons/btn_embedded_spinbox.svg) 3 19 2 3; } + #spinBoxTransition { width: 24px; height: 19px; @@ -682,11 +698,11 @@ WBeatSpinBox { margin: 0px 2px 3px 5px; border-width: 3px 19px 2px 3px; border-image: url(skins:LateNight/palemoon/buttons/btn_embedded_spinbox_autodj.svg) 3 19 2 3; - } - WBeatSpinBox:focus, - #spinBoxTransition:focus { - border-image: url(skins:LateNight/palemoon/buttons/btn_embedded_spinbox_focus_blue.svg) 3 19 2 3; - } +} +WBeatSpinBox:focus, +#spinBoxTransition:focus { + border-image: url(skins:LateNight/palemoon/buttons/btn_embedded_spinbox_focus_blue.svg) 3 19 2 3; +} WBeatSpinBox::up-button, WBeatSpinBox::down-button, @@ -694,34 +710,74 @@ WBeatSpinBox::down-button, #spinBoxTransition::down-button { subcontrol-origin: content; position: relative; - /* as with spinbox: border is added to size. */ - width: 18px; padding: 0px; + width: 18px; } + WBeatSpinBox::up-button, #spinBoxTransition::up-button { - height: 11px; subcontrol-position: top right; image: url(skins:LateNight/palemoon/buttons/btn__spinbox_up.svg) no-repeat; + height: 11px; } WBeatSpinBox::up-button { margin: -2px -1px 0px 0px; - } + } #spinBoxTransition::up-button { margin: -2px -3px 0px 0px; - } + } + WBeatSpinBox::down-button, #spinBoxTransition::down-button { - height: 11px; subcontrol-position: bottom right; image: url(skins:LateNight/palemoon/buttons/btn__spinbox_down.svg) no-repeat; + height: 11px; + margin: 0px -1px -3px 0px; } - WBeatSpinBox::down-button { - margin: 0px -1px -3px 0px; - } #spinBoxTransition::down-button { margin: 0px -3px -1px 0px; - } + } + +WBpmEditor { + padding: 0px; + margin: 0px; + border: none; +} +WBpmEditor QDoubleSpinBox, +WBpmEditor QDoubleSpinBox:focus { + border-image: none; + border: 1px solid #257b82; + border-radius: 2px; + margin: 0px; + /* top/bottom padding is required to make room for the buttons! */ + padding: 2px 0px 16px 0px; + font-size: 14px/14px; +} +WBpmEditor QDoubleSpinBox QLineEdit { + text-align: center; +} + +WBpmEditor QDoubleSpinBox::up-button, +WBpmEditor QDoubleSpinBox::down-button { + subcontrol-origin: padding; + subcontrol-position: bottom; + position: absolute; + height: 16px; + width: 30px; + background-color: #171719; +} +WBpmEditor QDoubleSpinBox::up-button { + image: url(skins:LateNight/palemoon/buttons/btn__bpm_spinbox_plus.svg) no-repeat; + bottom: 0px; + left: 30px; + right: 0px; + } +WBpmEditor QDoubleSpinBox::down-button { + bottom: 0px; + left: 0px; + right: 30px; + image: url(skins:LateNight/palemoon/buttons/btn__bpm_spinbox_minus.svg) no-repeat; +} /************** Mixer ***************************************************/ @@ -1303,6 +1359,7 @@ WEffectChainPresetSelector:!editable:on, } WBeatSpinBox, + WBpmEditor QDoubleSpinBox, #spinBoxTransition { color: #a7998b; } @@ -1494,13 +1551,13 @@ WEffectSelector:!editable, #fadeModeCombobox:!editable, #LibraryFeatureControls QPushButton:enabled, #CueDeleteButton, -#CueSavedLoopButton { +#CueStandardButton, +#CueSavedLoopButton, +#CueSavedJumpButton { outline: none; border-width: 2px; border-image: url(skins:LateNight/palemoon/buttons/btn_embedded_library.svg) 2 2 2 2; } - /* - WPushButton#BpmTap[displayValue="1"], */ WPushButton#VinylStatus[displayValue="1"], WPushButton#VinylStatus[displayValue="2"], WPushButton#VinylStatus[displayValue="3"], @@ -1524,8 +1581,12 @@ WEffectSelector:!editable, WEffectSelector:!editable:on, #fadeModeCombobox:!editable:on, #CueDeleteButton[pressed="true"], + #CueStandardButton[pressed="true"], + #CueStandardButton:checked, #CueSavedLoopButton[pressed="true"], - #CueSavedLoopButton:checked { + #CueSavedLoopButton:checked, + #CueSavedJumpButton[pressed="true"], + #CueSavedJumpButton:checked { border-width: 2px; border-image: url(skins:LateNight/palemoon/buttons/btn_embedded_library_active.svg) 2 2 2 2; } @@ -1613,7 +1674,8 @@ WPushButton#FxToggleButton[displayValue="0"], #MicDuckingContainer WPushButton[displayValue="0"], WBeatSpinBox, WBeatSpinBox::up-button, -WBeatSpinBox::down-button { +WBeatSpinBox::down-button, +WBpmEditor QDoubleSpinBox { background-color: #121213; } /* dim buttons in top-level containers */ @@ -1659,7 +1721,9 @@ WBeatSpinBox::down-button { /* bright buttons in dimmed containers #BeatgridControls WPushButton[displayValue="0"], */ #CueDeleteButton, + #CueStandardButton, #CueSavedLoopButton, + #CueSavedJumpButton, #SplitCue[displayValue="0"], #PlayPreview[displayValue="0"], /* library controls */ @@ -1715,9 +1779,12 @@ WPushButton#LoopAnchor[pressed="true"], #BeatjumpControls WPushButton[value="1"], #RateControls WPushButton[value="1"], #BeatgridControls WPushButton[pressed="true"]/*, -#CueDeleteButton[pressed="true"], +#CueStandardButton[pressed="true"], +#CueStandardButton:checked, #CueSavedLoopButton[pressed="true"], -#CueSavedLoopButton:checked*/ { +#CueSavedLoopButton:checked, +#CueSavedJumpButton[pressed="true"], +#CueSavedJumpButton:checked*/ { background-color: #7d350d; } @@ -1744,6 +1811,8 @@ WPushButton#VinylStatus[displayValue="1"], /* enabled, OK */ /* Blue for Fx buttons 3/4 */ #FxUnit3 #FxToggleButton[displayValue="1"], #FxUnit4 #FxToggleButton[displayValue="1"], +WBpmEditor QDoubleSpinBox::up-button:pressed, +WBpmEditor QDoubleSpinBox::down-button:pressed, WBeatSpinBox::up-button:pressed, WBeatSpinBox::down-button:pressed, #spinBoxTransition::up-button:pressed, @@ -1954,6 +2023,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue1 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__1_loop_dark.svg) no-repeat center center; } + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__1_jump_active.svg) no-repeat center center; + } + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__1_jump_backward_active.svg) no-repeat center center; + } + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__1_jump_set.svg) no-repeat center center; + } + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue1 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue1 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__1_jump_backward_set.svg) no-repeat center center; + } #Hotcue2 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__2.svg) no-repeat center center; @@ -1974,6 +2067,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue2 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__2_loop_dark.svg) no-repeat center center; } + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__2_jump_active.svg) no-repeat center center; + } + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__2_jump_backward_active.svg) no-repeat center center; + } + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__2_jump_set.svg) no-repeat center center; + } + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue2 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue2 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__2_jump_backward_set.svg) no-repeat center center; + } #Hotcue3 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__3.svg) no-repeat center center; @@ -1994,6 +2111,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue3 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__3_loop_dark.svg) no-repeat center center; } + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__3_jump_active.svg) no-repeat center center; + } + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__3_jump_backward_active.svg) no-repeat center center; + } + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__3_jump_set.svg) no-repeat center center; + } + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue3 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue3 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__3_jump_backward_set.svg) no-repeat center center; + } #Hotcue4 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__4.svg) no-repeat center center; @@ -2014,6 +2155,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue4 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__4_loop_dark.svg) no-repeat center center; } + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__4_jump_active.svg) no-repeat center center; + } + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__4_jump_backward_active.svg) no-repeat center center; + } + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__4_jump_set.svg) no-repeat center center; + } + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue4 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue4 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__4_jump_backward_set.svg) no-repeat center center; + } #Hotcue5 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__5.svg) no-repeat center center; @@ -2034,6 +2199,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue5 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__5_loop_dark.svg) no-repeat center center; } + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__5_jump_active.svg) no-repeat center center; + } + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__5_jump_backward_active.svg) no-repeat center center; + } + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__5_jump_set.svg) no-repeat center center; + } + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue5 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue5 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__5_jump_backward_set.svg) no-repeat center center; + } #Hotcue6 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__6.svg) no-repeat center center; @@ -2054,6 +2243,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue6 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__6_loop_dark.svg) no-repeat center center; } + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__6_jump_active.svg) no-repeat center center; + } + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__6_jump_backward_active.svg) no-repeat center center; + } + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__6_jump_set.svg) no-repeat center center; + } + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue6 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue6 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__6_jump_backward_set.svg) no-repeat center center; + } #Hotcue7 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__7.svg) no-repeat center center; @@ -2074,6 +2287,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue7 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__7_loop_dark.svg) no-repeat center center; } + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__7_jump_active.svg) no-repeat center center; + } + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__7_jump_backward_active.svg) no-repeat center center; + } + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__7_jump_set.svg) no-repeat center center; + } + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue7 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue7 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__7_jump_backward_set.svg) no-repeat center center; + } #Hotcue8 WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__8.svg) no-repeat center center; @@ -2094,6 +2331,30 @@ WPushButton#PlayDeck[value="0"] { #Hotcue8 WPushButton[type="loop"][displayValue="2"][dark="true"] { image: url(skins:LateNight/palemoon/buttons/btn__8_loop_dark.svg) no-repeat center center; } + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="true"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="true"], + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="true"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__8_jump_active.svg) no-repeat center center; + } + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="true"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="true"], + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="true"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="true"] { + image: url(skins:LateNight/palemoon/buttons/btn__8_jump_backward_active.svg) no-repeat center center; + } + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="false"][active="false"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="false"][active="false"], + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="forward"][dark="true"][active="false"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="forward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__8_jump_set.svg) no-repeat center center; + } + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="false"][active="false"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="false"][active="false"], + #Hotcue8 WPushButton[type="jump"][displayValue="1"][direction="backward"][dark="true"][active="false"], + #Hotcue8 WPushButton[type="jump"][displayValue="2"][direction="backward"][dark="true"][active="false"] { + image: url(skins:LateNight/palemoon/buttons/btn__8_jump_backward_set.svg) no-repeat center center; + } #SpecialCueButton_intro_start WPushButton[displayValue="0"] { image: url(skins:LateNight/palemoon/buttons/btn__intro_start.svg) no-repeat center center; @@ -2578,30 +2839,72 @@ QPushButton#pushButtonRepeatPlaylist:!checked { /* AutoDJ button icons */ /* widgets in cue popup menu */ -WCueMenuPopup #CueDeleteButton, +WCueMenuPopup #CueDeleteButton { + icon: url(skins:LateNight/palemoon/buttons/btn__delete.svg); + width: 24px; + height: 24px; + icon-size: 18px; +} +WCueMenuPopup #CueStandardButton { + icon: url(skins:LateNight/palemoon/buttons/btn__beats_hotcues_later.svg); + width: 24px; + height: 42px; + /* make the icon slightly larger than default 16px */ + icon-size: 24px; +} WCueMenuPopup #CueSavedLoopButton { + icon: url(skins:LateNight/palemoon/buttons/btn__loop.svg); width: 24px; height: 42px; + /* make the icon slightly larger than default 16px */ + icon-size: 24px; } -WCueMenuPopup #CueDeleteButton { - /* Note: we can't use qproperty-icon here because it's evauated only once - and therefore won't style the checked state */ - image: url(skins:LateNight/palemoon/buttons/btn__delete.svg); +WCueMenuPopup #CueSavedJumpButton { + width: 24px; + height: 42px; + /* make the icon slightly larger than default 16px */ + icon-size: 24px; +} +WCueMenuPopup #CueSavedJumpButton[direction="impossible"], +WCueMenuPopup #CueSavedJumpButton[direction="forward"] { + icon: url(skins:LateNight/palemoon/buttons/btn__beatjump_right.svg); +} +WCueMenuPopup #CueSavedJumpButton[direction="backward"] { + icon: url(skins:LateNight/palemoon/buttons/btn__beatjump_left.svg); } - WCueMenuPopup #CueDeleteButton:pressed { - background-color: #b24c12; - outline: none; - image: url(skins:LateNight/palemoon/buttons/btn__delete_active.svg); - } -WCueMenuPopup #CueSavedLoopButton { - image: url(skins:LateNight/palemoon/buttons/btn__loop.svg); +#CueDeleteButton:hover { + background-color: #6c2e2e; +} + +#CueDeleteButton[pressed="true"], #CueDeleteButton:pressed, #CueDeleteButton:clicked { + background-color: #dc4141 !important; + outline: none; +} + +#CueSavedLoopButton:pressed, #CueSavedLoopButton:checked { + background-color: #b24c12; + outline: none; + icon: url(skins:LateNight/palemoon/buttons/btn__loop_active.svg); +} +#CueSavedJumpButton:pressed, #CueSavedJumpButton:checked { + background-color: #b24c12; + outline: none; +} +#CueSavedJumpButton[direction="impossible"] { + background-color: #787878 !important; + outline: none; +} +#CueSavedJumpButton[direction="forward"]:pressed, #CueSavedJumpButton[direction="forward"]:checked { + icon: url(skins:LateNight/palemoon/buttons/btn__beatjump_right_active.svg); +} +#CueSavedJumpButton[direction="backward"]:pressed, #CueSavedJumpButton[direction="backward"]:checked { + icon: url(skins:LateNight/palemoon/buttons/btn__beatjump_left_active.svg); } -WCueMenuPopup #CueSavedLoopButton:pressed, -WCueMenuPopup #CueSavedLoopButton:checked { +#CueStandardButton:pressed, #CueStandardButton:checked { background-color: #b24c12; outline: none; - image: url(skins:LateNight/palemoon/buttons/btn__loop_active.svg); + icon: url(skins:LateNight/palemoon/buttons/btn__beats_hotcues_later_active.svg); } WCueMenuPopup #CueLabelEdit { diff --git a/res/skins/LateNight/waveform.xml b/res/skins/LateNight/waveform.xml index 7b830e1ec946..32ad97ddbae6 100644 --- a/res/skins/LateNight/waveform.xml +++ b/res/skins/LateNight/waveform.xml @@ -196,6 +196,8 @@ bottom|right #FF0000 #FFFFFF + skins:LateNight/classic/style/mark_jump_%1.svg + 0.25 %1 diff --git a/res/skins/Shade/style.qss b/res/skins/Shade/style.qss index ee22c069e7d2..f6b7aba0c3fb 100644 --- a/res/skins/Shade/style.qss +++ b/res/skins/Shade/style.qss @@ -435,7 +435,10 @@ WEffectSelector QAbstractScrollArea, WCueMenuPopup QLabel { color: #060613; } -#CueDeleteButton { +#CueDeleteButton, +#CueStandardButton, +#CueSavedLoopButton, +#CueSavedJumpButton { /* set any border to allow styles for other properties as well */ border: 1px solid #060613; /* To get the final size for the Delete button consider border width. @@ -444,28 +447,36 @@ WCueMenuPopup QLabel { height: 43px; padding: 0px; background-color: #aab2b7; - qproperty-icon: url(skin:/btn/btn_delete.svg); /* make the icon slightly larger than default 16px */ qproperty-iconSize: 20px; outline: none; } +#CueDeleteButton { + qproperty-icon: url(skin:/btn/btn_delete.svg); +} +#CueStandardButton { + qproperty-icon: url(skin:/btn/btn_vinylcontrol.png); +} #CueSavedLoopButton { - /* set any border to allow styles for other properties as well */ - border: 1px solid #060613; -/* To get the final size for the Delete button consider border width. - tall button, about the same height as cue number + label edit box */ - width: 24px; - height: 43px; - padding: 0px; - background-color: #aab2b7; - qproperty-icon: url(skin:/btn/btn_hotcue_loop.png); - /* make the icon slightly larger than default 16px */ - qproperty-iconSize: 20px; - outline: none; + qproperty-icon: url(skin:/btn/btn_repeat.png); +} +#CueSavedJumpButton[direction="impossible"], +#CueSavedJumpButton[direction="forward"] { + qproperty-icon: url(skin:/btn/btn_beatjump_forward.png); +} +#CueSavedJumpButton[direction="backward"] { + qproperty-icon: url(skin:/btn/btn_beatjump_backward.png); } -#CueSavedLoopButton:pressed, #CueSavedLoopButton:checked { +#CueDeleteButton:pressed, #CueDeleteButton:checked, #CueDeleteButton:clicked, +#CueStandardButton:pressed, #CueStandardButton:checked, + #CueSavedLoopButton:pressed, #CueSavedLoopButton:checked, + #CueSavedJumpButton:pressed, #CueSavedJumpButton:checked { background-color: #F90562; } +#CueSavedJumpButton[direction="impossible"] { + background-color: #787878 !important; + outline: none; +} #CueLabelEdit { border: 1px solid #060613; border-radius: 0px; diff --git a/res/skins/Shade/style_dark.qss b/res/skins/Shade/style_dark.qss index 0f7fb2a8e1e1..f0917170e19c 100644 --- a/res/skins/Shade/style_dark.qss +++ b/res/skins/Shade/style_dark.qss @@ -153,9 +153,22 @@ WEffectSelector::indicator:unchecked:selected, #CueDeleteButton { background-color: #8a8a8a; } -#CueSavedLoopButton:pressed, #CueSavedLoopButton:checked { +#CueDeleteButton:hover { + background-color: #6c2e2e; +} + +#CueDeleteButton[pressed="true"], #CueDeleteButton:pressed, #CueDeleteButton:clicked { + background-color: #dc4141 !important; +} +#CueStandardButton:pressed, #CueStandardButton:checked, + #CueSavedLoopButton:pressed, #CueSavedLoopButton:checked, + #CueSavedJumpButton:pressed, #CueSavedJumpButton:checked { background-color: #b79d00; } +#CueSavedJumpButton[direction="impossible"] { + background-color: #787878 !important; + outline: none; +} #CueLabelEdit { background-color: #3F3041; } diff --git a/res/skins/Shade/style_summer_sunset.qss b/res/skins/Shade/style_summer_sunset.qss index 0682c70b7bf1..c428c07da882 100644 --- a/res/skins/Shade/style_summer_sunset.qss +++ b/res/skins/Shade/style_summer_sunset.qss @@ -144,15 +144,28 @@ WEffectSelector::indicator:unchecked:selected, border: 0px solid #f8ba54; } -#CueDeleteButton { +#CueDeleteButton, + #CueStandardButton, + #CueSavedLoopButton, + #CueSavedJumpButton { background-color: #cdbb5d; } -#CueSavedLoopButton { - background-color: #cdbb5d; +#CueDeleteButton:hover { + background-color: #6c2e2e; +} + +#CueDeleteButton[pressed="true"], #CueDeleteButton:pressed, #CueDeleteButton:clicked { + background-color: #dc4141 !important; } -#CueSavedLoopButton:pressed, #CueSavedLoopButton:checked { +#CueStandardButton:pressed, #CueStandardButton:checked, + #CueSavedLoopButton:pressed, #CueSavedLoopButton:checked, + #CueSavedJumpButton:pressed, #CueSavedJumpButton:checked { background-color: #54fd05; } +#CueSavedJumpButton[direction="impossible"] { + background-color: #787878 !important; + outline: none; +} #CueLabelEdit { background-color: #706633; } diff --git a/res/skins/Tango/style.qss b/res/skins/Tango/style.qss index ac64473af226..809949aba1bb 100644 --- a/res/skins/Tango/style.qss +++ b/res/skins/Tango/style.qss @@ -2480,7 +2480,35 @@ WSearchRelatedTracksMenu #SearchSelectedAction::indicator { } /* widgets in cue popup menu */ -#CueDeleteButton, +#CueDeleteButton { + /* color buttons are 42x24 px. + To get the final size for the Delete button consider border width. + tall button, about the same height as cue number + label edit box */ + width: 26px; + height: 26px; + border: 1px solid #666; + background-color: #333; + border-radius: 2px; + qproperty-icon: url(skin:/../Tango/buttons/btn_delete.svg); + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 16px; +} +#CueStandardButton { + /* color buttons are 42x24 px. + To get the final size for the Delete button consider border width. + tall button, about the same height as cue number + label edit box */ + width: 26px; + height: 44px; + border: 1px solid #666; + background-color: #333; + border-radius: 2px; + qproperty-icon: url(skin:/../Tango/buttons/btn_hotcues_later.svg); + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 20px; +} +#CueStandardButton:checked { + background-color: #ff7b00; +} #CueSavedLoopButton { /* color buttons are 42x24 px. To get the final size for the Delete button consider border width. @@ -2490,7 +2518,31 @@ WSearchRelatedTracksMenu #SearchSelectedAction::indicator { border: 1px solid #666; background-color: #333; border-radius: 2px; - } + qproperty-icon: url(skin:/../Tango/buttons/btn_loop_beatjump_off.svg); + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 20px; +} +#CueSavedLoopButton:checked { + background-color: #ff7b00; + qproperty-icon: url(skin:/../Tango/buttons/btn_loop_beatjump_on.svg); +} +#CueSavedJumpButton { + /* color buttons are 42x24 px. + To get the final size for the Delete button consider border width. + tall button, about the same height as cue number + label edit box */ + width: 26px; + height: 44px; + border: 1px solid #666; + background-color: #333; + border-radius: 2px; + qproperty-icon: url(skin:/../Tango/buttons/btn_beatjump_forward.svg); + /* make the icon slightly larger than default 16px */ + qproperty-iconSize: 20px; +} +#CueSavedJumpButton:checked { + qproperty-icon: url(skin:/../Tango/buttons/btn_beatjump_forward_pressed.svg); + background-color: #ff7b00; +} #CueDeleteButton { /* Note: we can't use qproperty-icon here because it's evauated only once and therefore won't style the checked state */ diff --git a/res/translations/mixxx.ts b/res/translations/mixxx.ts index 181778c47575..54d406045ac6 100644 --- a/res/translations/mixxx.ts +++ b/res/translations/mixxx.ts @@ -10,6 +10,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -21,52 +29,52 @@ AutoDJFeature - + Crates - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source - + Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -223,7 +231,7 @@ - + Export Playlist @@ -277,13 +285,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -298,12 +306,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # - + Timestamp @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -362,7 +370,7 @@ - + Color @@ -377,7 +385,7 @@ - + Cover Art @@ -387,7 +395,7 @@ - + Last Played @@ -417,7 +425,7 @@ - + Location @@ -427,7 +435,7 @@ - + Preview @@ -467,7 +475,7 @@ - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. - + Settings error - + <b>Error with settings for '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer @@ -612,17 +620,17 @@ - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,12 @@ - + Mixxx Library - + Could not load the following file because it is in use by Mixxx or another application. @@ -771,87 +779,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. - + + Force Mixxx to load an unstable version with an existing user profile from a stable version + + + + 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 @@ -861,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -985,9 +998,11 @@ trace - Above + Profiling messages - - + + + Deck %1 + %1 is the deck number 1 ... 4 @@ -1052,145 +1067,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1200,193 +1215,193 @@ trace - Above + Profiling messages - + 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 @@ -1416,317 +1431,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1767,449 +1782,449 @@ trace - Above + Profiling messages - + 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 - + Deck %1 Quick Effect Super Knob - - + + Quick Effect Super Knob (control linked effect parameters) - - - - + + + + Quick Effect - + 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 - + 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 @@ -2224,108 +2239,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - + Adjust %1 @@ -2380,1181 +2395,1182 @@ trace - Above + Profiling messages - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + Quick Effects Deck %1 - + Deck %1 Quick Effect Enable Button - - + + Quick Effect Enable Button - + Deck %1 Stem %2 Quick Effect Super Knob - + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + Deck %1 Stems - - + + 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 @@ -3567,6 +3583,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3669,32 +3838,32 @@ trace - Above + Profiling messages 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. @@ -3702,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3755,7 +3924,7 @@ trace - Above + Profiling messages - + Lock @@ -3785,7 +3954,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3802,22 +3971,22 @@ trace - Above + Profiling messages - + Export Crate - + Unlock - + An unknown error occurred while creating crate: - + Rename Crate @@ -3827,28 +3996,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u) @@ -3869,17 +4038,17 @@ trace - Above + Profiling messages - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3974,12 +4143,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4825,68 +4994,79 @@ You tried to learn: %1,%2 - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - + Settings for %1 Settings for broadcast profile, %1 is the profile name placeholder - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4899,27 +5079,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing - + Public stream - + http://www.mixxx.org - + Stream name - + 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. @@ -4959,67 +5139,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website - + Live mix - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre - + Use UTF-8 encoding for metadata. - + Description @@ -5045,42 +5230,42 @@ Two source connections to the same server that have the same mountpoint can not - + Server connection - + Type - + Host - + Login - + Mount - + Port - + Password - + Stream info @@ -5090,17 +5275,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5159,13 +5344,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5210,17 +5396,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5228,113 +5419,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5352,100 +5543,105 @@ Apply settings and continue? - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add - - + + Remove @@ -5465,17 +5661,17 @@ Apply settings and continue? - + Mapping Info - + Author: - + Name: @@ -5485,28 +5681,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All - + Output Mappings @@ -5521,21 +5717,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5665,6 +5861,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5694,137 +5900,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -6256,62 +6462,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6538,67 +6744,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font @@ -7252,33 +7488,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7296,43 +7532,55 @@ and allows you to pitch adjust them for harmonic mixing. - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality - + Tags - + Title - + Author - + Album - + Output File Format - + Compression - + Lossy @@ -7347,12 +7595,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7483,172 +7731,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7715,17 +7968,22 @@ The loudness target is approximate and assumes track pregain and main output lev - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms - + Buffer Underflow Count - + 0 @@ -7750,12 +8008,12 @@ The loudness target is approximate and assumes track pregain and main output lev - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. @@ -7785,7 +8043,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Downsize your audio buffer to improve Mixxx's responsiveness. @@ -7832,7 +8090,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7868,46 +8126,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7915,58 +8178,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7984,22 +8247,17 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. - - Normalize waveform overview - - - - + Average frame rate @@ -8015,7 +8273,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -8095,7 +8353,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + 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. @@ -8162,22 +8420,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8193,7 +8451,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8253,12 +8511,28 @@ Select from different types of displays for the waveform, which differ primarily - + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8747,7 +9021,7 @@ This can not be undone! - + Location: @@ -8762,27 +9036,27 @@ This can not be undone! - + BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. @@ -8837,49 +9111,49 @@ This can not be undone! - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next @@ -8904,12 +9178,12 @@ This can not be undone! - + Date added: - + Open in File Browser @@ -8919,102 +9193,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9373,27 +9652,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9608,15 +9887,15 @@ 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 @@ -9627,57 +9906,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9685,62 +9964,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9750,22 +10029,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9902,12 +10181,12 @@ Do you really want to overwrite it? - + Export to Engine DJ - + Tracks @@ -9915,249 +10194,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + Scan took %1 - + No changes detected. - - + + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10173,13 +10452,13 @@ Do you want to select an input device? PlaylistFeature - + Lock - - + + Playlists @@ -10189,58 +10468,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 @@ -10339,58 +10623,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 @@ -10504,69 +10788,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier - + Microphone + Audio path indetifier - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10895,47 +11192,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM - + Set the beats per minute value of the click sound - + Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11719,14 +12018,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11864,7 +12163,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11932,15 +12231,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11969,6 +12339,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11979,11 +12350,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11995,11 +12368,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12028,12 +12403,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12068,42 +12443,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12364,193 +12739,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. @@ -12558,7 +12933,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12566,23 +12941,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device - + An unknown error occurred - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12767,7 +13142,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12949,7 +13324,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art @@ -13139,243 +13514,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track - + BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13598,952 +13973,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14678,33 +15083,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14724,215 +15129,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14972,259 +15377,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15452,47 +15857,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15617,323 +16050,363 @@ This can not be undone! - Create &New Playlist + Search in Current View... + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + + Create &New Playlist + + + + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title @@ -15950,74 +16423,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -16025,25 +16498,25 @@ This can not be undone! WOverview - + 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 @@ -16052,25 +16525,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -16081,92 +16542,86 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history @@ -16251,300 +16706,300 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating - + Cue Point - - + + Hotcues - + Intro - + Outro - + Key - + ReplayGain - + Waveform - + Comment - + All - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 - + Importing metadata of %n track(s) from file tags @@ -16552,7 +17007,7 @@ This can not be undone! - + Marking metadata of %n track(s) to be exported into file tags @@ -16560,50 +17015,50 @@ This can not be undone! - - + + 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) @@ -16611,7 +17066,7 @@ This can not be undone! - + Undo BPM/beats change of %n track(s) @@ -16619,7 +17074,7 @@ This can not be undone! - + Locking BPM of %n track(s) @@ -16627,7 +17082,7 @@ This can not be undone! - + Unlocking BPM of %n track(s) @@ -16635,7 +17090,7 @@ This can not be undone! - + Setting rating of %n track(s) @@ -16643,7 +17098,7 @@ This can not be undone! - + Setting color of %n track(s) @@ -16651,7 +17106,7 @@ This can not be undone! - + Resetting play count of %n track(s) @@ -16659,7 +17114,7 @@ This can not be undone! - + Resetting beats of %n track(s) @@ -16667,7 +17122,7 @@ This can not be undone! - + Clearing rating of %n track(s) @@ -16675,7 +17130,7 @@ This can not be undone! - + Clearing comment of %n track(s) @@ -16683,7 +17138,7 @@ This can not be undone! - + Removing main cue from %n track(s) @@ -16691,7 +17146,7 @@ This can not be undone! - + Removing outro cue from %n track(s) @@ -16699,7 +17154,7 @@ This can not be undone! - + Removing intro cue from %n track(s) @@ -16707,7 +17162,7 @@ This can not be undone! - + Removing loop cues from %n track(s) @@ -16715,7 +17170,7 @@ This can not be undone! - + Removing hot cues from %n track(s) @@ -16723,7 +17178,7 @@ This can not be undone! - + Sorting hotcues of %n track(s) by position (remove offsets) @@ -16731,7 +17186,7 @@ This can not be undone! - + Sorting hotcues of %n track(s) by position @@ -16739,7 +17194,7 @@ This can not be undone! - + Resetting keys of %n track(s) @@ -16747,7 +17202,7 @@ This can not be undone! - + Resetting replay gain of %n track(s) @@ -16755,7 +17210,7 @@ This can not be undone! - + Resetting waveform of %n track(s) @@ -16763,7 +17218,7 @@ This can not be undone! - + Resetting all performance metadata of %n track(s) @@ -16771,169 +17226,184 @@ This can not be undone! - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) @@ -16941,7 +17411,7 @@ This can not be undone! - + Reloading cover art of %n track(s) @@ -16998,37 +17468,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -17036,12 +17506,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. - + Shuffle Tracks @@ -17079,22 +17549,22 @@ This can not be undone! - + 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. @@ -17248,6 +17718,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17256,4 +17744,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + diff --git a/res/translations/mixxx_bg.qm b/res/translations/mixxx_bg.qm index 8b0e62ad1f6c..da439e63f490 100644 Binary files a/res/translations/mixxx_bg.qm and b/res/translations/mixxx_bg.qm differ diff --git a/res/translations/mixxx_bg.ts b/res/translations/mixxx_bg.ts index 50fc06e3e5a4..75eeae4dee40 100644 --- a/res/translations/mixxx_bg.ts +++ b/res/translations/mixxx_bg.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,22 +27,52 @@ AutoDJFeature - + Crates Колекции - + + Enable Auto DJ + + + + + Disable Auto DJ + + + + + Clear Auto DJ Queue + + + + Remove Crate as Track Source Премахни Колекция като Пистов Източник - + Auto DJ Авто-DJ (Автодиджей) - + + Confirmation Clear + + + + + Do you really want to remove all tracks from the Auto DJ queue? + + + + + This can not be undone. + + + + Add Crate as Track Source Добави Колекция като Пистов Източник @@ -117,154 +155,161 @@ 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) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: По време на създаването на списъка за изпълнение възникна неизвестна грешка: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -272,12 +317,12 @@ BaseSqlTableModel - + # - + Timestamp Дата @@ -285,7 +330,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Песента не може да бъде заредена. @@ -293,137 +338,142 @@ BaseTrackTableModel - + Album Албум - + Album Artist Изпълнител - + Artist Изпълнител - + Bitrate Бит./сек. (bitrate) - + BPM Уд/мин (BPM) - + Channels Канали - + Color - + Comment Коментар - + Composer Композитор - + Cover Art Обложка - + Date Added Дата на добавяне - + Last Played - + Duration Продължителност - + Type Тип - + Genre Жанр - + Grouping Групировка - + Key Ключ - + Location Местоположение - + + Overview + + + + Preview Преглед - + Rating Оценка - + ReplayGain - + Samplerate - + Played Пускано - + Title Заглавие - + Track # Пътека/писта/запис № - + Year Година - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -445,22 +495,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. - + Settings error Грешка в настройките - + <b>Error with settings for '%1':</b><br> <b>Грешка в настройките за '%1':</b><br> @@ -511,213 +561,215 @@ BrowseFeature - + Add to Quick Links Добави към Бързи връзки - + Remove from Quick Links Премахни от Бързи връзки - + Add to Library Добави в библиотека - + Refresh directory tree - + Quick Links Бързи връзки - - + + Devices Устройства - + Removable Devices Преносими устройства - - + + Computer Компютър - + 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 Сканиране - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel - + Preview Преглед - + Filename Име на файл - + Artist Изпълнител - + Title Заглавие - + Album Албум - + Track # Пътека/писта/запис № - + Year Година - + Genre Жанр - + Composer Композитор - + Comment Коментар - + Duration Продължителност - + BPM Уд/мин (BPM) - + Key Ключ - + Type Тип - + Bitrate Бит./сек. (bitrate) - + ReplayGain - + Location Местоположение - + Album Artist Изпълнител - + Grouping Групировка - + File Modified Файла е модифициран - + File Created Файла е създаден - + Mixxx Library Библиотека на Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Следният файл не може да бъде зареден, защото се използва отMixxx или друго приложение. - - BulkController - - - USB Controller - USB Контролер - - CachingReaderWorker - + The file '%1' could not be found. - + The file '%1' could not be loaded. - + The file '%1' could not be loaded because it contains %2 channels, and only 1 to %3 are supported. - + The file '%1' is empty and could not be loaded. @@ -725,82 +777,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + + Rescans the library when Mixxx is launched. + + + + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. - + + Force Mixxx to load an unstable version with an existing user profile from a stable version + + + + 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 @@ -810,22 +872,32 @@ 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. - + + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. + + + + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -918,2581 +990,2793 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Изход за слушалки - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Дек %1 - + Sampler %1 Смесител %1 - + Preview Deck %1 Преглед дек %1 - + Microphone %1 Микрофон %1 - + Auxiliary %1 Помощен %1 - + Reset to default Възстановяване на стандартните настройки - + Effect Rack %1 Ефекти %1 - + Parameter %1 Параметър %1 - + Mixer Смесител - - + + Crossfader Кросфейдър - + Headphone mix (pre/main) - + Toggle headphone split cueing - + Headphone delay - + Transport - + Strip-search through track - + Play button Бутон за възпроизвеждане - - + + Set to full volume - - + + Set to zero volume - + Stop button Бутон стоп - + Jump to start of track and play - + Jump to end of track Прескочи до края на трака - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button Бутон за заглушаване - + Toggle repeat mode - - + + Mix orientation (e.g. left, right, center) - - + + Set mix orientation to left - - + + Set mix orientation to center - - + + Set mix orientation to right - + Toggle slip mode - - + + BPM Уд/мин (BPM) - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode - + Equalizers Еквалайзери - + 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 Библиотека - + Slot %1 - + Headphone Mix - + Headphone Split Cue - + Headphone Delay - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute Заглушаване - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - - + + Orientation - - + + Orient Left - - + + Orient Center - - + + Orient Right - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync Синхронизация - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 - + High EQ - + Mid EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low 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 - + 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 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 - + Headphone Gain - + Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin - + Кожа - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + + Microphone && Auxiliary Show/Hide + keep double & to prevent creation of keyboard accelerator + + + + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 - ControllerInputMappingTableModel + Controller - - Channel + + Unknown + + + ControllerHidReportTabsManager - - Opcode + + Read - - Control + + Send - - Options + + Payload Size - - Action + + bytes - - Comment - Коментар + + Byte Position + - - - ControllerOutputMappingTableModel - - Channel + + Bit Position - - Opcode + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + + + ControllerInputMappingTableModel + + + Channel + + + + + Opcode + + + + + Control + + + + + Options + + + + + Action + + + + + Comment + Коментар + + + + ControllerOutputMappingTableModel + + + Channel + + + + + Opcode @@ -3539,12 +3823,12 @@ trace - Above + Profiling messages - + Unnamed - + <i>FPS: %0/%1</i> @@ -3552,32 +3836,32 @@ trace - Above + Profiling messages 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. @@ -3585,27 +3869,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3626,19 +3910,19 @@ trace - Above + Profiling messages Премахване - + Create New Crate - + Rename - + Преименуване - + Lock Заключване @@ -3668,7 +3952,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3685,84 +3969,84 @@ trace - Above + Profiling messages Внасяне на колекция - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) - + M3U Списък с песни (*.m3u) Crates are a great way to help organize the music you want to DJ with. + + + + Export to Engine DJ + + Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. Колекцията не може да има празно име. - + A crate by that name already exists. Съществува друга колекция с това име. @@ -3857,12 +4141,12 @@ trace - Above + Profiling messages Програмисти от стари версии - + Official Website - + Donate @@ -3918,7 +4202,7 @@ trace - Above + Profiling messages - + Analyze Анализиране @@ -3968,12 +4252,12 @@ trace - Above + Profiling messages Спиране на анализирането - + Analyzing %1% %2/%3 - + Analyzing %1/%2 @@ -3981,92 +4265,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Пропускане - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Секунди - - Full Intro + Outro - - - - - Fade At Outro Start - - - - - Full Track - - - - - Skip Silence - - - - + Auto DJ Fade Modes Full Intro + Outro: @@ -4088,59 +4352,89 @@ 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. +last sound. + +Skip Silence Start Full Volume: +The same as Skip Silence, but starting transitions with a centered +crossfader, so that the intro starts at full volume. + - - Repeat + + Full Intro + Outro - - Auto DJ requires two decks assigned to opposite sides of the crossfader. + + Fade At Outro Start - - One deck must be stopped to enable Auto DJ mode. + + Full Track + + + + + Skip Silence + + + + + Skip Silence Start Full Volume + + + + + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - - Decks 3 and 4 must be stopped to enable Auto DJ mode. + + Repeat + + + + + Auto DJ requires two decks assigned to opposite sides of the crossfader. + + + + + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Авто-DJ (Автодиджей) - + Shuffle Разбъркано възпроизвеждане - + 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. @@ -4159,7 +4453,7 @@ If no track sources are configured, the track is added from the library instead. - + Choose between different algorithms to detect beats. @@ -4194,7 +4488,22 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + + Use rhythmic channel when analysing stem file + + + + + Disabled + + + + + Enforced + + + + Choose Analyzer Избери Анализатор @@ -4240,7 +4549,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Close - + Затваряне @@ -4255,7 +4564,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Cancel - + Отказ @@ -4305,7 +4614,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Retry - + Отново @@ -4348,32 +4657,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4412,17 +4726,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4488,7 +4802,7 @@ You tried to learn: %1,%2 - + &Close @@ -4556,7 +4870,7 @@ You tried to learn: %1,%2 % - + % @@ -4575,42 +4889,42 @@ You tried to learn: %1,%2 - + Add Random Tracks - + Enable random track addition to queue - + Add random tracks from Track Source if the specified minimum tracks remain - + Minimum allowed tracks before addition - + Minimum number of tracks after which random tracks may be added - + Crossfader Behaviour - + Reset the Crossfader back to center after disabling AutoDJ - + Hint: Resetting the crossfader to center will cause a drop of the main output's volume if you've selected "Constant Power" crossfader curve in the Mixer preferences. @@ -4618,122 +4932,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + Icecast 1 - + MP3 - + MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo + Стерео + + + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. - - - - + + + Action failed Неуспешно действие - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4746,27 +5077,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing Пробване на Mixxx Icecast - + Public stream Публичен поток - + http://www.mixxx.org - + http://www.mixxx.org - + Stream name Име на потока - + 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. @@ -4806,67 +5137,72 @@ Two source connections to the same server that have the same mountpoint can not Настройки за %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website Уеб страница - + Live mix Микс на живо - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Жанр - + Use UTF-8 encoding for metadata. - + Description Описание @@ -4892,42 +5228,42 @@ Two source connections to the same server that have the same mountpoint can not Канали - + Server connection Връзка със сървъра - + Type Тип - + Host Сървър - + Login Влизане - + Mount Монтиране - + Port Порт - + Password Парола - + Stream info @@ -4937,17 +5273,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5006,13 +5342,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5055,132 +5392,138 @@ Two source connections to the same server that have the same mountpoint can not Replace… + + + Jump default color + + + + + When key colors are enabled, Mixxx will display a color hint +associated with each key. + + + + + Enable Key Colors + + + + + Key palette + + DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + Без - + %1 by %2 - - No Name + + Mapping has been edited - - No Description - - - - - No Author - - - - - Mapping has been edited - - - - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5188,65 +5531,120 @@ Apply settings and continue? DlgPrefControllerDlg - - (device category goes here) - - - - + Controller Name - + Enabled Включено - - Description: + + Refresh mapping list - - Support: + + Device Info + + + + + Physical Interface: + + + + + Vendor name: + + + + + Product name: + + + + + Vendor ID + + + + + VID: + + + + + Product ID + + + + + PID: + + + + + Serial number: + + + + + USB interface number: + + + + + HID Usage-Page: + + + + + HID Usage: - - Mapping settings + + Description: + + + + + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add Добавяне - - + + Remove Премахване - + Click to start the Controller Learning wizard. @@ -5256,48 +5654,53 @@ Apply settings and continue? - - Controller Setup - - - - + Load Mapping: - + Mapping Info - + Author: - + Name: - + Learning Wizard (MIDI Only) - + + Data protocol: + + + + Mapping Files: - - - Clear All + + Mapping Settings - + + + Clear All + Изчистване на всичко + + + Output Mappings @@ -5305,22 +5708,28 @@ Apply settings and continue? DlgPrefControllers - - 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. + + %1 is a virtual controller that allows to use e.g. the 'MIDI for light' mapping.<br/>You need to restart Mixxx in order to enable it.<br/><b>Note:</b> mappings meant for physical controllers can cause issues and even render the Mixxx GUI unresponsive when being loaded to %1. + text enclosed in <b> is bold, <br/> is a linebreak %1 is the placehodler for 'MIDI Through Port' + + + + + 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5343,17 +5752,22 @@ Apply settings and continue? - + + Enable MIDI Through Port + + + + Mappings - + Open User Mapping Folder - + Resources @@ -5363,7 +5777,7 @@ Apply settings and continue? - + 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. @@ -5373,7 +5787,7 @@ Apply settings and continue? Skin - + Кожа @@ -5445,6 +5859,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5474,139 +5898,139 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 10% - + 16% - + 24% - + 50% - + 50% - + 90% - + 90% @@ -5662,7 +6086,7 @@ CUP mode: Remaining - + Остава @@ -5901,124 +6325,134 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Преименуване - + Export Изнасяне - + Delete Изтриване - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - + + + + + + + + + + + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6026,62 +6460,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Информация - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6094,193 +6528,208 @@ 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. - + Enable Key Detection - + Choose Analyzer Избери Анализатор - + Choose between different algorithms to detect keys. - + Analyzer Settings Настройки на Анализатор - + Enable Fast Analysis (For slow computers, may be less accurate) - + Re-analyze keys when settings change or 3rd-party keys are present - + + Exclude rhythmic channel when analysing stem file + + + + + Disabled + + + + + Enforced + + + + Key Notation - + Lancelot - + Lancelot/Traditional - + OpenKey - + OpenKey/Traditional - + Traditional - + Custom - + A - + Bb - + B - + C - + Db - + D - + Eb - + E - + F - + F# - + G - + Ab - + Am - + Bbm - + Bm - + Cm - + C#m - + Dm - + Ebm - + Em - + Fm - + F#m - + Gm - + G#m @@ -6288,72 +6737,102 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefLibrary - + See the manual for details - + 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 Сканиране - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font @@ -6402,262 +6881,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats - + Аудио формати - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible Използване на относителни файлови местоположения при изнасяне на списъци с песни (ако е възможно) - + ... - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms - + Load track to next available deck - + External Libraries - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Show iTunes Library - + Show Traktor Library - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. @@ -6715,22 +7199,22 @@ and allows you to pitch adjust them for harmonic mixing. - + Only allow EQ knobs to control EQ-specific effects - + Uncheck to allow any effect to be loaded into the EQ knobs. - + Use the same EQ filter for all decks - + Uncheck to allow different decks to use different EQ effects. @@ -6740,17 +7224,17 @@ and allows you to pitch adjust them for harmonic mixing. - + Quick Effect - + Bypass EQ effect processing - + When checked, EQs are not processed, improving performance on slower computers. @@ -6775,39 +7259,44 @@ and allows you to pitch adjust them for harmonic mixing. - + + Reset stem controls on track load + + + + Equalizer frequency Shelves - + High EQ - - + + 16 Hz - + 16 Hz - - + + 20.05 kHz - + 20.05 kHz - + Low EQ - + Main EQ - + Reset Parameter @@ -6846,12 +7335,12 @@ and allows you to pitch adjust them for harmonic mixing. High - + Високо None - + Без @@ -6997,33 +7486,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7041,43 +7530,55 @@ and allows you to pitch adjust them for harmonic mixing. Избор... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Качество - + Tags Етикети - + Title Заглавие - + Author Автор - + Album Албум - + Output File Format - + Compression - + Lossy @@ -7092,12 +7593,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7115,7 +7616,7 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefReplayGain - + %1 LUFS (adjust by %2 dB) @@ -7228,173 +7729,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Включено - + Stereo Стерео - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + %1 ms - + Configuration error Грешка в настройките @@ -7412,133 +7917,138 @@ The loudness target is approximate and assumes track pregain and main output lev API на звука - + Sample Rate Честота на дискретизация - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Изход - + Input Вход - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices - + Проверка за устройства @@ -7570,15 +8080,15 @@ The loudness target is approximate and assumes track pregain and main output lev Input - + Вход Vinyl Configuration - + Настройки на плочите - + Show Signal Quality in Skin Показване качеството на сигнала в скина @@ -7614,46 +8124,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + Качество на сигнала - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + с помощта на xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7661,47 +8176,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB - + Top - + Center - + Bottom - + + 1/3 of waveform viewer + options for "Text height limit" + + + + + Entire waveform viewer + + + + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7714,302 +8240,354 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. - - - - - Waveform + + OpenGL Status - - Normalize waveform overview + + Displays which OpenGL version is supported by the current platform. - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Ниско - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High - + Високо - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - - Time until next marker + + Preferred font size - - Placement + + Text height limit - - Font size + + Time until next marker + + + + + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % - + % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - - Clear Cached Waveforms + + Stem - - - DlgPreferences - - Sound Hardware - Звуков хардуер + + Channel opacity + - - Controllers + + Channel opacity (outline) - - Library - Библиотека + + Main stem opacity + - - Interface - Интерфейс + + Outline stem opacity + - - Waveforms + + Move channel to foreground when volume is adjusted - - Mixer + + Overview Waveforms - - Auto DJ - Авто-DJ (Автодиджей) + + Gain + - - Decks + + Normalize to peak - - Colors + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings - - &Help - Preferences standard buttons: consider the other buttons to choose a unique Alt hotkey (&) + + Clear Cached Waveforms + + + DlgPreferences + + + Sound Hardware + Звуков хардуер + + + + Controllers + + + + + Library + Библиотека + + + + Interface + Интерфейс + + + + Waveforms + + + + + Mixer + Смесител + + + + Auto DJ + Авто-DJ (Автодиджей) + + + + Decks + + + + + Colors + + + + + &Help + Preferences standard buttons: consider the other buttons to choose a unique Alt hotkey (&) + Помо&щ + &Restore Defaults @@ -8035,47 +8613,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Ефекти - + 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> - + Vinyl Control Контрол с грамофони - + Live Broadcasting Живо излъчване - + Modplug Decoder @@ -8090,7 +8668,7 @@ Select from different types of displays for the waveform, which differ primarily 1 - + 1 @@ -8108,22 +8686,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Начало на записа - + Recording to file: - + Stop Recording Спиране на записа - + %1 MiB written in %2 @@ -8178,27 +8756,27 @@ Select from different types of displays for the waveform, which differ primarily - + Selecting database rows... - + No colors changed! - + No cues matched the specified criteria. - + Confirm Color Replacement - + The colors of %1 cues in %2 tracks will be replaced. This change cannot be undone! Are you sure? @@ -8250,7 +8828,7 @@ Select from different types of displays for the waveform, which differ primarily Изпълнител - + Fetching track data from the MusicBrainz database @@ -8327,72 +8905,67 @@ Select from different types of displays for the waveform, which differ primarily - + Original tags - + Metadata applied - + %1 - - Could not find this track in the MusicBrainz database. - - - - + Suggested tags - + The results are ready to be applied - + Can't connect to %1: %2 - + Looking for cover art - + Cover art found, receiving image. - + Cover Art is not available for selected metadata - + Metadata & Cover Art applied - + Selected cover art applied - + Cover Art File Already Exists - + File: %1 Folder: %2 Override existing file? @@ -8428,7 +9001,7 @@ This can not be undone! Track Editor - + Редактор на песни @@ -8436,284 +9009,289 @@ This can not be undone! - + Filetype: - + BPM: - + Темпо: - + Location: - + Bitrate: - + Comments - + BPM Уд/мин (BPM) - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Пътека/писта/запис № - + Album Artist Изпълнител - + Composer Композитор - + Title Заглавие - + Grouping Групировка - + Key Ключ - + Year Година - + Artist Изпълнител - + Album Албум - + Genre Жанр - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: Продължителност: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - - Track BPM: + + Filesize: - + + Track BPM: + Темпо на песента: + + + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Щракнете в такт - + Hint: Use the Library Analyze view to run BPM detection. Щракнете на "Анализ", за да активирате засичане на темпо. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Прилагане - + &Cancel &Отказ - + (no color) @@ -8781,12 +9359,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Re-Import Metadata from files - + Color @@ -8870,7 +9448,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9049,7 +9627,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EffectParameterSlotBase - + No effect loaded. @@ -9072,27 +9650,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9236,54 +9814,86 @@ 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. Check the logs for details. + + LegacyControllerColorSetting + + + Change color + + + + + Choose a new color + + + + + LegacyControllerFileSetting + + + Browse... + + + + + + No file selected + + + + + Select a file + + + LegacySkinParser - - + + Safe Mode Enabled Shown when Mixxx is running in safe mode. - - + + No OpenGL support. Shown when Spinny can not be displayed. Please keep @@ -9294,57 +9904,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9352,62 +9962,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9417,22 +10027,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9479,32 +10089,27 @@ Do you really want to overwrite it? MidiController - - MIDI Controller - - - - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9564,22 +10169,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9587,208 +10192,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -9804,107 +10450,229 @@ Do you want to select an input device? PlaylistFeature - + Lock Заключване - - + + Playlists Списъци с песни - + Shuffle Playlist - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Отключване - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 Създаване на нов списък с песни + + PredefinedColorPaletes + + + Mixxx Hotcue Colors + + + + + PredefinedColorPalettes + + + Serato DJ Track Metadata Hotcue Colors + + + + + Serato DJ Pro Hotcue Colors + + + + + Rekordbox COLD1 Hotcue Colors + + + + + Rekordbox COLD2 Hotcue Colors + + + + + Rekordbox COLORFUL Hotcue Colors + + + + + Mixxx Track Colors + + + + + Rekordbox Track Colors + + + + + Serato DJ Pro Track Colors + + + + + Traktor Pro Track Colors + + + + + VirtualDJ Track Colors + + + + + Mixxx Key Colors + + + + + Traktor Key Colors + + + + + Mixed In Key - Key Colors + + + + + Protanopia / Protanomaly Key Colors + + + + + Deuteranopia / Deuteranomaly Key Colors + + + + + Tritanopia / Tritanomaly Key Colors + + + 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 @@ -10018,69 +10786,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Слушалки - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier Дек - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Контрол с грамофони - + Microphone + Audio path indetifier Микрофон - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path Неизвестен вид пътека %1 @@ -10091,7 +10872,7 @@ Do you want to scan your library for cover files now? Encoder - + Кодек @@ -10199,8 +10980,8 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx - + Feedback @@ -10249,8 +11030,8 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx - + Triplets @@ -10317,8 +11098,8 @@ Default: flat top - + Depth @@ -10382,13 +11163,13 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Intensity of the effect - + Divide rounded 1/2 beats of the Period parameter by 3. @@ -10409,40 +11190,57 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + + The Mixxx Team + + + + Adds a metronome click sound to the stream - + BPM Уд/мин (BPM) - + Set the beats per minute value of the click sound - + Sync Синхронизация - + Synchronizes the BPM with the track if it can be retrieved + + + + Gain + + + + + Set the gain of metronome click sound + + - + Period @@ -10539,15 +11337,15 @@ Higher values result in less attenuation of high frequencies. - - + + Low - + Ниско - + Gain for Low Filter @@ -10599,7 +11397,7 @@ Higher values result in less attenuation of high frequencies. High - + Високо @@ -10674,7 +11472,7 @@ Higher values result in less attenuation of high frequencies. - + Gain for Low Filter (neutral at 1.0) @@ -10684,60 +11482,60 @@ Higher values result in less attenuation of high frequencies. - + Phaser - + Stereo - + Стерео - + Stages - + 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 - + Controls how much of the output signal is looped - - + + Range - + Controls the frequency range across which the notches sweep. - + Number of stages - + Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others @@ -10779,7 +11577,7 @@ Higher values result in less attenuation of high frequencies. Ctrl+Shift+O - + Ctrl+Shift+O @@ -10890,12 +11688,12 @@ Higher values result in less attenuation of high frequencies. - + This stream is online for testing purposes! - + Live Mix @@ -11208,7 +12006,7 @@ Fully right: end of the effect period - + MP3 encoding is not supported. Lame could not be initialized @@ -11218,19 +12016,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Дек %1 @@ -11270,52 +12068,52 @@ Fully right: end of the effect period - + Pitch Shift - + Raises or lowers the original pitch of a sound. - + Pitch - + The pitch shift applied to the sound. - + The range of the Pitch knob (0 - 2 octaves). - + Semitones - + Change the pitch in semitone steps instead of continuously. - + Formant - + Preserve the resonant frequencies (formants) of the human vocal tract and other instruments. Hint: compensates "chipmunk" or "growling" voices @@ -11363,7 +12161,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Чисто преминаване на сигнала @@ -11394,170 +12192,246 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 - - + + Compressor - + Auto Makeup Gain - + Makeup - + The Auto Makeup button enables automatic gain adjustment to keep the input signal and the processed output signal as close as possible in perceived loudness - + Off - + On - - Threshold (dBFS) + + Auto Gain Control - - Threshold + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal - + Ratio (:1) - + Ratio - + The Ratio knob determines how much the signal is attenuated above the chosen threshold. For a ratio of 4:1, one dB remains for every four dB of input signal above the threshold. At a ratio of 1:1 no compression is happening, as the input is exactly the output. - + Knee (dBFS) - + + Knee - + The Knee knob is used to achieve a rounder compression curve - + + Attack (ms) - + + Attack - + The Attack knob sets the time that determines how fast the compression will set in once the signal exceeds the threshold - + + Release (ms) - + + Release - + The Release knob sets the time that determines how fast the compressor will recover from the gain reduction once the signal falls under the threshold. Depending on the input signal, short release times may introduce a 'pumping' effect and/or distortion. - - + + Level - + The Level knob adjusts the level of the output signal after the compression was applied - + various - + built-in - + missing - + Distribute stereo channels into mono channels processed in parallel. - + Warning! - + Processing stereo signal as mono channel may result in pitch and tone imperfection, and this is mono-incompatible, due to third party limitations. - + Dual threading mode is incompatible with mono main mix. - + Dual threading mode is only available with RubberBand. @@ -11567,42 +12441,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11660,54 +12534,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11715,10 +12589,10 @@ may introduce a 'pumping' effect and/or distortion. RhythmboxFeature - - + + Rhythmbox - + Rythmbox @@ -11762,34 +12636,34 @@ may introduce a 'pumping' effect and/or distortion. SeratoFeature - - - + + + Serato - + Reads the following from the Serato Music directory and removable devices: - + Tracks - + Crates - + Колекции - + Check for Serato databases (refresh) - + (loading) Serato @@ -11797,64 +12671,64 @@ may introduce a 'pumping' effect and/or distortion. SetlogFeature - + Join with previous (below) - + Mark all tracks played - + Finish current and start new - + Lock all child playlists - + Unlock all child playlists - + Delete all unlocked child playlists - + History - + Unlock - + Отключване - + Lock - + Заключване - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -11863,193 +12737,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx се натъкна на проблем - + Could not allocate shout_t Грешка при разпределяне на shout_t - + Could not allocate shout_metadata_t Грешка при разпределяне на shout_metadata_t - + Error setting non-blocking mode: Грешка при задаване на несинхроничен режим: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. Моля проверете Интернет връзката си и дали името и паролата ви са верни. @@ -12057,7 +12931,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12065,23 +12939,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device устройство - + An unknown error occurred Възникна неочаквана грешка - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12121,7 +12995,7 @@ may introduce a 'pumping' effect and/or distortion. Max - + от @@ -12147,12 +13021,27 @@ may introduce a 'pumping' effect and/or distortion. - - Identifying track through Acoustid + + Reading track for fingerprinting failed. + + + + + Identifying track through AcoustID + + + + + Could not identify track through AcoustID. + + + + + Could not find this track in the MusicBrainz database. - + Retrieving metadata from MusicBrainz @@ -12210,656 +13099,656 @@ may introduce a 'pumping' effect and/or distortion. - + Use the mouse to scratch, spin-back or throw tracks. - + Waveform Display - + Shows the loaded track's waveform near the playback position. - + Drag with mouse to make temporary pitch adjustments. - + Scroll to change the waveform zoom level. - + Waveform Zoom Out - + Waveform Zoom In - + Waveform Zoom - - + + Spinning Vinyl - + Rotates during playback and shows the position of a track. - + Right click to show cover art of loaded track. - + Gain - + Adjusts the pre-fader gain of the track (to avoid clipping). - + (too loud for the hardware and is being distorted). - + Indicates when the signal on the channel is clipping, - + Channel Volume Meter - + Shows the current channel volume. - + Microphone Volume Meter - + Shows the current microphone volume. - + Auxiliary Volume Meter - + Shows the current auxiliary volume. - + Auxiliary Peak Indicator - + Indicates when the signal on the auxiliary is clipping, - + Volume Control - + Adjusts the volume of the selected channel. - + Booth Gain - + Adjusts the booth output gain. - + Crossfader - + Кросфейдър - + Balance - + Headphone Volume - + Adjusts the headphone output volume. - + Headphone Gain - + Adjusts the headphone output gain. - + Headphone Mix - + Headphone Split Cue - + Adjust the Headphone Mix so in the left channel is not the pure cueing signal. - + Microphone - + Микрофон - + Show/hide the Microphone section. - + Sampler - + Show/hide the Sampler section. - + Vinyl Control - + Контрол с грамофони - + Show/hide the Vinyl Control section. - + Preview Deck - + Show/hide the Preview deck. - - - + + + Cover Art Обложка - + Show/hide Cover Art. - + Toggle 4 Decks - + Switches between showing 2 decks and 4 decks. - + Show Library - + Show or hide the track library. - + Show Effects - + Show or hide the effects. - + Toggle Mixer - + Show or hide the mixer. - + Show/hide volume meters for channels and main output. - + Microphone Volume - + Adjusts the microphone volume. - + Microphone Gain - + Adjusts the pre-fader microphone gain. - + Auxiliary Gain - + Adjusts the pre-fader auxiliary gain. - + Microphone Talk-Over - + Hold-to-talk or short click for latching to - + Microphone Talkover Mode - + Off: Do not reduce music volume - + Manual: Reduce music volume by a fixed amount set by the Strength knob. - + Behavior depends on Microphone Talkover Mode: - + Off: Does nothing - + Change the step-size in the Preferences -> Decks menu. - + Low EQ - + Adjusts the gain of the low EQ filter. - + Mid EQ - + Adjusts the gain of the mid EQ filter. - + High EQ - + Adjusts the gain of the high EQ filter. - + Hold-to-kill or short click for latching. - + High EQ Kill - + Holds the gain of the high EQ to zero while active. - + Mid EQ Kill - + Holds the gain of the mid EQ to zero while active. - + Low EQ Kill - + Holds the gain of the low EQ to zero while active. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track - + Ключ - + BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -12869,1092 +13758,1200 @@ may introduce a 'pumping' effect and/or distortion. - + + Left click and hold allows to preview the position where the play head will jump to on release. Dragging can be aborted with right click. + + + + Big Spinny/Cover Art - + Show a big version of the Spinny or track cover art if enabled. - + Main Output Peak Indicator - + Indicates when the signal on the main output is clipping, - + Main Output L Peak Indicator - + Indicates when the left signal on the main output is clipping, - + Main Output R Peak Indicator - + Indicates when the right signal on the main output is clipping, - + Main Channel L Volume Meter - + Shows the current volume for the left channel of the main output. - + Shows the current volume for the right channel of the main output. - - + + Main Output Gain - - + + Adjusts the main output gain. - + Determines the main output by fading between the left and right channels. - + 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. - + 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 the scrolling waveforms - + Show/hide the beatgrid controls section - + + Show/hide the stem mixing controls section + + + + Hide all skin sections except the decks to have more screen space for the track library. - + Volume Meters - + mix microphone input into the main output. - + Auto: Automatically reduce music volume when microphone volume rises above threshold. - - + + 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. - + Manual: Sets how much to reduce the music volume, when talkover is activated regardless of volume of microphone inputs. - + If keylock is disabled, pitch is also affected. - + Speed Up - + Raises the track playback speed (tempo). - + Raises playback speed in small steps. - + Slow Down - + Lowers the track playback speed (tempo). - + Lowers playback speed in small steps. - + Speed Up Temporarily (Nudge) - + Holds playback speed higher while active (tempo). - + Holds playback speed higher (small amount) while active. - + Slow Down Temporarily (Nudge) - + Holds playback speed lower while active (tempo). - + Holds playback speed lower (small amount) while active. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. - + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - Mutes the selected channel's audio in the main output. + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - - Main mix enable + + Hint: Change the default cue mode in Preferences -> Decks. - - Hold or short click for latching to mix this input into the main output. + + Mutes the selected channel's audio in the main output. - + + Main mix enable + + + + + Hold or short click for latching to mix this input into the main output. + + + + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. + + + + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + + Stem Label + + + + + Name of the stem stored in the stem file + + + + + Text is displayed in the stem color stored in the stem file + + + + + this stem color is also used for the waveform of this stem + + + + + Stem Mute + + + + + Toggle the stem mute/unmuted + + + + + Stem Volume Knob + + + + + Adjusts the volume of the stem + + + + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Запазване на банка с фрази - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Зареждане на банка с фрази - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear Изчисти - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Следваща - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Предишна - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. - + Channel Peak Indicator @@ -13974,143 +14971,143 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Right click hotcues to edit their labels and colors. - + Right click anywhere else to show the time at that point. - + Channel L Peak Indicator - + Indicates when the left signal on the channel is clipping, - + Channel R Peak Indicator - + Indicates when the right signal on the channel is clipping, - + Channel L Volume Meter - + Shows the current channel volume for the left channel. - + Channel R Volume Meter - + Shows the current channel volume for the right channel. - + Microphone Peak Indicator - + Indicates when the signal on the microphone is clipping, - + Sampler Volume Meter - + Shows the current sampler volume. - + Sampler Peak Indicator - + Indicates when the signal on the sampler is clipping, - + Preview Deck Volume Meter - + Shows the current Preview Deck volume. - + Preview Deck Peak Indicator - + Indicates when the signal on the Preview Deck is clipping, - + Maximize Library - + Microphone Talkover Ducking Strength - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14125,215 +15122,225 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Main Channel R Volume Meter - + (while stopped) - + Cue - + Headphone - + Mute Заглушаване - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix Запиши микс - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator - + If Vinyl control is enabled, displays time-coded vinyl signal quality (see Preferences -> Vinyl Control). @@ -14343,289 +15350,284 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Change the crossfader curve in Preferences -> Crossfader - + 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) - + Activate Vinyl Control from the Menu -> Options. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - - Hint: Change the default cue mode in Preferences -> Interface. - - - - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Албум - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -14633,12 +15635,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -14646,33 +15648,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - Overwrite Existing File? + + Replace Existing File? - - "%1" already exists, overwrite? + + "%1" already exists, replace? - - &Overwrite + + &Replace - - Over&write All + + Apply to all files @@ -14681,12 +15683,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - - Skip &All - - - - + Export Error @@ -14694,7 +15691,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportWizard - + Export Track Files To @@ -14702,23 +15699,23 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportWorker - - + + Export process was canceled - + Error removing file %1: %2. Stopping. - + Error exporting track %1 to %2: %3. Stopping. - + Error exporting tracks @@ -14726,23 +15723,23 @@ 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 песни или плейлисти може да не са заредени. @@ -14858,47 +15855,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -14921,7 +15946,7 @@ This can not be undone! - + Save snapshot @@ -15022,407 +16047,448 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist - + Създаване на нов списък с песни - + Ctrl+n - + Create New &Crate - + Create a new crate - + Създаване на нова колекция - + Ctrl+Shift+N - - + + &View &Изглед - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &На цял екран - + Display Mixxx using the full screen Показване на Mixxx на цял екран - + &Options &Опции - + &Vinyl Control &Контрол с грамофони - + Use timecoded vinyls on external turntables to control Mixxx Ползване на грамофонни плочи с код за контролиране на Mixxx - + Enable Vinyl Control &%1 - + &Record Mix &Записване на микс - + Record your mix to a file Записва Вашия микс във файл - + Ctrl+R - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server Излъчвайте миксовете чрез shoutcast или icecast сървър - + Ctrl+L - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Нас&тройки - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help Помо&щ - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Поддръжка от общността - + Get help with Mixxx - + &User Manual Н&аръчник на потребителя - + Read the Mixxx user manual. Прочетете наръчника за потребителя на Mixxx. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. Помогнете на превода на този софтуер на Вашия език. - + &About - + &За - + About the application Относно приложението @@ -15430,25 +16496,25 @@ This can not be undone! WOverview - + 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 @@ -15457,25 +16523,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -15486,169 +16540,163 @@ This can not be undone! Търсене... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Ключ - + harmonic with %1 - + BPM Уд/мин (BPM) - + between %1 and %2 - + Artist Изпълнител - + Album Artist Изпълнител - + Composer Композитор - + Title Заглавие - + Album Албум - + Grouping Групировка - + Year Година - + Genre Жанр - + Directory - + &Search selected @@ -15656,594 +16704,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck Дек - + Sampler - + Add to Playlist Добавяне към списък с песни - + Crates - + Колекции - + Metadata - + Update external collections - + Cover Art - + Обложка - + Adjust BPM - + Select Color - - + + Analyze - + Анализиране - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) Добавяне към Авто DJ опашка (край) - + Add to Auto DJ Queue (top) Добавяне към Авто DJ опашка (начало) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Премахване - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Оценка - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Ключ - + ReplayGain - + Waveform - + Comment Коментар - + All Всички - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Отказ - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Затваряне - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + + Don't show again during this session + + + + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16256,40 +17350,78 @@ This can not be undone! + + WTrackStemMenu + + + Load for stem mixing + + + + + Load pre-mixed stereo track + + + + + Load the "%1" stem + + + + + Load multiple stem into a stereo deck + + + + + Select stems to load + + + + + Release "CTRL" to load the current selection + + + + + Use "CTRL" to select multiple stems + + + WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16297,60 +17429,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Показване или скриване на колони. + + + Shuffle Tracks + + 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. @@ -16364,67 +17501,78 @@ Mixxx се нуждае от QT с поддръжка за SQLite. Молже п mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Разглеждане - + Export directory - + Database version - + Export Изнасяне - + Cancel Отказ - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16443,30 +17591,35 @@ Mixxx се нуждае от QT с поддръжка за SQLite. Молже п - mixxx::LibraryExporter + mixxx::EnginePrimeExportJob - - Export Completed + + Failed to export track %1 - %2: +%3 + %1 is the artist %2 is the title and %3 is the original error message + + + mixxx::LibraryExporter - Exported %1 track(s) and %2 crate(s). + Export Completed - - Export Failed + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - Export failed: %1 + Export Failed - Exporting to Engine Prime... + Exporting to Engine DJ... @@ -16479,86 +17632,64 @@ Mixxx се нуждае от QT с поддръжка за SQLite. Молже п - mixxx::hid::DeviceCategory - - - HID Interface %1: - - - - - Generic HID Pointer - - - - - Generic HID Mouse - - - - - Generic HID Joystick - - - - - Generic HID Game Pad - - + mixxx::network::WebTask - - Generic HID Keyboard + + No network access - - Generic HID Keypad + + The Network request has not been started + + + mixxx::qml::QmlApplication - - Generic HID Multi-axis Controller + + Existing user profile detected - - Unknown HID Desktop Device: + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. - - Apple HID Infrared Control + + Ok + + + mixxx::qml::QmlVisibleEffectsModel - - Unknown Apple HID Device: + + No effect loaded. + + + mixxx::qml::QmlWaveformRendererMark - - Unknown HID Device: + + Cannot find the marker pixmap - - - mixxx::network::WebTask - - No network access + + Cannot find the marker endPixmap - - The Network request has not been started + + Cannot find the marker icon - - - mixxx::qml::QmlVisibleEffectsModel - - No effect loaded. + + Cannot find the marker endIcon diff --git a/res/translations/mixxx_br.ts b/res/translations/mixxx_br.ts index e2799006bc2d..a0196e30b8d9 100644 --- a/res/translations/mixxx_br.ts +++ b/res/translations/mixxx_br.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist @@ -258,13 +258,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Pladenn - + Album Artist - + Artist Arzour - + Bitrate - + BPM - + Channels - + Color - + Comment - + Composer - + Cover Art - + Date Added Deiziad ouzhpennet - + Last Played - + Duration Padelezh - + Type - + Genre - + Grouping - + Key Alc'hwez - + Location - + Preview - + Rating - + ReplayGain - + Samplerate - + Played - + Title - + Track # - + Year Bloaz - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links - - + + Devices - + Removable Devices - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages - + 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. - + Confirm Deletion - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename - + Export - + Delete - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: - + Location: - + Bitrate: - + Comments - + BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # - + Album Artist - + Composer - + Title - + Grouping - + Key Alc'hwez - + Year Bloaz - + Artist Arzour - + Album Pladenn - + Genre @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Alc'hwez - + harmonic with %1 - + BPM - + between %1 and %2 - + Artist Arzour - + Album Artist - + Composer - + Title - + Album Pladenn - + Grouping - + Year Bloaz - + Genre - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating - + Cue Point - + Hotcues - + Intro - + Outro - + Key Alc'hwez - + ReplayGain - + Waveform - + Comment - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_bs.ts b/res/translations/mixxx_bs.ts index 00725ebe21e1..e6aa4fec0bc1 100644 --- a/res/translations/mixxx_bs.ts +++ b/res/translations/mixxx_bs.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist @@ -258,13 +258,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nije u mogućnosti pustiti pjesmu. @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Album - + Album Artist - + Artist Umjetnik - + Bitrate - + BPM - + Channels - + Color - + Comment - + Composer - + Cover Art - + Date Added Dodata na datum - + Last Played - + Duration - + Type - + Genre Žanr - + Grouping - + Key - + Location - + Preview - + Rating Ocjena - + ReplayGain - + Samplerate - + Played Puštano - + Title Naslov - + Track # Pjesma # - + Year Godina - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links Brzi linkovi - - + + Devices Uređaji - + Removable Devices Uklonjivi uređaji - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Zaključaj @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% 10% - + 16% - + 24% - + 50% 50% - + 90% 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Preimenuj - + Export - + Delete Izbriši - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Uključen - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input Ulaz - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinyl Konfiguracija - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: - + Location: - + Bitrate: - + Comments - + BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Pjesma # - + Album Artist - + Composer - + Title Naslov - + Grouping - + Key - + Year Godina - + Artist Umjetnik - + Album Album - + Genre Žanr @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Zaključaj - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Zaključaj - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key - + harmonic with %1 - + BPM - + between %1 and %2 - + Artist Umjetnik - + Album Artist - + Composer - + Title Naslov - + Album Album - + Grouping - + Year Godina - + Genre Žanr - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Sanduci - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Ukloni - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Ocjena - + Cue Point - + Hotcues - + Intro - + Outro - + Key - + ReplayGain - + Waveform - + Comment - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_ca.qm b/res/translations/mixxx_ca.qm index 535c7bf8aacd..d64d05de1e3d 100644 Binary files a/res/translations/mixxx_ca.qm and b/res/translations/mixxx_ca.qm differ diff --git a/res/translations/mixxx_ca.ts b/res/translations/mixxx_ca.ts index 5aeff2d1de3e..2b9483211207 100644 --- a/res/translations/mixxx_ca.ts +++ b/res/translations/mixxx_ca.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Caixes - + Enable Auto DJ Activa el DJ automàtic - + Disable Auto DJ Desactiva el DJ automàtic - + Clear Auto DJ Queue Neteja la cua d'Auto DJ - + Remove Crate as Track Source Esborra la caixa com a origen de pistes - + Auto DJ DJ automàtic - + Confirmation Clear Confirma la neteja - + Do you really want to remove all tracks from the Auto DJ queue? Realment vols esborrar totes les pistes de la cua d'Auto DJ? - + This can not be undone. Això no es pot desfer! - + Add Crate as Track Source Afegeix la caixa com a origen de pistes @@ -223,7 +231,7 @@ - + Export Playlist Exporta la llista de reproducció @@ -237,7 +245,7 @@ Export to Engine DJ "Engine DJ" is a product name and must not be translated. - + Exporta a l'Engine DJ @@ -277,13 +285,13 @@ - + 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ó: @@ -298,12 +306,12 @@ Realment vols esborrar la llista de reproducció <b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # Núm. - + Timestamp Marca de temps @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No s'ha pogut carregar la pista. @@ -362,7 +370,7 @@ Canals - + Color Color @@ -377,7 +385,7 @@ Compositor - + Cover Art Portada @@ -387,7 +395,7 @@ Afegida el dia - + Last Played Darrera reproducció @@ -417,7 +425,7 @@ Tonalitat musical - + Location Ubicació @@ -427,7 +435,7 @@ Visió general - + Preview Pre-escolta @@ -467,7 +475,7 @@ Any - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk S' està recuperant la imatge... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No es pot utilitzar l'emmagatzematge de claus segur: L'accés al clauer ha fallat. - + Secure password retrieval unsuccessful: keychain access failed. No s'ha pogut obtenir la clau: L'accés al clauer ha fallat. - + Settings error Error de configuració - + <b>Error with settings for '%1':</b><br> <b>Error de configuració per '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Ordinador @@ -612,19 +620,19 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + Mostra les dades de les etiquetes del fitxer, no les dades de la pista de la teva biblioteca Mixxx com altres vistes de pistes. - + If you load a track file from here, it will be added to your library. - + Si carregues un fitxer de pista aquí, serà afegit a la teva biblioteca. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: El Mixxx és programari de DJ de codi obert. Per a més informació, veieu: - + 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') Utilitza un paquet de llengua per a la traducció (p. ex. 'ca') - + 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 Camí on s'escriu la línia de temps de les estadístiques de depuració - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Fa que el Mixxx mostri/registri totes les dades de la controladora que rep i les funcions de script que carrega - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! L'assignació de controlador utilitzarà nivells més agressius d'avisos i errors quan detecti un mal ús de la API dels controladors. Les assignacions de controladors noves haurien de fer-se amb aquesta opció habilitada! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. habilita el mode desenvolupador. Inclou registre extra d'informació, estadístiques de rendiment i un menú de desenvolupador. - + Top-level directory where Mixxx should look for settings. Default is: Directori principal on Mixxx ha de cercar les preferències. Per defecte és: - + Starts Auto DJ when Mixxx is launched. Inicia Auto DJ quan s'inicia Mixxx. - + Rescans the library when Mixxx is launched. Torna a escanejar la biblioteca en iniciar el Mixxx. - + Use legacy vu meter Usa el mesurador de nivell de reproducció heretat - + Use legacy spinny Usa el gir antic - - Loads experimental QML GUI instead of legacy QWidget skin - Carrega la GUI de QML experimental en lloc de l'aspecte QWidget heretat + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Activa el mode segur. Desactiva les formes d'ona amb OpenGL i els vinils giratoris. Prova aquesta opció si el Mixxx no s'inicia correctament. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utilitzeu colors a la sortida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ depuració: Per sobre + missatges de depuració/desenvolupador traça - Per sobre + Missatges de perfil - + 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. Estableix el nivell de registre en què el buffer de registre es buida a mixxx.log. <level> és un dels valors definits al --nivell-registre anteriorment. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Estableix la mida màxima, en bytes, del fitxer mixxx.log. Feu servir -1 si no voleu establir un límit. El valor predeterminat és 100 MB com a 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Trenca (SIGINT) Mixxx, si DEBUG_ASSERT s'avalua com a fals. Amb un depurador podeu continuar després. - + Overrides the default application GUI style. Possible values: %1 Substitueix l'estil de la GUI de l'aplicació per defecte. Valors possibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carregueu els fitxers de música especificats a l'inici. Cada fitxer que especifiqueu es carregarà a la següent plataforma virtual. - + Preview rendered controller screens in the Setting windows. Previsualitza les pantalles del controlador renderitzats a les finestres de configuració. @@ -984,2567 +997,2748 @@ traça - Per sobre + Missatges de perfil ControlPickerMenu - + Headphone Output Sortida d'auriculars - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Plat %1 - + Sampler %1 Reproductor de mostres %1 - + Preview Deck %1 Reproductor de pre-escolta %1 - + Microphone %1 Micròfon %1 - + Auxiliary %1 Canal auxiliar %1 - + Reset to default Torna al valor per defecte - + Effect Rack %1 Rack d'efectes %1 - + Parameter %1 Paràmetre %1 - + Mixer Mesclador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mescla d'auricular (previ/sortida) - + Toggle headphone split cueing Commutador de la pre-escolta partida amb auriculars - + Headphone delay Retard de la sortida d'auriculars - + Transport Controls de reproducció - + Strip-search through track Cerca "Strip Search" a través de la pista - + Play button Botó Reprodueix - - + + Set to full volume Posa a màxim volum - - + + Set to zero volume Posa en silenci - + Stop button Botó d'aturada - + Jump to start of track and play Anar a l'inici de la pista i reproduir-la - + Jump to end of track Anar al final de la pista - + Reverse roll (Censor) button Botó de reprodueix cap enrere i salta endavant (Censura) - + Headphone listen button Botó per escoltar per auriculars - - + + Mute button Botó de mut - + Toggle repeat mode Commutador de mode de repetició - - + + 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 - + Toggle slip mode Commutador del contiua avançant en segon pla "slip" - - + + BPM PPM - + Increase BPM by 1 Augment del BPM en 1 - + Decrease BPM by 1 Reducció del BPM en 1 - + Increase BPM by 0.1 Augment del BPM en 0.1 - + Decrease BPM by 0.1 Reducció del BPM en 0.1 - + BPM tap button Botó de tocs de BPM - + Toggle quantize mode Commutador del mode quantitzat als tocs - + One-time beat sync (tempo only) Sincronitzar el ritme un cop (només tempo) - + One-time beat sync (phase only) Sincronitzar el ritme un cop (només fase) - + Toggle keylock mode Commutador de mode de bloqueig de clau musical - + Equalizers 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 Repetint - + 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 - + Slot %1 Ranura %1 - + Headphone Mix Mescla de sortida d'auricular - + Headphone Split Cue Pre-escolta partida amb auriculars - + Headphone Delay Retard de sortida d'auriculars - + Play Reprodueix - + Fast Rewind Rebobina ràpidament - + Fast Rewind button Botó de rebobinat ràpid - + Fast Forward Avança ràpidament - + Fast Forward button Botó d'avançament ràpid - + Strip Search Cerca "Strip Search" - + Play Reverse Reprodueix cap enrere - + Play Reverse button Botó Reprodueix cap enrere - + Reverse Roll (Censor) Reprodueix cap enrere i salta endavant (Censura) - + Jump To Start Salt a l'inici - + Jumps to start of track Salt a l'inici de la pista - + Play From Start Reprodueix des de l'inici - + Stop Atura't - + Stop And Jump To Start Atura't i salta a l'inici - + Stop playback and jump to start of track Atura la reproducció i vés a l'inici de la pista - + Jump To End Salta al final - + Volume Volum - - - + + + Volume Fader Control del volum - - + + Full Volume Màxim volum - - + + Zero Volume Volum zero - + Track Gain Guany de la pista - + Track Gain knob Control de guany de pista - - + + Mute Posa Mut - + Eject Expulsa - - + + Headphone Listen Escolta pels auriculars - + Headphone listen (pfl) button Botó d'escolta (previ) pels auriculars - + Repeat Mode Mode repetició - + Slip Mode Mode de continua avançant (slip) - - + + Orientation Destí de le mescla - - + + Orient Left Orientació a l'esquerra - - + + Orient Center Orientació al Centre - - + + Orient Right Orientació a la dreta - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap Toc de BPM - + Adjust Beatgrid Faster +.01 Accelera la graella de ritme +.01 - + Increase track's average BPM by 0.01 Incrementa el BPM mitjà de la pista en 0.01 - + Adjust Beatgrid Slower -.01 Alenteix la graella de ritme -.01 - + Decrease track's average BPM by 0.01 Redueix el BPM mitjà de la pista en 0.01 - + Move Beatgrid Earlier Mou cap al començament la graella de ritme - + Adjust the beatgrid to the left Desplaçament de la graella de ritme cap a l'esquerra - + Move Beatgrid Later Mou cap a final la graella de ritme - + Adjust the beatgrid to the right Desplaçament de la graella de ritme cap a la dreta - + Adjust Beatgrid Ajusta la graella de ritme - + Align beatgrid to current position Alinea la graella de ritme a la posició actual - + Adjust Beatgrid - Match Alignment Ajusta la graella de ritme - Fent coindicir l'alineació - + Adjust beatgrid to match another playing deck. Ajusta la graella de ritme per a que coincideixi amb un altre plat en reproducció. - + Quantize Mode Mode de quantitzat - + Sync Sincronitza - + Beat Sync One-Shot Sincronitza el ritme al prémer - + Sync Tempo One-Shot Sincronitza els tempos al prémer - + Sync Phase One-Shot 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 - + High EQ EQ d'aguts - + Mid EQ EQ de mitjos - - + + Main Output Sortida principal - + Main Output Balance Balanç de la sortida principal - + Main Output Delay Retard de la sortida principal - + Main Output Gain Ganància de la sortida principal - + Low EQ 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 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 - + 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) Mostra/Amaga la portada (Biblioteca) - + Show/hide cover art in the library Mostra/amaga la portada a la biblioteca - + 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 - + Headphone Gain Guany dels auriculars - + Headphone gain Guany dels auriculars - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toqueu per sincronitzar el tempo (i la fase si està la quantizació activada), mantingueu premut per activar la sincronització permanent - + One-time beat sync tempo (and phase with quantize enabled) 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 - - + + Adjust %1 Ajusta %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unitat d'efectes %1 - + Button Parameter %1 Botó Paràmetre % 1 - + Skin Aparença - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientació - + Main Output gain Ganància de la sortida principal - + Main Output balance Balanç de la sortida principal - + Main Output delay Retard de la sortida principal - + Headphone Auriculars - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprimeix %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o desexpulsa la pista, és a dir, torna a carregar l'última pista expulsada (de qualsevol deck) <br>Premeu dues vegades per tornar a carregar l'última pista substituïda. En cobertes buides torna a carregar l'última pista expulsada. - + BPM / Beatgrid BPM / graella de pulsacions - + Halve BPM Redueix el BPM a la meitat - + Multiply current BPM by 0.5 Multipliqueu el BPM actual per 0,5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multipliqueu el BPM actual per 0,666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multipliqueu el BPM actual per 0,75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multipliqueu el BPM actual per 1,333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multipliqueu el BPM actual per 1,5 - + Double BPM Doble BPM - + Multiply current BPM by 2 Multipliqueu el BPM actual per 2 - + Tempo Tap Toc de tempo - + Tempo tap button Botó de toc de tempo - + Move Beatgrid Mou Beatgrid - + Adjust the beatgrid to the left or right Ajusteu la quadrícula de ritme a l'esquerra o a la dreta - + Move Beatgrid Half a Beat - Desplaça mig batec la graella rítmica + Desplaça mitja pulsació la graella rítmica - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusteu la quadrícula de ritme exactament mig ritme. Només es pot utilitzar per a pistes amb tempo constant. - - + + Toggle the BPM/beatgrid lock Commuta el bloqueig BPM/beatgrid - + Revert last BPM/Beatgrid Change Reverteix l'últim canvi de BPM/Beatgrid - + Revert last BPM/Beatgrid Change of the loaded track. Reverteix l'últim canvi de BPM/Beatgrid de la pista carregada. - + Sync / Sync Lock sincronització / bloquejar la sincronització - + Internal Sync Leader Líder de sincronització interna - + Toggle Internal Sync Leader Commuta el líder de sincronització interna - - + + Internal Leader BPM Líder intern BPM - + Internal Leader BPM +1 Líder intern BPM +1 - + Increase internal Leader BPM by 1 Incrementa Líder intern BPM en 1 - + Internal Leader BPM -1 Líder intern BPM -1 - + Decrease internal Leader BPM by 1 Decrementa Líder intern BPM en 1 - + Internal Leader BPM +0.1 Líder intern BPM +0.1 - + Increase internal Leader BPM by 0.1 Incrementa Líder intern BPM en 0.1 - + Internal Leader BPM -0.1 Líder intern BPM -0.1 - + Decrease internal Leader BPM by 0.1 Decrementa Líder intern BPM en 0.1 - + Sync Leader Sincronitzar Líder - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Indicador o commutació de 3 estats del mode de sincronització (desactivat, líder suau, líder explícit) - + Speed LFO - + Decrease Speed (Fine) Disminueix la velocitat (valor petit) - + Pitch (Musical Key) Pitch (Tonalitat Musical) - + Increase Pitch Augmentar Pitch - + Increases the pitch by one semitone Augmentar el pitch un semitò - + Increase Pitch (Fine) Augmentar Pitch (Suau) - + Increases the pitch by 10 cents Augmentar el pitch 10% - + Decrease Pitch Disminuir Pitch - + Decreases the pitch by one semitone Disminuir el pitch un semitò - + Decrease Pitch (Fine) Disminuir Pitch (Suau) - + Decreases the pitch by 10 cents Disminuir el pitch 10% - + Keylock Bloqueig de to musical - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Canvia els punts de marca abans - + Shift cue points 10 milliseconds earlier Canvia els punts de marca 10 mil·lisegons abans - + Shift cue points earlier (fine) Canvia els punts de marca abans (suau) - + Shift cue points 1 millisecond earlier Canvia els punts de marca 1 mil·lisegon abans - + Shift cue points later Canvia els punts de marca més tard - + Shift cue points 10 milliseconds later Canvia els punts de marca 10 mil·lisegons més tard - + Shift cue points later (fine) Canvia els punts de marca més tard (fi) - + Shift cue points 1 millisecond later Canvia els punts de marca 1 mil·lisegon més tard - - + + Sort hotcues by position Ordena els hotcues per posició - - + + Sort hotcues by position (remove offsets) Ordena els hotcues per posició (elimina els desplaçaments) - + Hotcues %1-%2 Marques directes %1-%2 - + Intro / Outro Markers Marcadors d'Entrada/Sortida - + Intro Start Marker Marcador d'inici d'introducció - + Intro End Marker Marcador de final d'introducció - + Outro Start Marker Marcador d'inici de sortida - + Outro End Marker Marcador de final de sortida - + intro start marker marcador d'inici d'introducció - + intro end marker marcador de final d'introducció - + outro start marker marcador d'inici de sortida - + outro end marker marcador de final de sortida - + Activate %1 [intro/outro marker Activar %1 - + Jump to or set the %1 [intro/outro marker Saltar a o estableix %1 - + Set %1 [intro/outro marker Estableix %1 - + Set or jump to the %1 [intro/outro marker Estableix o salta al %1 - + Clear %1 [intro/outro marker Esborrar %1 - + Clear the %1 [intro/outro marker esborrar el %1 - + if the track has no beats the unit is seconds si la pista no té ritmes la unitat són segons - + 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 %1 Beats set from its end point Bucle % 1 Ritmes establerts des del seu punt final - + Loop Roll %1 Beats set from its end point Bucle Roll % 1 Ritmes establerts des del seu punt final - + Create %1-beat loop with the current play position as loop end - Creeu un bucle d'1 ritme amb la posició de reproducció actual com a final del bucle + Creeu %1-beat bucle amb la posició de reproducció actual com a final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Creeu temporalment %1-beat bucle amb la posició de reproducció actual com a final del bucle - + Loop Beats Tocs del bucle - + Loop Roll Beats Tocs del bucle bucle - + Go To Loop In Ves a l'inici del bucle - + Go to Loop In button Ves al botó d'inici de bucle - + Go To Loop Out Ves a la sortida del bucle - + Go to Loop Out button Ves al botó de sortida de Bucle - + 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 Salt de ritme - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indiqueu quin marcador de bucle roman estàtic quan s'ajusta la mida o s'hereta de la posició actual - + Beat Jump / Loop Move Forward Saltar toc / Moure el bucle cap endavant - + Beat Jump / Loop Move Backward Salt de toc / Moure el bucle cap enrera - + Loop Move Forward Moure el bucle cap endavant - + Loop Move Backward Moure el bucle cap enrera - + Remove Temporary Loop Elimina bucle temporal - + Remove the temporary loop Elimina el bucle temporal - + 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ó - + Sort focused column Ordena per la columna seleccionada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la cel·la que està actualment activa, equivalent a fer clic a la seva capçalera - + 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 Carregar la pista i reproduír - + 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 Selecciona el seguent historial de cerca - + Selects the next search history entry Selecciona la següent entrada en l'historial de cerca - + Select previous search history Selecciona l'historial de cerca anterior - + Selects the previous search history entry Selecciona l'entrada anterior en l'historial de cerca - + Move selected search entry Mou la entrada de cerca seleccionada - + Moves the selected search history item into given direction and steps Mous l'entrada de l'historial de cerca seleccionat cap a la direcció i passos indicats - + Clear search Esborra la cerca - + Clears the search query Esborra el text de la cerca - - + + Select Next Color Available Seleccioneu el següent color disponible - + Select the next color in the color palette for the first selected track Seleccioneu el color següent a la paleta de colors per a la primera pista seleccionada - - + + Select Previous Color Available Seleccioneu el color anterior disponible - + Select the previous color in the color palette for the first selected track Seleccioneu el color anterior a la paleta de colors de la primera pista seleccionada - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Botó d'activació d'efecte ràpid del reproductor %1 - + + Quick Effect Enable Button Botó que habilita l'efecte ràpid - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 Assignar la unitat d'efectes - + 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 Valor del paràmetre del botó - + 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 DJ Automàtic Afegeix una pista aleatòria - + Add a random track to the Auto DJ queue Afegeix una pista aleatòria a la cua del DJ automàtic - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostra/Amaga Micròfon i Línia auxiliar - + Waveform Zoom Reset To Default El zoom de la forma d'ona restablert al valor predeterminat - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restableix el nivell de zoom de la forma d'ona al valor predeterminat seleccionat a Preferències -> Formes d'ona - + Select the next color in the color palette for the loaded track. Seleccioneu el color següent a la paleta de colors per a la pista carregada. - + Select previous color in the color palette for the loaded track. Seleccioneu el color anterior a la paleta de colors per a la pista carregada. - + Navigate Through Track Colors Navegueu pels colors de la pista - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting Inicia/para la emissió en viu - + Stream your mix over the Internet. Retransmissió la vostra mescla a través d'Internet. - + Start/stop recording your mix. Inicia/para la gravació de la mescla. - - + + + Deck %1 Stems + + + + + Samplers Reproductor de mostres - + 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 reproductors - + Switches between showing 2 decks and 4 decks. Canvia entre mostrar 2 reproductors o 4 reproductors. - + Cover Art Show/Hide (Decks) Mostrar/amagar la Portada (cobertes) - + Show/hide cover art in the main decks Mostrar/amagar la Portada en les cobertes principals - + 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) Mostrar/amagar Spinners de Vinil (Tots els reproductors) - + Show/Hide all spinnies Mostra/amaga tots els vinils giratoris - + Toggle Waveforms Mostra/amaga les ones - + Show/hide the scrolling waveforms. mostra/amaga els gràfics d'ona locals. - + 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 + + 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 + + + + Controller + + + Unknown + + + + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + - - Waveform Zoom In - Apropa el zoom del gràfic d'ona + + Relative + - - Zoom waveform out - Allunya el zoom del gràfic d'ona + + Absolute + - - Star Rating Up - Valoració positiva + + No Wrap + - - Increase the track rating by one star - Augmenta la puntuació de la pista amb una estrella + + Non Linear + - - Star Rating Down - Valoració negativa + + No Preferred + - - Decrease the track rating by one star - Disminueix la puntuació de la pista amb una estrella + + No Null + - - - Controller - - Unknown + + Non Volatile @@ -3650,32 +3844,32 @@ traça - Per sobre + Missatges de perfil 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 Error de l'assignació de controlador - + The mapping for your controller "%1" is not working properly. L'assignació per al vostre controlador "%1" no funciona correctament. - + The script code needs to be fixed. Cal corregir el codi del script. @@ -3683,27 +3877,27 @@ traça - Per sobre + Missatges de perfil ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema amb el fitxer d'assignacions del controlador - + The mapping for controller "%1" cannot be opened. No es podeb obrir les assignacions del controlador «%1». - + 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. - + File: Fitxer: - + Error: Error: @@ -3736,7 +3930,7 @@ traça - Per sobre + Missatges de perfil - + Lock Bloca els canvis @@ -3766,7 +3960,7 @@ traça - Per sobre + Missatges de perfil Font de pistes per a DJ automàtic - + Enter new name for crate: Introdueix un nom nou per a la caixa: @@ -3783,22 +3977,22 @@ traça - Per sobre + Missatges de perfil 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 @@ -3808,28 +4002,28 @@ traça - Per sobre + Missatges de perfil Crea una caixa per a la propera actuació, per a les vostres pistes prefereides d'electohouse, o per a les pistes més demanades. - + Confirm Deletion Confirmeu la supressió - - + + 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) - + M3U Playlist (*.m3u) Llista de reproducció M3U (*.m3u) @@ -3850,17 +4044,17 @@ traça - Per sobre + Missatges de perfil Les caixes us permeten organitzar la vostra música al vostre gust! - + Do you really want to delete crate <b>%1</b>? Vols realment esborrar la caixa <b>%1</b>? - + 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 @@ -3955,12 +4149,12 @@ traça - Per sobre + Missatges de perfil Antics Contribuidors - + Official Website Lloc web oficial - + Donate Donatius @@ -4464,7 +4658,7 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou Jog Wheel / Select Knob - + Plateret / Comandament de selecció @@ -4539,7 +4733,7 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>You tried to learn: %1,%2 - + El control seleccionat no existeix<br>Probablement degut a un error. Si us plau, informa'n en el registre d'errors de programari de Mixxx<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>Has intentat aprendre: %1,%2 @@ -4645,7 +4839,7 @@ Heu intentat aprendre: %1,%2 Purge selected tracks from the library and delete files from disk. - + Purga les pistes seleccionades des de la biblioteca i elimina els fitxers del disc. @@ -4851,69 +5045,80 @@ Heu intentat aprendre: %1,%2 Estèreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed La acció ha fallat - + You can't create more than %1 source connections. No podeu crear més de %1 connexions font. - + Source connection %1 Connexió font %1 - + Settings for %1 Settings for broadcast profile, %1 is the profile name placeholder - + Configuració per a %1 - + At least one source connection is required. Es requereix com a mínim 1 connexió font. - + Are you sure you want to disconnect every active source connection? Segur que voleu desconnectar totes les connexions font actives? - - + + Confirmation required Es necessita confirmació - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. «%1» té el mateix punt de muntatge Icecast que «%2». No es poden activar simultàniament dues connexions font al mateix servidor que tinguin el mateix punt de muntatge. - + Are you sure you want to delete '%1'? Esteu segur de voler esborrar '%1'? - + Renaming '%1' Reanomenant '%1' - + New name for '%1': Nom nou per a '%1': - + Can't rename '%1' to '%2': name already in use No es pot canviar el nom de '%1' a '%2': Aquest nom ja existeix @@ -4926,27 +5131,27 @@ No es poden activar simultàniament dues connexions font al mateix servidor que Preferències de la retransmissió en directe - + Mixxx Icecast Testing Prova d'Icecast del Mixxx - + Public stream Transmissió pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nom de la emissió - + 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. Degut a errors en algunes aplicacions client, actualitzar les metadades Ogg Vorbis dinàmicament pot produïr errors i desconnexions als oients. Activeu la opció si això no és un problema @@ -4986,67 +5191,72 @@ No es poden activar simultàniament dues connexions font al mateix servidor que Opcions per a %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualitza les metadades Ogg Vorbis dinàmicament - + ICQ ICQ - + AIM AIM - + Website Pàgina web - + Live mix Mescla en viu - + IRC IRC - + Select a source connection above to edit its settings here Seleccioneu la connexió font de la qual voleu editar la configuració - + Password storage Emmagatzematge de claus - + Plain text Text simple - + Secure storage (OS keychain) Emmagatzematge segur (Clauer del SO) - + Genre Gènere - + Use UTF-8 encoding for metadata. Utilitza la codificació UTF-8 per a les metadades - + Description Descripció @@ -5072,42 +5282,42 @@ No es poden activar simultàniament dues connexions font al mateix servidor que Canals - + Server connection Connexió amb el servidor - + Type Tipus - + Host Màquina - + Login Usuari - + Mount Muntatge - + Port Port - + Password Contrasenya - + Stream info Informació de la emissió @@ -5117,17 +5327,17 @@ No es poden activar simultàniament dues connexions font al mateix servidor que Metadades - + Use static artist and title. Utiliza títol i artista fixes. - + Static title Títol fix - + Static artist Artista fix @@ -5186,13 +5396,14 @@ No es poden activar simultàniament dues connexions font al mateix servidor que DlgPrefColors - - + + + By hotcue number Per número de marca directa - + Color Color @@ -5237,17 +5448,22 @@ No es poden activar simultàniament dues connexions font al mateix servidor que + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5255,114 +5471,114 @@ associated with each key. DlgPrefController - + Apply device settings? Voleu aplicar la configuració del dispositiu? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? És necessari aplicar la configuració abans d'iniciar l'assistent d'aprenentatge. Volue aplicar la configuració i continuar? - + None Cap - + %1 by %2 %1 per %2 - + Mapping has been edited S'ha editat el mapping - + Always overwrite during this session Sobreescriu sempre durant aquesta sessió - + Save As Anomena i desa - + Overwrite Sobreescriu - + Save user mapping Desa el mapping d'usuari - + Enter the name for saving the mapping to the user folder. Introdueix el nom del mapping per desar-lo a la carpeta d'usuari - + Saving mapping failed No s'ha pogut desar el mapping - + A mapping cannot have a blank name and may not contain special characters. Una assignació no pot tenir el nom en blanc i no pot tenir caràcters especials - + A mapping file with that name already exists. Ja existeix un fitxer d'assignació amb aquest nom. - + Do you want to save the changes? Voleu desar els canvis? - + Troubleshooting Solució de problemes - + <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>Si utilitza aquesta assignació, el teu controlador pot ser que no funcioni correctament. Si us plau, seleccioni una altra assignació o deshabilita el controlador.</b></font><br><br>Aquesta assignació va ser dissenyada per un motor controlador Mixxx més nou. I no pot ser usa't en la teva instal·lació de Mixxx actual.<br>La teva instal·lació Mixxx té un motor de controlador versió %1. Aquesta assignació requereix un motor de controlador versió >= %2.<br><br>Per a més informació visita la pàgina de wiki a<a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versions de motor de controlador</a>. - + Mapping already exists. El fitxer d'assignació ja existeix. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ja existeix a la carpeta de controladors d'usuari.<br>Voleu sobreesciure o desar amb un altre nom? - + Clear Input Mappings Esborra les assignacions d'entrada - + Are you sure you want to clear all input mappings? Esteu segur de voler esborrar totes les assignacions d'entrada? - + Clear Output Mappings Esborra les assignacions de sortida - + Are you sure you want to clear all output mappings? Esteu segur de voler esborrrar totes les assignacions de sortida? @@ -5380,100 +5596,105 @@ Volue aplicar la configuració i continuar? Activat - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descripció: - + Support: Suport: - + Screens preview - + Input Mappings Assignacions d'entrada - - + + Search Cerca - - + + Add Afegeix - - + + Remove Suprimeix @@ -5493,17 +5714,17 @@ Volue aplicar la configuració i continuar? Carrega l'assignació - + Mapping Info Informació de l'assignació - + Author: Autor: - + Name: Nom: @@ -5513,28 +5734,28 @@ Volue aplicar la configuració i continuar? Assistent d'aprenentatge (només MIDI) - + Data protocol: - + Mapping Files: Fitxers de l'assignació - + Mapping Settings - - + + Clear All Suprimeix-ho tot - + Output Mappings Assignacions de sortida @@ -5549,21 +5770,21 @@ Volue aplicar la configuració i 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. - El Mixxx utilitza "mapes" per connectar missatges de la vostra controladora a controls del Mixxx. Si no veieu una assignació per al vostre controlador al menú «Mapa de gra» quan feu clic al vostre controlador a la barra lateral esquerra, és possible que pugueu descarregar-ne una en línia des de %1. Col·loqueu els fitxers XML (.xml) i Javascript (.js) a la "Carpeta d'assignació d'usuaris" i després reinicieu el Mixxx. Si descarregueu una assignació en un fitxer ZIP, extraieu el fitxer XML i el fitxer Javascript des del fitxer ZIP a la vostra "Carpeta d'assignació d'usuaris" i després reinicieu el 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guia de maquinari de DJ de Mixxx - + MIDI Mapping File Format Format de fitxer d'assignacions MIDI - + MIDI Scripting with Javascript Assignacions MIDI amb Javascript @@ -5656,7 +5877,7 @@ Volue aplicar la configuració i continuar? Skin selector - + Seleccionador de temes @@ -5676,7 +5897,7 @@ Volue aplicar la configuració i continuar? Menu bar - + Barra de menú @@ -5691,6 +5912,16 @@ Volue aplicar la configuració i continuar? Multi-Sampling + Multimostreig + + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. @@ -5722,137 +5953,137 @@ Volue aplicar la configuració i continuar? DlgPrefDeck - + Mixxx mode Mode Mixxx - + Mixxx mode (no blinking) Mode del Mixxx (sense intermitència) - + Pioneer mode Mode Pioneer - + Denon mode Mode Denon - + Numark mode Mode Numark - + CUP mode mode CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (tosca) - + s%1zz - Seconds s%1zz - Segons - + sss%1zz - Seconds (Long) sss%1zz - Segons (llarg) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Quilosegons - + Intro start Inici del Intro - + Main cue Marca principal - + First hotcue - + Primera marca directa - + First sound (skip silence) So inicial (salta el silenci) - + Beginning of track Inici de la pista - + Reject Descarta - + Allow, but stop deck Permet, però atura el reproductor - + Allow, play from load point Permet, reprodueix des del punt de carrega - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6036,7 +6267,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Sync mode (Dynamic tempo tracks) - + Mode de sincronització (Pistes de tempo dinàmiques) @@ -6081,7 +6312,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Apply tempo changes from a soft-leading track (usually the leaving track in a transition) to the follower tracks. After the transition, the follower track will continue with the previous leader's very last tempo. Changes from explicit selected leaders are always applied. - + Aplica els canvis de tempo d’una pista líder suau (normalment la pista que s’està deixant en una transició) a les pistes seguides. Després de la transició, la pista seguidora continuarà amb l’últim tempo de la pista líder anterior. Els canvis de pistes líders seleccionades explícitament sempre s’apliquen. @@ -6156,7 +6387,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Use steady tempo - + Utilitza tempo constant @@ -6236,7 +6467,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Drag and drop to rearrange lists and show or hide effects. - + Arrossega i deixa anar per reorganitzar les llistes i els efectes mostra o amaga @@ -6302,62 +6533,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6584,67 +6815,97 @@ and allows you to pitch adjust them for harmonic mixing. Consulta el manual per a més informació - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Selecciona el tipus de lletra de la Biblioteca @@ -6755,7 +7016,7 @@ and allows you to pitch adjust them for harmonic mixing. Track Search - + Cercador de pistes @@ -6860,7 +7121,7 @@ and allows you to pitch adjust them for harmonic mixing. Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Escriu automàticament les metadades modificades de la pista des de la biblioteca a les etiquetes del fitxer i torna a importar les metadades des de les etiquetes actualitzades del fitxer a la biblioteca. @@ -7299,33 +7560,33 @@ Per més informació sobre aquestes opcions, aneu a %1 DlgPrefRecord - + Choose recordings directory Seleccioneu la carpeta d'enregistraments - - + + Recordings directory invalid El directori de les gravacions és incorrecte. - + Recordings directory must be set to an existing directory. El directori de les gravacions ha de ser un directori existent. - + Recordings directory must be set to a directory. Cal informar el camp de directori de gravacions - + Recordings directory not writable No es pot escriure al directori de gravacions - + You do not have write access to %1. Choose a recordings directory you have write access to. No teniu permis d'escriptura a %1. Seleccioneu un directori de gravació on tingueu permís d'escriptura. @@ -7343,43 +7604,55 @@ Per més informació sobre aquestes opcions, aneu a %1 Navega… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Qualitat - + Tags Etiquetes - + Title Tí­tol - + Author Autor - + Album Àlbum - + Output File Format Format de fitxer de sortida - + Compression Compressió - + Lossy Amb pèrdues @@ -7394,12 +7667,12 @@ Per més informació sobre aquestes opcions, aneu a %1 Directori: - + Compression Level Nivell de compressió - + Lossless Sense pèrdues @@ -7530,172 +7803,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Per defecte (retard llarg) - + Experimental (no delay) Experimental (sense retard) - + Disabled (short delay) Desactivat (retard curt) - + Soundcard Clock Rellotge de la targeta de so - + Network Clock Rellotge de xarxa - + Direct monitor (recording and broadcasting only) Monitor directe (només gravació i retransmissió) - + Disabled Desactivat - + Enabled Activat - + Stereo Estèreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide Guia de maquinari de DJ de Mixxx - + + Find details in the Mixxx user manual + Troba els detalls en el manual d'usuari de Mixxx + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period 2048 frames/periode - + 4096 frames/period 4096 frames/període - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. L'entrada de micròfon queda desincronitzada al gravar o retransmetre comparat amb el que es sent. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mesureu la latència total i introduiu-la en la Compensació de la latència del micròfon per tal de sincronitzar el micròfon. - + Refer to the Mixxx User Manual for details. Consulteu el Manual d'usuari del Mixxx per a més informació. - + Configured latency has changed. La latència configurada ha canviat - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Torneu a mesurar la latència total i introduiu-la en la Compensació de la matència del micròfon per tal de sincronitzar el micròfon. - + Realtime scheduling is enabled. La planificació en temps real està activada - + Main output only Només la sortida principal - + Main and booth outputs Sortides principal i de cabina - + %1 ms %1 ms - + Configuration error Hi ha un error en la configuració @@ -7762,17 +8040,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Comptador de buidat del búfer - + 0 0 @@ -7797,12 +8080,12 @@ The loudness target is approximate and assumes track pregain and main output lev Entrada - + System Reported Latency Latència reportada pel sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Incrementeu el búfer d'audio si el comptador de buffer buit incrementa o si sentiu talls durant la reproducció. @@ -7832,7 +8115,7 @@ The loudness target is approximate and assumes track pregain and main output lev Suggeriments i diagnòstic - + Downsize your audio buffer to improve Mixxx's responsiveness. Reduïu la mida del búfer d'audio per millorar la resposta del Mixxx @@ -7879,7 +8162,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configuració del vinil - + Show Signal Quality in Skin Mostra la qualitat de la senyal a l'aparença @@ -7915,46 +8198,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + Estimador de pitch + + + Deck 1 Reproductor 1 - + Deck 2 Reproductor 2 - + Deck 3 Plat 3 - + Deck 4 Plat 4 - + Signal Quality Qualitat de la senyal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Amb tecnologia xwax - + Hints Suggerències - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccioneu els dispositius de so per al control de vinil al panell de Maquinari de So @@ -7962,58 +8250,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrat - + HSV HSV - + RGB RGB - + Top - + Superior - + Center - + Centre - + Bottom - + Inferior - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + 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. @@ -8031,22 +8319,17 @@ The loudness target is approximate and assumes track pregain and main output lev Velocitat de fotogrames - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Mostra quina versió de OpenGL suporta la plataforma actual. - - Normalize waveform overview - Anivella el gràfic d'ona en la vista de forma d'ona general - - - + Average frame rate Velocitat mitjana de fotogrames @@ -8062,7 +8345,7 @@ The loudness target is approximate and assumes track pregain and main output lev Nivell de zoom per defecte - + Displays the actual frame rate. Mostra la velocitat de fotogrames actual @@ -8142,7 +8425,7 @@ The loudness target is approximate and assumes track pregain and main output lev Guany visual global - + 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. La forma d'ona general mostra la forma de l'ona de la pista sencera. @@ -8211,22 +8494,22 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca - + Caching Memoria cau - + 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. El Mixxx emmagatzema a la memòria cau els gràfics d'ona de les vostres pistes a disc el primer cop que carregueu la pista en un plat. Això redueix el consum de CPU les posteriors vegades, però requereix espai addicional de disc. - + Enable waveform caching Habliita la memòria cau per a gràfics d'ona - + Generate waveforms when analyzing library Genera els gràfics d'ona a l'analitzar la biblioteca @@ -8242,7 +8525,7 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca - + Type @@ -8302,12 +8585,28 @@ Seleccioneu entre els diferents tipus de gràfics per a la forma d'ona loca - + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Esborra la memòria cau dels gràfics d'ona @@ -8799,7 +9098,7 @@ Això no es pot desfer! BPM: - + Location: Ubicació: @@ -8814,27 +9113,27 @@ Això no es pot desfer! Comentaris - + BPM BPM - + Sets the BPM to 75% of the current value. Posa el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Posa el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostra el BPM de la pista seleccionada. @@ -8889,49 +9188,49 @@ Això no es pot desfer! Gènere - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Posa el BPM al 200% del valor actual. - + Double BPM Augmenta el tempo al doble - + Halve BPM Redueix el tempo a la meitat - + Clear BPM and Beatgrid Suprimeix els BPM i la graella de ritme - + Move to the previous item. "Previous" button Ves al ítem anterior. - + &Previous A&nterior - + Move to the next item. "Next" button Ves al ítem següent - + &Next &Següent @@ -8956,12 +9255,12 @@ Això no es pot desfer! Color - + Date added: Data d'addicció: - + Open in File Browser Obre en l'explorador de fitxers @@ -8971,12 +9270,17 @@ Això no es pot desfer! - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8985,90 +9289,90 @@ Utilitzant aquesta configuració les pistes tindran un tempo constant (p. ex. la Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou fiable amb pistes que tinguin canvis de tempo. - + Assume constant tempo Assumeix un tempo constant - + Sets the BPM to 66% of the current value. Posa el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Posa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Posa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Toqueu/premeu repetidament al ritme al qual voleu establir els BPM. - + Tap to Beat Prem al ritme - + Hint: Use the Library Analyze view to run BPM detection. Suggerència: Utilitzeu la opció d'analitzador a la vista de la biblioteca per executar la detecció de BPM. - + Save changes and close the window. "OK" button Desa els canvis i tanca la finestra. - + &OK D'&acord - + Discard changes and close the window. "Cancel" button Descarta els canvis i tanca la finestra. - + Save changes and keep the window open. "Apply" button Descarta els canvis i no tanquis la finestra - + &Apply &Aplica - + &Cancel &Cancel·la - + (no color) (sense color) @@ -9225,7 +9529,7 @@ Sovint ofereix una graella de pulsacions de major qualitat, però no serà prou - + (no color) @@ -9427,27 +9731,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (quasi qualitat hi-fi) - + Unknown, using Rubberband (better) Desconegut utilitzant Rubberband (millor) - + Unknown, using Soundtouch @@ -9662,15 +9966,15 @@ 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 @@ -9682,57 +9986,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9740,62 +10044,62 @@ OpenGL. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9805,22 +10109,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9961,12 +10265,12 @@ Voleu sobreescriure aquesta llista? Pistes amagades - + Export to Engine DJ Exporta a Engine DJ - + Tracks Pistes @@ -9974,253 +10278,253 @@ 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 Tema - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? No hi ha cap dispositiu d'entrada seleccionat per aquest micròfon. Volue seleccionar ara un dispositiu d'entrada? - + There is no input device selected for this auxiliary. Do you want to select an input device? No hi ha cap dispositiu d'entrada seleccionat per aquest auxiliar. Voleu seleccionar ara un dispositiu d'entrada? - + Scan took %1 - + No changes detected. - - + + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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à habilitada a la vostra màquina.<br><br> Això significa que els gràfics forma d'ona seran molt <br><b>lents i poden fer servir molta CPU</b>. Prove de canviar la<br> configuració per habilitar la renderització directa, o desactiveu<br>els gràfics de forma d'ona a les preferències del Mixxx seleccionant<br>"Buit" al tipus de forma d'ona, 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? @@ -10236,13 +10540,13 @@ Voleu seleccionar ara un dispositiu d'entrada? PlaylistFeature - + Lock Bloca els canvis - - + + Playlists Llistes de reproducció @@ -10252,58 +10556,63 @@ Voleu seleccionar ara un dispositiu d'entrada? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Permet els canvis - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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ó @@ -10402,59 +10711,59 @@ Voleu seleccionar ara un dispositiu d'entrada? 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 @@ -10568,69 +10877,82 @@ Voleu escanejar ara la biblioteca cercant les caràtules? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Sortida de cabina - + Headphones + Audio path indetifier Auriculars - + Left Bus + Audio path indetifier Bus esquerra - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus dret - + Invalid Bus + Audio path indetifier Bus invàlid - + Deck + Audio path indetifier Plat - + Record/Broadcast + Audio path indetifier Enregistrament/Retransmissió - + Vinyl Control + Audio path indetifier Control de Vinil - + Microphone + Audio path indetifier Micròfon - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipus de ruta %1 desconegut @@ -10965,47 +11287,49 @@ Amb una amplitud de zero, permet de moure manualment la posició sobre el rang s Ample - + Metronome Metrònom - + + The Mixxx Team - + Adds a metronome click sound to the stream Afegeix uns clics a la sortida, amb la freqüència del metrònom. - + BPM BPM - + Set the beats per minute value of the click sound Defineix la freqüència en BPM dels clics - + Sync Sincronitza - + Synchronizes the BPM with the track if it can be retrieved Sincronitza el BPM amb el de la pista, si es pot obtenir - + + Gain - + Set the gain of metronome click sound @@ -11809,14 +12133,14 @@ Configureu un format diferent a les preferències La gravació amb OGG no està suportada. No s'ha pogut inicialitzar la llibreria OGG/Vorbis. - - + + encoder failure errada en el compressor - - + + Failed to apply the selected settings. No s'han pogut activar les opcions seleccionades @@ -11955,7 +12279,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough De pas @@ -11966,70 +12290,141 @@ Hint: compensates "chipmunk" or "growling" voices - - Periodically samples and repeats a small portion of audio to create a glitchy metallic sound. + + Periodically samples and repeats a small portion of audio to create a glitchy metallic sound. + + + + + Round the Time parameter to the nearest 1/8 beat. + + + + + When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + + + + + (empty) + + + + + Sampler %1 + + + + + + Compressor + + + + + Auto Makeup Gain + + + + + Makeup + + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. - - Round the Time parameter to the nearest 1/8 beat. + + + Threshold (dBFS) - - When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + + + Threshold - - (empty) + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal - - Sampler %1 + + Target (dBFS) - - - Compressor + + Target - - Auto Makeup Gain + + The Target knob adjusts the desired target level of the output signal - - Makeup + + Gain (dB) - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - Off + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -12060,6 +12455,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -12070,11 +12466,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -12086,11 +12484,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12119,12 +12519,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12159,42 +12559,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12455,193 +12855,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx ha trobat un problema - + Could not allocate shout_t No es pot assignar shout_t - + Could not allocate shout_metadata_t No es pot assignar shout_metadata_t - + Error setting non-blocking mode: Error activant el mode no bloquejant: - + Error setting tls mode: S'ha produït un error en configurar el mode tls: - + Error setting hostname! Error establint el nom del host! - + Error setting port! Error establint el port! - + Error setting password! Error establint la contrasenya! - + Error setting mount! Error establint el muntatge! - + Error setting username! Error establint el nom d'usuari! - + Error setting stream name! Error establint el nom de la font d'emissió! - + Error setting stream description! Error establint la descripció de la font d'emissió! - + Error setting stream genre! Error establint el gènere de la font d'emissió! - + Error setting stream url! Error establint la Pàgina web de la font d'emissió! - + Error setting stream IRC! Error establint la informació de IRC de la font d'emissió! - + Error setting stream AIM! Error establint la informació de AIM de la font d'emissió! - + Error setting stream ICQ! Error establint la informació de ICQ de la font d'emissió! - + Error setting stream public! Error establint la retransmissió com a pública! - + Unknown stream encoding format! Format de compressió de la retransmissió desconegut! - + Use a libshout version with %1 enabled Utilitzeu una versió de libshout amb %1 habilitat - + Error setting stream encoding format! Error configurant el format de compressió de la retransmissió. - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. La retransmissió a 96 kHz mitjançant l'Ogg Vorbis no està suportat. Trieu altre rati o codificador diferent. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate Rati de mostreig no suportat - + Error setting bitrate Error establint la taxa de bits. - + Error: unknown server protocol! Error: protocol del servidor desconegut! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast només suporta els formats MP3 i AAC - + Error setting protocol! Error establint el protocol! - + Network cache overflow Memòria cau de xarxa excedida - + Connection error Error de connexió - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de les fonts de retransmissió en directe ha provocat aquest error:<br><b>Error amb la font '%1':</b><br> - + Connection message Missatge de connexió - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Missatge de la font de retransmissió en directe '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. S'ha perdut la connexió al servidor d'emissió i han fallat %1 dels reintent de reconnexió. - + Lost connection to streaming server. S'ha perdut la connexió al servidor d'emissió. - + Please check your connection to the Internet. Per favor, comproveu la connexió cap a internet. - + Can't connect to streaming server No s'ha pogut connectar al servidor d'emissió - + Please check your connection to the Internet and verify that your username and password are correct. Per favor, comproveu la connexió cap a Internet i verifiqueu que el nom d'usuari i la contrasenya són correctes. @@ -12649,7 +13049,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrat @@ -12657,23 +13057,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device un dispositiu - + An unknown error occurred S'ha produït un error desconegut - + Two outputs cannot share channels on "%1" Dues sortides no poden compartir els mateixos canals de %1 - + Error opening "%1" Error obrint "%1" @@ -12858,7 +13258,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vinil giratori @@ -13040,7 +13440,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Caràtula @@ -13230,243 +13630,243 @@ may introduce a 'pumping' effect and/or distortion. Posa el guany dels greus a zero mentre està actiu. - + Displays the tempo of the loaded track in BPM (beats per minute). Mostra el tempo de la pista que s'ha carregat en BPM (tocs per minut) - + Tempo Tempo - + Key The musical key of a track Clau musical - + BPM Tap Toc de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Quan el premeu repetidament, ajusta el valor de BPM conforme al ritme que marqueu. - + Adjust BPM Down Redueix el BPM - + When tapped, adjusts the average BPM down by a small amount. Quan el premeu, ajusta el valor de BPM reduïnt-lo una mica. - + Adjust BPM Up Augmenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Quan el premeu, ajusta el valor de BPM augmentant-lo una mica. - + Adjust Beats Earlier Mou el toc abans - + When tapped, moves the beatgrid left by a small amount. Quan el premeu, mou la graella de ritme una mica a l'esquerra - + Adjust Beats Later Mou el toc després - + When tapped, moves the beatgrid right by a small amount. Quan el premeu mou la graella de ritme una mica a la dreta. - + Tempo and BPM Tap Toc de tempo i BPM - + Show/hide the spinning vinyl section. Mostra/amaga el vinil giratori. - + Keylock Bloqueig de clau musical - + Toggling keylock during playback may result in a momentary audio glitch. Activar el bloqueig de so durant la reproducció pot comportar en un salt momentani d'àudio. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control Canvi de visibilitat del control de Velocitat - + Toggle visibility of Key Controls - + (while previewing) (mentre es preescolta) - + Places a cue point at the current position on the waveform. Posa un punt Cue a la posició actual del gràfic d'ona - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Para la pista al punt cue, O BÉ, va al punt cue i reprodueix en deixar-lo (mode CUP) - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Defineix el punt cue (mode Pionner/Mixxx/Numark), defineix el punt cue i reprodueix en deixar-lo (mode CUP) O BÉ pre-escolta el punt (mode Denon). - + Is latching the playing state. - + Seeks the track to the cue point and stops. Va al punt Cue de la pista i para. - + Play Reprodueix - + Plays track from the cue point. Reprodueix la pista des del punt Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envia l'audio del canal seleccionat cap a la sortida d'auriculars, indicada en les Preferències -> Maquinari de so. - + (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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Canvia la velocitat de reproducció (afecta tant al tempo com al to). Si el mode de bloqueig de clau musical està activat, només canvia el tempo. - + Tempo Range Display Mostra el rang del tempo - + Displays the current range of the tempo slider. Mostra el rang actual del lliscador del tempo - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. Esborra la marca directa seleccionada. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. Obre un visor de portada separat. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input Selecciona i configura un dispositiu de maquinari per a aquesta entrada. - + Recording Duration Durada de la gravació @@ -13656,7 +14056,7 @@ may introduce a 'pumping' effect and/or distortion. Lowers playback speed in small steps. - Canvia la velocitat en petites reduccions. + Canvia la velocitat en petites reduccions @@ -13689,949 +14089,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusteu la quadrícula de ritme exactament mig ritme. Només es pot utilitzar per a pistes amb tempo constant. - + Revert last BPM/Beatgrid Change Reverteix l'últim canvi de BPM/quadrícula de ritme - + Revert last BPM/Beatgrid Change of the loaded track. Reverteix l'últim canvi de BPM/quadrícula de ritme de la pista carregada. - - + + Toggle the BPM/beatgrid lock Commuta el bloqueig BPM/quadrícula de ritme - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier Mou les marques abans - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Mou les marques importades de Serato o Rekordbox si estan lleugerament fora de temps. - + Left click: shift 10 milliseconds earlier Clic esquerra: mou 10 milisegons abans - + Right click: shift 1 millisecond earlier Clic amb botó dret: mou un milisegon abans - + Shift cues later Mou les marques més tard - + Left click: shift 10 milliseconds later Clic esquerra: mou 10 milisegons després - + Right click: shift 1 millisecond later Clic amb botó dret: mou un milisegon després - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Mostra la durada de la gravació en curs - + Auto DJ is active El DJ Automàtic està actiu - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. Marca directa - Es mourà la pista a la marca directa anterior més propera. - + Sets the track Loop-In Marker to the current play position. Estableix la marca d'inici de bucle de la pista a la posició actual - + Press and hold to move Loop-In Marker. Mantingueu premut el botó per a moure la marca d'inici de bucle - + Jump to Loop-In Marker. Vés a la marca d'inici de bucle. - + Sets the track Loop-Out Marker to the current play position. Estableix la marca de fi de bucle de la pista a la posició actual - + Press and hold to move Loop-Out Marker. Mantingueu premut el botó per a moure la marca de fi de bucle. - + Jump to Loop-Out Marker. Vés a la marca de fi de bucle. - + If the track has no beats the unit is seconds. - + Beatloop Size Mida del bucle de tocs - + Select the size of the loop in beats to set with the Beatloop button. Selecciona la mida del bucle en tocs a establir al prémer el botó de bucle de tocs. - + Changing this resizes the loop if the loop already matches this size. En canviar el valor, es canvia la mida del bucle si el bucle coincideix amb la mida anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Redueix a la meitat la mida d'un bucle de tocs existent, o del proper bucle definit amb el botó de bucle de tocs. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Incrementa al doble la mida d'un bucle de tocs existent, o del proper bucle definit amb el botó de bucle de tocs. - + Start a loop over the set number of beats. Inicia un bucle amb el nombre de tocs establert. - + Temporarily enable a rolling loop over the set number of beats. Activa momentàniament un bucle de continuació amb el nombre de tocs establert. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size Mida de Salt en tocs/Desplaçament de bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la quantitat de tocs a saltar o a moure el bucle amb els botons d'endavant/enrere. - + Beatjump Forward Salt endavant en tocs - + Jump forward by the set number of beats. Salta endavant la quantitat establerta de tocs. - + Move the loop forward by the set number of beats. Mou el bucle endavant la quantitat establerta de tocs. - + Jump forward by 1 beat. Salta endavant en un toc. - + Move the loop forward by 1 beat. Mou el bucle endavant en un toc. - + Beatjump Backward Salt enrere en tocs - + Jump backward by the set number of beats. Salta endavant la quantiatat establerta de tocs. - + Move the loop backward by the set number of beats. Mou el bucle endavant la quantiatat establerta de tocs. - + Jump backward by 1 beat. Mou enrere en un toc. - + Move the loop backward by 1 beat. Mou en bucle enrere en un toc. - + Reloop Torna al bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle està més endavant de la posició actual, aquest començarà un cop s'arribi a la posició. - + Works only if Loop-In and Loop-Out Marker are set. Només funciona si les marques d'inici i fi de bucle estan definides. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, ves a la posició d'inici de bucle i para la reproducció. - + Displays the elapsed and/or remaining time of the track loaded. Mostra el temps transcorregut i/o restant de la pista carregada. - + Click to toggle between time elapsed/remaining time/both. Feu clic per canviar entre temps transcorregut/restant/amdós - + Hint: Change the time format in Preferences -> Decks. Ajuda: Pots canviar el format del temps a les Preferències -> Reproductors. - + Show/hide intro & outro markers and associated buttons. Mostra/amaga marques d'introduccio/finalització i els botons associats. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador d'inici d'introducció - - - - + + + + If marker is set, jumps to the marker. Si la marca està definida, es mou a la marca. - - - - + + + + If marker is not set, sets the marker to the current play position. Si la marca no està definida, defineix la marca a la posició de reproducció actual. - - - - + + + + If marker is set, clears the marker. Si hi ha una marca, l'esborra. - + Intro End Marker Marcador de final d'introducció - + Outro Start Marker Marcador d'inici de sortida - + Outro End Marker Marcador de final de sortida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajusta la mescla de la senyal directa (entrada) anb la senyal processada (sortida) de la unitat d'efectes - + D/W mode: Crossfade between dry and wet Mode D/P: Crossfade entre senyal Directe i senyal Processada - + D+W mode: Add wet to dry Mode D+P: Suma les senyals directe i processada - + Mix Mode Mode de mescla - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajusta la mescla de la senyal directa (entrada) anb la senyal processada (sortida) de la unitat d'efectes - + 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. Mode Directe/Processat (línies creuades): El control de mescla fa crossfading entre la senyal Directa i la senyal Processada. Ho pots utilitzar per canviar el so de la pista amb EQs i efectes de filtre. - + 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. Mode Directe+Processat (lína directa plana): El control de mescla afegeix la senyal processada a la senyal directa. Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de filtre. - + Route the main mix through this effect unit. - + Route the left crossfader bus through this effect unit. Redirigeix el bus esquerre del crossfader a través d'aquesta unitat d'efectes. - + Route the right crossfader bus through this effect unit. Redirigeix el bus dret del crossfader a través d'aquesta unitat d'efectes. - + Right side active: parameter moves with right half of Meta Knob turn Part dreta activa: el paràmetre es mou només durant la segona meitat del control Meta - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Menú de les opcions d'aparença - + Show/hide skin settings menu Mostra/amaga el menú de les opcions d'aparença - + Save Sampler Bank Desa el banc de mostres - + Save the collection of samples loaded in the samplers. Desa la col·leció de mostres carregades als reproductors de mostres. - + Load Sampler Bank Carrega el banc de mostres - + Load a previously saved collection of samples into the samplers. Carrega als reproductors de mostres una col·lecció de mostres desada anteriorment. - + Show Effect Parameters Mostra els paràmetres d'efectes - + Enable Effect Activa l'efecte - + Meta Knob Link Enllaça el control Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura com afecta a aquest paràmetre el control Meta de l'efecte. - + Meta Knob Link Inversion Inversió de l'enllaç del control Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Inverteix la direcció cap a on es mou el paràmetre quan es mou el control Meta. - + Super Knob Súper Control - + Next Chain Cadena següent - + Previous Chain Següent cadena - + Next/Previous Chain Següent/Anterior cadena - + Clear Descarta - + Clear the current effect. Suprimeix l'efecte actual. - + Toggle Estat d'activació - + Toggle the current effect. Commuta l'efecte actual. - + Next Següent - + Clear Unit Esborrar la Unitat - + Clear effect unit. Buida l'unitat d'efectes - + Show/hide parameters for effects in this unit. Mostra/amaga els paràmetres per als efectes d'aquesta unitat. - + Toggle Unit Commutador d'unitat - + Enable or disable this whole effect unit. Activa o desactiva aquesta unitat d'efectes. - + Controls the Meta Knob of all effects in this unit together. Controla el control Meta de tots els efectes d'aquesta unitat. - + Load next effect chain preset into this effect unit. Carrega la següent preconfiguració d'efectes en aquesta unitat d'efectes. - + Load previous effect chain preset into this effect unit. Carrega la anterior preconfiguració d'efectes en aquesta unitat d'efectes. - + Load next or previous effect chain preset into this effect unit. Carrega la següent o la anterior cadena d'efectes en aquesta unitat d'efectes. - - - - - - - - - + + + + + + + + + Assign Effect Unit Assigna la unitat d'efectes - + Assign this effect unit to the channel output. Assigna aquesta unitat d'efectes al canal de sortida. - + Route the headphone channel through this effect unit. Fes passar la sortida d'auriculars per aquesta unitat d'efectes. - + Route this deck through the indicated effect unit. Fes passar la sortida del plat per la unitat d'efectes indicada. - + Route this sampler through the indicated effect unit. Fes passar el reproductor per la unitat d'efectes indicada. - + Route this microphone through the indicated effect unit. Fes passar el micròfon per la unitat d'efectes indicada. - + Route this auxiliary input through the indicated effect unit. Fes passar l'entrada auxiliar per la unitat d'efectes indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. Cal assignar la unitat d'efectes a un plat o altra font d'àudio per tal de sentir l'efecte. - + Switch to the 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 the next or previous effect. Canvia a l'efecte següent o anterior - + Meta Knob Control Meta - + Controls linked parameters of this effect Controla els paràmetres associats d'aquest efecte - + Effect Focus Button Botó de focus a l'efecte - + Focuses this effect. Posa el focus en aquest efecte. - + Unfocuses this effect. Treu el focus d'aquest efecte. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulteu la pàgina web del vostre controlador a la viquipèdia del Mixxx per a més informació. - + Effect Parameter Paràmetres d'efectes - + Adjusts a parameter of the effect. Ajusta un paràmetre de l'efecte. - + Inactive: parameter not linked Inactiu: paràmetre no enllaçat - + Active: parameter moves with Meta Knob Actiu: el paràmetre es mou amb el control Meta - + Left side active: parameter moves with left half of Meta Knob turn Part esquerra actiu: el paràmetre es mou només durant la primera meitat del control Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Esquerra i dreta actiu: el paràmetre es mou en rang sencer durant la primera meitat del control Meta, i torna enrera en la segona meitat. - - + + Equalizer Parameter Kill Tall de paràmetres de l'equalitzador - - + + Holds the gain of the EQ to zero while active. Mentre estigui activa manté el guany de l'equalització a zero. - + Quick Effect Super Knob Súper control d'efecte ràpid - + Quick Effect Super Knob (control linked effect parameters). Súper control d'efecte ràpid (controla els paràmetres d'efectes enllaçats) - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Suggerència: Podeu canviar el mode d'efecte ràpid des de Preferències -> Equalitzadors. - + Equalizer Parameter Preferències d'equalització - + Adjusts the gain of the EQ filter. Ajusta el guany del filtre d'equalització. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Suggerència: Podeu canviar el mode d'equalització per defecte des de Preferències -> Equalitzadors. - - + + Adjust Beatgrid Ajusta la graella de ritme - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la graella de ritme per tal que el toc més proper estigui alineat amb la posició de reproducció actual. - - + + Adjust beatgrid to match another playing deck. Ajusta la graella de ritme per a que coincideixi amb un altre plat en reproducció. - + If quantize is enabled, snaps to the nearest beat. Si el mode quantitzat està activat, es mou al toc més proper. - + Quantize Quantitza - + Toggles quantization. Commuta la quantització - + Loops and cues snap to the nearest beat when quantization is enabled. Els bucles i els punts cue s'ajusten al toc més proper quan el mode quantitzat està activat. - + Reverse Reprodueix cap enrere - + Reverses track playback during regular playback. Inverteix la direcció de reproducció durant la reproducció. - + Puts a track into reverse while being held (Censor). Reprodueix la pista cap enrere mentre es prem (Censura). - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducció continua on la pista hauria estat si no s'hagués reproduït cap enrere. - - - + + + Play/Pause Reprodueix/Pausa - + Jumps to the beginning of the track. Va a l'inici de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincronitza el tempo (BPM) i la fase amb el de l'atra pista, si ambdues tenen el BPM detectat. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincronitza el tempo (BPM) amb el de l'altra pista, si ambdues tenen el BPM detectat. - + Sync and Reset Key Sincronitza i reinicia la clau musical - + Increases the pitch by one semitone. Incrementa el to en una seminota. - + Decreases the pitch by one semitone. Decrementa el to en una seminota. - + Enable Vinyl Control Activa el control de vinil - + When disabled, the track is controlled by Mixxx playback controls. Quan està desactivat, la reproducció es controla amb els controls de reproducció del Mixxx. - + When enabled, the track responds to external vinyl control. Quan està actiu, la pista repon al control extern amb el vinil. - + Enable Passthrough Activa el pas d'audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer d'audio és massa petit per a processar tot l'audio. - + Displays cover artwork of the loaded track. Mostra la caràtula de la pista que s'ha carregat. - + Displays options for editing cover artwork. Mostra les opcions per editar la caràtula. - + Star Rating Puntuació - + Assign ratings to individual tracks by clicking the stars. Assigna la puntuació a les pistes fent clic a les estrelles. @@ -14766,33 +15201,33 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Nivell de reducció en parlar per micròfon - + Prevents the pitch from changing when the rate changes. Evita que canviï el to/clau musical al canviar la velocitat de reproducció. - + Changes the number of hotcue buttons displayed in the deck Canvia el nombre de marques directes mostrades al reproductor - + Starts playing from the beginning of the track. Inicia la reproducció des de l'inici de la pista. - + Jumps to the beginning of the track and stops. Va a l'inici de la pista i s'atura. - - + + Plays or pauses the track. Reprodueix o posa en pausa una pista. - + (while playing) (mentres reprodueix) @@ -14812,215 +15247,215 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f - + (while stopped) (mentres està en pausa) - + Cue Punt Cue - + Headphone Auriculars - + Mute Posa Mut - + Old Synchronize Sincronitzador Antic - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincronitza amb el primer plat (en ordre numèric) que està reproduïnt una pista que tingui BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hi ha cap plat reproduïnt, es sincronitza amb el primer plat que té BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Manté premut almenys durant un segon per activar la sincronització de rellotge per a aquest plat. - + 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. Els plats que tinguin la sincronització activada reproduiran tots al mateix tempo, i els que també tinguin la quantizació activada tindran sempre els tocs alineats - + Resets the key to the original track key. Reinicia la clau musical a la clau original de la pista. - + Speed Control Control de velocitat - - - + + + Changes the track pitch independent of the tempo. Canvia el pitch de la pista, independentment del tempo. - + Increases the pitch by 10 cents. Incrementa el pitch en 10 centèssimes. - + Decreases the pitch by 10 cents. Decrementa el pitch en 10 centèssimes. - + Pitch Adjust Ajustament de Pitch - + Adjust the pitch in addition to the speed slider pitch. Ajusta el pitch sobre el pitch del control de velocitat - + Opens a menu to clear hotcues or edit their labels and colors. Obre un menú per esborrar les marques directes o editar-ne les etiquetes i colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Gravació de la mescla - + Toggle mix recording. Commuta la gravació de la mescla. - + Enable Live Broadcasting Activa la retransmissió en directe - + Stream your mix over the Internet. Emet la mescla a través d'Internet. - + Provides visual feedback for Live Broadcasting status: Mostra una representació visual de l'estat de la retransmissió en directe: - + disabled, connecting, connected, failure. deshabilitat, connectant, connectat, fallada. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Quan s'habilita, el plat reprodueix directament l'àudio que arriba a l'entrada del vinil. - + Playback will resume where the track would have been if it had not entered the loop. La reproducció continuarà alla on hauria estat si no s'hagués fet el bucle. - + Loop Exit Surt del bucle - + Turns the current loop off. Desactiva el bucle actual - + Slip Mode Mode de continua avançant (slip) - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Quan està actiu, la reproducció continua en silenci en segon pla mentre es realitza el bucle, reprodució enrere, Scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Un cop es desactivi, la reproducció continuarà des del lloc on hauria estat. - + Track Key The musical key of a track Clau de la pista - + Displays the musical key of the loaded track. Mostra la clau musical de la pista carregada - + Clock Rellotge - + Displays the current time. Mostra l'hora actual. - + Audio Latency Usage Meter Monitor de la latència de l'audio - + Displays the fraction of latency used for audio processing. Mostra la fracció de latència utilitzada pel procés daudio. - + A high value indicates that audible glitches are likely. Un valor alt indica que es poden produir talls. - + Do not enable keylock, effects or additional decks in this situation. Si es dóna això, no activeu el bloqueig de clau musical, efectes o plats adicionals. - + Audio Latency Overload Indicator Indicador de latència d'audio sobrecarregada @@ -15060,259 +15495,259 @@ Ho pots utilitzar per canviar només la senyal processada amb EQs i efectes de f Activa el control de vinil des del Menú -> Opcions. - + Displays the current musical key of the loaded track after pitch shifting. Mostra la clau musical actual de la pista, incloent el canvi de velocitat. - + Fast Rewind Rebobina ràpidament - + Fast rewind through the track. Rebobina la pista progressivament fins a l'inici - + Fast Forward Avança ràpidament - + Fast forward through the track. Avança la pista progressivament fins al final - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Canvia el to a una clau musical que permeti una transició harmònica d'una pista a l'altra. Cal que s'hagi detectat la clau en tots dos plats. - - - + + + Pitch Control Control de Pitch - + Pitch Rate Canvi de pitch - + Displays the current playback rate of the track. Mostra el percentatge de canvi de velocitat de la pista. - + Repeat Repeteix - + When active the track will repeat if you go past the end or reverse before the start. Quan està actiu, la pista torna a començar quan arriba al final, o tona a anar endavant si estava cap enrere i arriba a l'inici. - + Eject Expulsa - + Ejects track from the player. Expulsa la pista d'aquest reproductor. - + Hotcue Commuta la visibilitat de la marca directa, 4 o 8 - + If hotcue is set, jumps to the hotcue. Si la marca directa està definida, hi va - + If hotcue is not set, sets the hotcue to the current play position. Si la marca directa no està definida, la defineix en la posició de reproducció actual. - + Vinyl Control Mode Mode de control de Vinil - + Absolute mode - track position equals needle position and speed. Mode abolut - La posició de la pista coincideix amb la posició de l'agulla i la velocitat. - + Relative mode - track speed equals needle speed regardless of needle position. Relative mode - La velocitat de la pista coincideix amb la velocitat de l'agulla, sense importar la seva posició - + Constant mode - track speed equals last known-steady speed regardless of needle input. Mode constant - La velocitat de la pista coincideix amb l'últim valor constant, independentment del que es rebi actualment de l'agulla. - + Vinyl Status Estat del vinil - + Provides visual feedback for vinyl control status: Mostra una representació visual de l'estat del control de vinil: - + Green for control enabled. Verd per control activat. - + Blinking yellow for when the needle reaches the end of the record. Groc xispejant quan l'agulla arriba al final del disc. - + Loop-In Marker Marca d'entrada del bucle - + Loop-Out Marker Marca de sortida del bucle - + Loop Halve Redueix el bucle a la meitat - + Halves the current loop's length by moving the end marker. Redueix el bucle actual a la meitat movent l'indicador de final. - + Deck immediately loops if past the new endpoint. La reproducció torna immediatament a l'inici del bucle si aquesta està més enllà del nou punt. - + Loop Double Incrementa el bucle al doble - + Doubles the current loop's length by moving the end marker. Incrementa el bucle actual al doble movent l'indicador de final. - + Beatloop Bucles definits en tocs - + Toggles the current loop on or off. Commuta el bucle actual entre activat i desactivat. - + Works only if Loop-In and Loop-Out marker are set. Només aplica si els indicadors de bucle d'inici i de final estan definits. - + Vinyl Cueing Mode Mode de punts cue de Vinil - + Determines how cue points are treated in vinyl control Relative mode: Determina com es tracten els punts Cue quan el control de vinil està en mode relatiu: - + Off - Cue points ignored. Off - Els punts Cue s'ignoren - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. One cue - Si l'agulla es posa més endavant del punt cue, la pista anirà al punt cue. - + Track Time Temps de la pista - + Track Duration Durada de la pista - + Displays the duration of the loaded track. Mostra la durada de la pista que s'ha carregat. - + Information is loaded from the track's metadata tags. La informació s'obté de les etiquetes de les metadates de la pista. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Mostra l'artista de la pista que s'ha carregat. - + Track Title Títol de la pista - + Displays the title of the loaded track. Mostra el títol de la pista que s'ha carregat. - + Track Album Àlbum de la pista - + Displays the album name of the loaded track. Mostra el nom de l'àlbum de la pista que s'ha carregat. - + Track Artist/Title Arísta/Títol de la pista - + Displays the artist and title of the loaded track. Mostra l'artista i el títol de la pista que s'ha carregat. @@ -15543,47 +15978,75 @@ Això no es pot desfer! WCueMenuPopup - + Cue number Número de marca - + Cue position Marca de posició - + Edit cue label Edita la etiqueta del punt cue - + Label... Etiqueta... - + Delete this cue Suprimeix aquesta marca - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current beatloop size as the loop size - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: Use the current play position as new loop end if it is after the cue - + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 Marca directa #%1 @@ -15708,323 +16171,363 @@ Això no es pot desfer! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crea una &nova llista de reproducció - + Create a new playlist Crea una nova llista de reproducció - + Ctrl+n Ctrl+n - + Create New &Crate Crea una nova &caixa - + Create a new crate Crea una nova caixa - + Ctrl+Shift+N Ctrl+Majús+N - - + + &View &Visualització - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. No està disponible a totes les aparences - + Show Skin Settings Menu Mostra el menú de les opcions d'aparença - + Show the Skin Settings Menu of the currently selected Skin Mostra el menú d'opcions disponibles per a l'aparença seleccionada - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostra la secció del micròfon - + Show the microphone section of the Mixxx interface. Mostra la secció de micròfons en la interfície del Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostra la secció de control per vinils - + Show the vinyl control section of the Mixxx interface. Mostra la secció dels controls de vinil a la interfície del Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostra el reproductor de pre-escolta - + Show the preview deck in the Mixxx interface. Mostra el reproductor de pre-escolta a la interfície del Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Mostra la caràtula - + Show cover art in the Mixxx interface. Mostra la caràtula a la interfície del Mixxx - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximitza la 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 - + Space Menubar|View|Maximize Library Espai - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen Pantalla sencera - + Display Mixxx using the full screen Mostra Mixx a pantalla sencera - + &Options &Opcions - + &Vinyl Control Control per &vinils - + Use timecoded vinyls on external turntables to control Mixxx Permet l'ús de vinils amb codi de temps en tocadisc externs per controlar el Mixxx - + Enable Vinyl Control &%1 Activa el control de vinil &%1 - + &Record Mix En&registra la mescla - + Record your mix to a file Enregistra la vostra mescla a un fitxer - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activa la retransmissió en directe(&B) - + Stream your mixes to a shoutcast or icecast server Transmeteu les vostres mescles a un servidor de shoutcast o d'icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Habilita les dreceres de teclat(&K) - + Toggles keyboard shortcuts on or off Activa o desactiva les dreceres de teclat - + Ctrl+` Ctrl+` - + &Preferences &Preferències - + Change Mixxx settings (e.g. playback, MIDI, controls) Canvia les opcions de Mixxx (p.ex. reproducció, MIDI, controladores) - + &Developer &Desenvolupador - + &Reload Skin &Recarrega l'aparença - + Reload the skin Recarrega l'aparença del disc - + Ctrl+Shift+R Ctrl+Majús+R - + Developer &Tools Eines de desenvolupador(&T) - + Opens the developer tools dialog Obre la finesta d'eines de desenvolupador - + Ctrl+Shift+T Ctrl+Majús+T - + Stats: &Experiment Bucket Estadístiques: Comptador &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el mode experiment. Recupera les estadístiques corresponents al comptador EXPERIMENT. - + Ctrl+Shift+E Ctrl+Majús+E - + Stats: &Base Bucket Estadístiques: Comptador &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el mode bàsic. Recupera les estadístiques del comptador BASE. - + Ctrl+Shift+B Ctrl+Majús+B - + Deb&ugger Enabled Motor de dep&uració activat - + Enables the debugger during skin parsing Activa el motor de depuració durant el parseig de l'aparença - + Ctrl+Shift+D Ctrl+Majús+D - + &Help &Ajuda - + Show Keywheel menu title @@ -16041,74 +16544,74 @@ Això no es pot desfer! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Suport de la &Comunitat - + Get help with Mixxx Obteniu ajuda sobre el Mixxx - + &User Manual Manual de l'&usuari - + Read the Mixxx user manual. Llegiu el manual de l'usuari de Mixxx. - + &Keyboard Shortcuts Dreceres de teclat(&K) - + Speed up your workflow with keyboard shortcuts. Fes les coses més ràpid amb les dreceres de teclat. - + &Settings directory Directori de &preferències - + Open the Mixxx user settings directory. Obre el directori de preferències d'usuari del Mixxx - + &Translate This Application &Traduïu aquesta aplicació - + Help translate this application into your language. Ajudeu a traduir aquesta aplicació a la vostra llengua. - + &About Sobre el Mixxx (&A) - + About the application Sobre l'aplicació @@ -16116,25 +16619,25 @@ Això no es pot desfer! WOverview - + Passthrough Pas de l'àudio - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible A punt per reproduir, analitzant... - - + + Loading track... Text on waveform overview when file is cached from source Carregant la pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Acabant... @@ -16143,25 +16646,13 @@ Això no es pot desfer! WSearchLineEdit - - Clear input - Clear the search bar input field - Esborra el text - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Cerca - + Clear input Esborra el text @@ -16172,93 +16663,87 @@ Això no es pot desfer! Cerca... - + Clear the search bar input field Neteja el camp de la barra de cerca - - Enter a string to search for - Introduïu un text de cerca + + Return + Enter - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Utilitza operadors com bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Per a més informació, feu un cop d'ull la Manual d'usuari > Llibreria del Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Drecera + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Posa el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retrocés + + Additional Shortcuts When Focused: + - Shortcuts - tecles ràpides + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Enter + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space Ctrl+Espai - + Toggle search history Shows/hides the search history entries commuta l'històric de cerques - + Delete or Backspace Suprimir o Retroceso - - Delete query from history - Esborra la consulta de l'històric - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Surt de la cerca + + Delete query from history + Esborra la consulta de l'històric @@ -16343,625 +16828,640 @@ Això no es pot desfer! WTrackMenu - + Load to Carrega a - + Deck Plat - + Sampler Reproductor de mostres - + Add to Playlist Afegeix a la llista de reproducció - + Crates Caixes - + Metadata Metadades - + Update external collections Actualitza les col·leccions externes - + Cover Art Caràtula - + Adjust BPM Adjusta els BPM - + Select Color Selecciona el color - - + + Analyze Analitza - - + + Delete Track Files Esborra fitxers de pistes - + 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) - + Preview Deck Reproductor de pre-escolta - + Remove Suprimeix - + Remove from Playlist Suprimeix de la llista de reproducció - + Remove from Crate Suprimeix de la caixa - + Hide from Library No ho mostris a la biblioteca - + Unhide from Library Torna a mostrar a la biblioteca - + Purge from Library Suprimeix de la biblioteca - + Move Track File(s) to Trash - + Delete Files from Disk Esborra fitxers del disc - + Properties Propietats - + Open in File Browser Obre en l'explorador de fitxers - + Select in Library Selecciona a la biblioteca - + Import From File Tags Importa des de les metadades del fitxer - + Import From MusicBrainz Importa des del MusicBrainz - + Export To File Tags Exporta les metadades al fitxer - + BPM and Beatgrid BPM i graella de ritme - + Play Count Comptador de reproduccions - + Rating Puntuació - + Cue Point Punt d'inici - - + + Hotcues Marques directes - + Intro Intro - + Outro Final - + Key Clau musical - + ReplayGain ReplayGain - + Waveform Ona - + Comment Comentari - + All Tot - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Bloca els BPM - + Unlock BPM Desbloca els BPM - + Double BPM Augmenta el tempo al doble - + Halve BPM Redueix el tempo a la meitat - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Canvi quadrícula de ritme a Mig ritme - + Reanalyze Reanalitza - + Reanalyze (constant BPM) Reanalitza (Tempo constant) - + Reanalyze (variable BPM) Reanalitza (Tempo variable) - + Update ReplayGain from Deck Gain Actualitza el ReplayGain a partir del guany del reproductor - + Deck %1 Plat %1 - + Importing metadata of %n track(s) from file tags important les metadades d' %n pista del fitxerimportant les metadades de %n pistes dels fitxers - + Marking metadata of %n track(s) to be exported into file tags Marcant les metadades d' %n pista per exportar-les al fitxerMarcant les metadades de %n pistes per exportar-les al fitxer - - + + 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) Escalant el BPM d' %n pistaEscalant el BPM de %n pistes - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Bloquejant el BPM d' %n pistaBloquejant el BPM de %n pistes - + Unlocking BPM of %n track(s) Desbloquejant el BPM d' %n pistaDesbloquejant el BPM de %n pistes - + Setting rating of %n track(s) - + Setting color of %n track(s) Configurant el color d' %n pistaConfigurant el color de %n pistes - + Resetting play count of %n track(s) Reiniciant el comptador de reproduccions d' %n pistaReiniciant el comptador de reproduccions de %n pistes - + Resetting beats of %n track(s) Reiniciant la graella de ritme d' %n pistaReiniciant la graella de ritme de %n pistes - + Clearing rating of %n track(s) Eliminant la puntuació d' %n pistaEliminant la puntuació de %n pistes - + Clearing comment of %n track(s) Esborrant el comentari de %n pistaEsborrant el comentari de %n pistes - + Removing main cue from %n track(s) Eliminant la marca Cue d' %n pistaEliminant la marca Cue de %n pistes - + Removing outro cue from %n track(s) Eliminant marca de fi d' %n pistaEliminant marca de fi de %n pistes - + Removing intro cue from %n track(s) Eliminant marca d'introducció d' %n pistaEliminant marca d'introducció de %n pistes - + Removing loop cues from %n track(s) Eliminant punts de bucle d' %n pistaEliminant punts de bucle de %n pistes - + Removing hot cues from %n track(s) Eliminant marques ràpides d' %n pistaEliminant marques ràpides de %n pistes - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) Reiniciant les claus musicals d' %n pistaReiniciant les claus musicals de %n pistes - + Resetting replay gain of %n track(s) Reiniciant el Replaygain d' %n pistaReiniciant el Replaygain de %n pistes - + Resetting waveform of %n track(s) Reiniciant les formes d'ona d' %n pistaReiniciant les formes d'ona de %n pistes - + Resetting all performance metadata of %n track(s) Reiniciant totes les metadades de rendiment d' %n pistaReiniciant totes les metadades de rendiment de %n pistes - + Move these files to the trash bin? - + Permanently delete these files from disk? Voleu esborrar permanentment aquests fitxers del disc? - - + + This can not be undone! Això no es pot desfer! - + Cancel Cancel·la - + Delete Files Esborra fitxers - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted Fitxers de pista esborrats - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted Fitxer de pista esborrat - + Track file was deleted from disk and purged from the Mixxx database. El fitxer de pista s'ha esborrat del disc i eliminat de la base de dades del Mixxx. - + The following %1 file(s) could not be deleted from disk Els següents %1 fitxer(s) no s'han pogut esborrar del disc - + This track file could not be deleted from disk No s'ha pogut esborrar aquest fitxer de pista del disc - + Remaining Track File(s) Fitxer(s) de pista(es) restant(s) - + Close Tanca - + Clear Reset metadata in right click track context menu in library - + Loops Bucles - + Clear BPM and Beatgrid Esborra BPM i quadrícula de ritme - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... Esborrant %n fitxer de pista del disc... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Afegint la portada a %n pistaAfegint la portada a %n pistes - + Reloading cover art of %n track(s) Recarregant la portada de %n pistaRecarregant la portada de %n pistes @@ -17015,37 +17515,37 @@ Això no es pot desfer! WTrackTableView - + Confirm track hide Confirma la ocultació de pistes - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session No tornis a preguntar durant aquesta sessió - + Confirm track removal Confirma la eliminació de la pista @@ -17053,12 +17553,12 @@ Això no es pot desfer! WTrackTableViewHeader - + Show or hide columns. Mostra o amaga columnes. - + Shuffle Tracks @@ -17096,22 +17596,22 @@ Això no es pot desfer! biblioteca - + Choose music library directory Seleccioneu la carpeta de la biblioteca de música. - + controllers controladors - + 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. @@ -17268,6 +17768,24 @@ Feu click a Acceptar per sortir. La petició de xarxa no ha començat + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17276,4 +17794,27 @@ Feu click a Acceptar per sortir. No hi ha cap efecte carregat. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_cs.qm b/res/translations/mixxx_cs.qm index 4e9ba504595e..36f57b40771e 100644 Binary files a/res/translations/mixxx_cs.qm and b/res/translations/mixxx_cs.qm differ diff --git a/res/translations/mixxx_cs.ts b/res/translations/mixxx_cs.ts index ddc60d57cc15..efe6d2e08e54 100644 --- a/res/translations/mixxx_cs.ts +++ b/res/translations/mixxx_cs.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Přepravky - + Enable Auto DJ Spustit automatického diskžokeje - + Disable Auto DJ Zastavit automatického diskžokeje - + Clear Auto DJ Queue Vyprázdnit řadu automatického diskžokeje - + Remove Crate as Track Source Odstranit přepravku na desky jako zdroj skladeb - + Auto DJ Automatický diskžokej - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Přidat přepravku na desky jako zdroj skladeb @@ -223,7 +231,7 @@ - + Export Playlist Uložit seznam skladeb @@ -277,13 +285,13 @@ - + 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ě: @@ -298,12 +306,12 @@ Opravdu chcete seznam skladeb <b>%1</b> smazat? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # Č. - + Timestamp Časové razítko @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nepodařilo se nahrát skladbu. @@ -362,7 +370,7 @@ Kanály - + Color Barva @@ -377,7 +385,7 @@ Skladatel - + Cover Art Obrázek obalu @@ -387,7 +395,7 @@ Datum přidání - + Last Played Naposledy hráno @@ -417,7 +425,7 @@ Tónina - + Location Umístění @@ -427,7 +435,7 @@ - + Preview Náhled @@ -467,7 +475,7 @@ Rok - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Načítání obrázku ... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Nelze použít bezpečné úložiště pro heslo: nepodařilo se přistoupit k řetězci s klíčem - + Secure password retrieval unsuccessful: keychain access failed. Bezpečné získání hesla neúspěšné: nepodařilo se přistoupit ke klíči - + Settings error Chyba v nastavení - + <b>Error with settings for '%1':</b><br> <b>Chyba v nastavení pro '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Počítač @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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í. @@ -771,89 +779,94 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx je program s otevřeným zdrojovým kódem pro diskžokeje. Další informace naleznete na: - + Starts Mixxx in full-screen mode Spustí Mixxx v režimu na celou obrazovku - + Use a custom locale for loading translations. (e.g 'fr') Použít vlastní jazyk pro nahrávání překladů. (např. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Adresář nejvyšší úrovně, kde by měl MixXX hledat své soubory zdrojů, jako jsou MIDI mapování, a převažující výchozí umístění instalace. - + Path the debug statistics time line is written to Cesta, do které je zapsána časová osa statistiky ladění - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Způsobí, že Mixxx zobrazí/zaprotokoluje všechna data řadiče, která přijímá, a skriptovací funkce, které načítá - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! Přiřazení ovladače bude při zjištění nesprávného použití rozhraní API ovladače vydávat agresivnější varování a chyby. Nová přiřazení řadičů by měla být vyvíjena s touto volbou! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Povolí vývojářský režim. Zahrnuje další informace o protokolu, statistiky výkonu a nabídku nástrojů pro vývojáře. - + Top-level directory where Mixxx should look for settings. Default is: Adresář nejvyšší úrovně, kde by měl Mixxx hledat nastavení. Výchozí je: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter Použít starší vu metr - + Use legacy spinny Použít starší talíř - - Loads experimental QML GUI instead of legacy QWidget skin - Načte experimentální GUI QML namísto staršího vzhledu QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Umožňuje bezpečný režim. Vypne křivky OpenGL a roztočené vinylové widgety. Vyzkoušejte tuto možnost, pokud Mixxx selhává při spuštění. - + [auto|always|never] Use colors on the console output. [auto|always|never] Použít barvy na výstupu konzole. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -868,32 +881,32 @@ ladění - Výše + Zprávy ladění/vývojář trace - Výše + Profilování zpráv - + 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. Nastaví úroveň protokolování, při které se vyrovnávací paměť protokolu vyprázdní do mixxx.log. <level> je jedna z hodnot definovaných na --log-level výše. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Přeruší (SIGINT) Mixxx, pokud se DEBUG_ASSERT vyhodnotí jako nepravda. Pod ladičem můžete pokračovat později. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Nahrát zadané hudební soubor(y) během spuštění. Každý soubor, který určíte, bude načten do dalšího virtuálního balíčku. - + Preview rendered controller screens in the Setting windows. @@ -986,2557 +999,2585 @@ trace - Výše + Profilování zpráv ControlPickerMenu - + Headphone Output Výstup sluchátek - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Přehrávač %1 - + Sampler %1 Vzorkovač %1 - + Preview Deck %1 Předposlechový přehrávač %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Aux %1 - + Reset to default Nastavit znovu na výchozí - + Effect Rack %1 Přihrádka s efekty %1 - + Parameter %1 Parametr %1 - + Mixer Směšovač - - + + Crossfader Prolínač - + Headphone mix (pre/main) Míchání sluchátek (předposlech/vše) - + Toggle headphone split cueing Přepnout rozdělení sluchátek - + Headphone delay Zpoždění sluchátek - + Transport Přehrávání - + Strip-search through track Hledání pásku pomocí skladby - + Play button Tlačítko pro přehrávání - - + + Set to full volume Nastavit na plnou hlasitost - - + + Set to zero volume Nastavit hlasitost na nulu - + Stop button Tlačítko pro zastavení - + Jump to start of track and play Skočit na začátek skladby a přehrát - + Jump to end of track Skočit na konec skladby - + Reverse roll (Censor) button Tlačítko pro obrácené přehrávání (cenzor) - + Headphone listen button Tlačítko pro sluchátka - - + + Mute button Tlačítko pro ztlumení - + Toggle repeat mode Přepnout režim opakování - - + + 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 - + Toggle slip mode Přepnout klouzací režim - - + + BPM MM - + Increase BPM by 1 Zvýšit MM o 1 - + Decrease BPM by 1 Snížit MM o 1 - + Increase BPM by 0.1 Zvýšit MM o 0,1 - + Decrease BPM by 0.1 Snížit MM o 0,1 - + BPM tap button Tlačítko pro klepání MM - + Toggle quantize mode Přepnout režim kvantizace - + One-time beat sync (tempo only) Jednorázové seřízení rytmu (pouze tempo) - + One-time beat sync (phase only) Jednorázové seřízení rytmu (pouze fáze) - + Toggle keylock mode Přepnout režim uzamčení tóniny - + Equalizers Ekvalizéry - + Vinyl Control Ovládání vinylem - + 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 Smyčkování - + 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 - + Slot %1 Místo %1 - + Headphone Mix Míchání sluchátek - + Headphone Split Cue Rozdělit předposlech ve sluchátkách - + Headphone Delay Zpoždění sluchátek - + Play Přehrát - + Fast Rewind Rychlé přetáčení zpět - + Fast Rewind button Tlačítko pro rychlý zpětný chod - + Fast Forward Rychlé přetáčení vpřed - + Fast Forward button Tlačítko pro rychlé přetáčení vpřed - + Strip Search Hledání pásku - + Play Reverse Přehrávat pozpátku - + Play Reverse button Tlačítko pro přehrávání pozpátku - + Reverse Roll (Censor) Obrácení přehrávání (cenzor) - + Jump To Start Skočit na začátek - + Jumps to start of track Skočí na začátek skladby - + Play From Start Přehrávat od začátku - + Stop Zastavit - + Stop And Jump To Start Zastavit a skočit na začátek - + Stop playback and jump to start of track Zastavit přehrávání a skočit na začátek skladby - + Jump To End Skočit na konec - + Volume Hlasitost - - - + + + Volume Fader Polohový ukazatel hlasitosti - - + + Full Volume Plná hlasitost - - + + Zero Volume Nulová hlasitost - + Track Gain Zesílení skladby - + Track Gain knob Regulátor zesílení skladby - - + + Mute Ztlumit - + Eject Vysunout - - + + Headphone Listen Poslech ze sluchátek - + Headphone listen (pfl) button Tlačítko pro poslech ze sluchátek - + Repeat Mode Režim opakování - + Slip Mode Režim klouzání - - + + Orientation Natočení - - + + Orient Left Natočit vlevo - - + + Orient Center Natočit na střed - - + + Orient Right Natočit vpravo - + BPM +1 MM +1 - + BPM -1 MM -1 - + BPM +0.1 MM +0,1 - + BPM -0.1 MM -0,1 - + BPM Tap Klepání tempa (MM, rázů za minutu) - + Adjust Beatgrid Faster +.01 Upravit rytmickou mřížku: ÚZM rychlejší o +.01 - + Increase track's average BPM by 0.01 Zvýšit průměrný počet MM skladby o 0,01 - + Adjust Beatgrid Slower -.01 Upravit rytmickou mřížku: ÚZM pomalejší o -.01 - + Decrease track's average BPM by 0.01 Snížit průměrný počet MM skladby o 0,01 - + Move Beatgrid Earlier Umístit rytmickou mřížku dříve - + Adjust the beatgrid to the left Posunout rytmickou mřížku doleva - + Move Beatgrid Later Umístit rytmickou mřížku později - + Adjust the beatgrid to the right Posunout rytmickou mřížku doprava - + Adjust Beatgrid Upravit rytmickou mřížku - + Align beatgrid to current position Zarovnat rytmickou mřížku na nynější polohu - + Adjust Beatgrid - Match Alignment Upravit rytmickou mřížku - přizpůsobení zarovnání - + Adjust beatgrid to match another playing deck. Upravit rytmickou mřížku tak, aby byla zarovnána s jiným hrajícím přehrávačem. - + Quantize Mode Režim kvantizace - + Sync Seřízení - + Beat Sync One-Shot Jednorázové seřízení rytmu - + Sync Tempo One-Shot Jednorázové seřízení tempa - + Sync Phase One-Shot 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í - + High EQ Ekvalizér výšek - + Mid EQ Ekvalizér středů - - + + Main Output Hlavní výstup - + Main Output Balance Vyrovnání hlavního výstupu - + Main Output Delay Zpoždění hlavního výstupu - + Main Output Gain Zesílení hlavního výstupu - + Low EQ 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 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 - + Show/hide the microphone & auxiliary section Ukázat/Skrýt oblast s mikrofonem a pomocným zařízením - + 4 Effect Units Show/Hide Ukázat/Skrýt 4 efektové jednotky - + Switches between showing 2 and 4 effect units Přepíná mezi ukázáním 2 a 4 efektových jednotek. - + Mixer Show/Hide Ukázat/Skrýt směšovač - + Show or hide the mixer. Ukázat nebo skrýt směšovač. - + Cover Art Show/Hide (Library) Ukázat/Skrýt obrázek obalu (knihovna) - + Show/hide cover art in the library Ukázat/Skrýt obrázky obalů v knihovně - + 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 - + Headphone Gain Zesílení sluchátek - + Headphone gain Zesílení sluchátek - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Zaťukejte pro seřízení tempa (a fáze při zapnuté kvantizaci), podržte pro trvalé seřízení - + One-time beat sync tempo (and phase with quantize enabled) 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é) - - + + Adjust %1 Upravit %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Efektová jednotka %1 - + Button Parameter %1 Parametr tlačítka %1 - + Skin Vzhled - + Controller Ovladač - + Crossfader / Orientation Prolínač / Nasměrování - + Main Output gain Zesílení hlavního výstupu - + Main Output balance Vyrovnání hlavního výstupu - + Main Output delay Zpoždění hlavního výstupu - + Headphone Sluchátka - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Umlčet %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Vysunutí nebo zasunutí skladby, tj. znovu načtení poslední vysunuté skladby (jakéhokoli přehrávače)<br>Dvojitým stisknutím znovu načtete poslední vyměněnou skladbu. V prázdných přehrávačích znovu načte druhou poslední vysunutou skladbu. - + BPM / Beatgrid MM / rytmická mřížka - + Halve BPM Snížit MM na polovinu - + Multiply current BPM by 0.5 - + 2/3 BPM 2/3 MM - + Multiply current BPM by 0.666 - + 3/4 BPM 3/4 MM - + Multiply current BPM by 0.75 - + 4/3 BPM 4/3 MM - + Multiply current BPM by 1.333 - + 3/2 BPM 3/2 MM - + Multiply current BPM by 1.5 - + Double BPM Zdvojit MM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid Přesunout rytmickou mřížku - + Adjust the beatgrid to the left or right Posunout rytmickou mřížku zleva doprava - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + Sync / Sync Lock Seřízení/Zámek seřizení - + Internal Sync Leader Vnitřní vedoucí seřizování - + Toggle Internal Sync Leader Přepnout vnitřní vedoucí seřizování - - + + Internal Leader BPM Vnitřní vedoucí MM - + Internal Leader BPM +1 Vnitřní vedoucí MM +1 - + Increase internal Leader BPM by 1 Zvýšit vnitřní vedoucí MM o 1 - + Internal Leader BPM -1 Vnitřní vedoucí MM -1 - + Decrease internal Leader BPM by 1 Snížit vnitřní vedoucí MM o 1 - + Internal Leader BPM +0.1 Vnitřní vedoucí MM +0,1 - + Increase internal Leader BPM by 0.1 Zvýšit vnitřní vedoucí MM o 0,1 - + Internal Leader BPM -0.1 Vnitřní vedoucí MM -0,1 - + Decrease internal Leader BPM by 0.1 Snížit vnitřní vedoucí MM o 0,1 - + Sync Leader Vedoucí seřizování - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Režim seřizování třístavový přepínač / ukazatel (vypnuto, plynulé vedoucí, explicitní vedoucí) - + Speed Rychlost - + Decrease Speed (Fine) Snížit rychlost (jemné) - + Pitch (Musical Key) Výška tónu (tónina) - + Increase Pitch Zvýšit výšku tónu - + Increases the pitch by one semitone Zvýší výšku tónu o jeden půltón. - + Increase Pitch (Fine) Zvýšit výšku tónu (jemné) - + Increases the pitch by 10 cents Zvýší výšku tónu o 10 centů. - + Decrease Pitch Snížit výšku tónu - + Decreases the pitch by one semitone Sníží výšku tónu o jeden půltón. - + Decrease Pitch (Fine) Snížit výšku tónu (jemné) - + Decreases the pitch by 10 cents Sníží výšku tónu o 10 centů. - + Keylock Uzamčení tóniny - + CUP (Cue + Play) BZP (značka a přehrát) - + Shift cue points earlier Posunout body značek dříve - + Shift cue points 10 milliseconds earlier Posunout body značek o 10 milisekund dříve - + Shift cue points earlier (fine) Posunout body značek dříve (jemné) - + Shift cue points 1 millisecond earlier Posunout body značek o 1 milisekundu dříve - + Shift cue points later Posunout body značek později - + Shift cue points 10 milliseconds later Posunout body značek o 10 milisekund později - + Shift cue points later (fine) Posunout body značek později (jemné) - + Shift cue points 1 millisecond later Posunout body značek o 1 milisekundu později - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + Hotcues %1-%2 Rychlé značky %1-%2 - + Intro / Outro Markers Značky úvodu/závěru - + Intro Start Marker Značka začátku úvodu - + Intro End Marker Značka konce úvodu - + Outro Start Marker Značka začátku závěru - + Outro End Marker Značka konce závěru - + intro start marker Značka začátku úvodu - + intro end marker Značka konce úvodu - + outro start marker Značka začátku závěru - + outro end marker Značka konce úvodu - + Activate %1 [intro/outro marker Zapnout značku %1 - + Jump to or set the %1 [intro/outro marker Skočit nebo nastavit %1 - + Set %1 [intro/outro marker Nastavit %1 - + Set or jump to the %1 [intro/outro marker Nastavit nebo skočit na %1 - + Clear %1 [intro/outro marker Vyprázdnit %1 - + Clear the %1 [intro/outro marker Vyprázdnit %1 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats Smyčkovat doby - + Loop Roll Beats Průběžně smyčkovat doby - + Go To Loop In Přejít na smyčku - + Go to Loop In button Přejít na tlačítko smyčky - + Go To Loop Out Odejít ze smyčky - + Go to Loop Out button Odejít z tlačítka smyčky - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward Skok na dobu/Přesun smyčky dopředu - + Beat Jump / Loop Move Backward Skok na dobu/Přesun smyčky dozadu - + Loop Move Forward Přesun smyčky dopředu - + Loop Move Backward Přesun smyčky dozadu - + Remove Temporary Loop Odebrat dočasnou smyčku - + Remove the temporary loop Odebrat dočasnou smyčku - + Navigation Cesta - + 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 - + Sort focused column Řadit zaměřený sloupec - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Řadit sloupec buňky, která je aktuálně zaměřena, což odpovídá klepnutí na záhlaví - + 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 Nahrát skladbu a přehrát - + 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 Vybrat další historii hledání - + Selects the next search history entry Vybere další položku historie hledání - + Select previous search history Vybrat předchozí historii hledání - + Selects the previous search history entry Vybere předchozí položku historie hledání - + Move selected search entry Přesunout vybranou historii hledání - + Moves the selected search history item into given direction and steps Přesune vybranou položku historie hledání do daného směru a kroků - + Clear search Smazat hledání - + Clears the search query Smaže vyhledávací dotaz - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Přiřazení efektové jednotky - + Meta Knob Metaknoflík - + Effect Meta Knob (control linked effect parameters) Metaknoflík efektu (řízení parametrů propojených efektů) - + Meta Knob Mode Režim metaknoflíku - + Set how linked effect parameters change when turning the Meta Knob. Nastavit, jak se parametry propojených efektů budou měnit, když se otáčí metaknoflíkem. - + Meta Knob Mode Invert Obrácení režimu metaknoflíku - + 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áčí metaknoflíkem. - - + + Button Parameter Value Hodnota parametru tlačítka - + 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 Automatický diskžokej Přidat náhodnou skladbu - + Add a random track to the Auto DJ queue Přidat náhodnou skladbu do řady automatického diskžokeje - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Ukázat/Skrýt mikrofon a pomocné zařízení - + Waveform Zoom Reset To Default Zvětšení průběhové křivky resetováno na výchozí - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Resetujte úroveň zvětšení průběhové křivky na výchozí hodnotu vybranou v Nastavení -> Křivky - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting Zahájit/Zastavit živé vysílání - + Stream your mix over the Internet. Vysílejte svoje míchání přes internet. - + Start/stop recording your mix. Začněte/Zastavte nahrávání směsi (mixování). - - + + + Deck %1 Stems + + + + + Samplers Vzorkovače - + 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) Ukázat/Skrýt obrázek obalu (přehrávače) - + Show/hide cover art in the main decks Ukázat/Skrýt obrázky obalů v hlavních přehrávačích - + 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) Ukázat/Skrýt otáčející se vinylovou gramodesku (všechny přehrávače) - + Show/Hide all spinnies Ukázat/Skrýt všechny talíře - + Toggle Waveforms Přepnout tvar křivek - + Show/hide the scrolling waveforms. Ukázat/Skrýt posuvné průběhy - + 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 @@ -3549,6 +3590,159 @@ trace - Výše + Profilování zpráv + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3651,32 +3845,32 @@ trace - Výše + Profilování zpráv ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Funkce poskytované přiřazením tohoto ovladače budou až do vyřešení problému vypnuty. - + You can ignore this error for this session but you may experience erratic behavior. Nemusíte si pro toto sezení všímat této chyby, ale můžete zažít nevyzpytatelné chování. - + Try to recover by resetting your controller. Pokuste se o obnovu znovunastavením vašeho ovladače. - + Controller Mapping Error Chyba v přiřazení ovladače - + The mapping for your controller "%1" is not working properly. Přiřazení pro váš ovladač "%1" nefunguje správně. - + The script code needs to be fixed. Kód skriptu je potřeba opravit. @@ -3684,27 +3878,27 @@ trace - Výše + Profilování zpráv ControllerScriptEngineLegacy - + Controller Mapping File Problem Problém souboru přiřazení ovladače - + The mapping for controller "%1" cannot be opened. Přiřazení pro váš ovladač "%1" nemohlo být ovevřeno. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Funkce poskytované přiřazením tohoto ovladače budou až do vyřešení problému vypnuty. - + File: Soubor: - + Error: Chyba: @@ -3737,7 +3931,7 @@ trace - Výše + Profilování zpráv - + Lock Zamknout @@ -3767,7 +3961,7 @@ trace - Výše + Profilování zpráv Zdroj skladeb pro automatického diskžokeje - + Enter new name for crate: Zadat nový název pro přepravku: @@ -3784,22 +3978,22 @@ trace - Výše + Profilování zpráv 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 @@ -3809,28 +4003,28 @@ trace - Výše + Profilování zpráv Vytvořte si přepravku na desky pro své další vystoupení, pro své oblíbené skladby ve stylu elektrického domu (electrohouse), a nebo třeba pro nejžádanější skladby. - + Confirm Deletion Potvrdit smazání - - + + 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) - + M3U Playlist (*.m3u) Seznam skladeb M3U (*.m3u) @@ -3851,17 +4045,17 @@ trace - Výše + Profilování zpráv Přepravky na desky vám umožní uspořádat si svou sbírku skladeb po svém! - + Do you really want to delete crate <b>%1</b>? Opravdu chcete přepravku <b>%1</b> smazat? - + 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. @@ -3956,12 +4150,12 @@ trace - Výše + Profilování zpráv Přispěvatelé v minulosti - + Official Website Internetová stránka - + Donate Přispět @@ -4766,123 +4960,140 @@ Pokusili jste se naučit: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Automaticky - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Činnost se nezdařila - + You can't create more than %1 source connections. Nemůžete vytvořit připojení více než %1 zdrojů. - + Source connection %1 Připojení zdroje %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Je požadováno připojení alespoň jednoho zdroje. - + Are you sure you want to disconnect every active source connection? Opravdu chcete odpojit všechna činná připojení zdrojů? - - + + Confirmation required Požadováno potvrzení - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' má týž přípojný bod Icecast jako '%2'. Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný bod, nemohou být povolena zároveň. - + Are you sure you want to delete '%1'? Opravdu chcete smazat '%1'? - + Renaming '%1' Přejmenovává se '%1' - + New name for '%1': Nový název pro '%1': - + Can't rename '%1' to '%2': name already in use Nelze přejmenovat '%1' na '%2': název se již používá @@ -4895,27 +5106,27 @@ Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný Nastavení živého přenosu - + Mixxx Icecast Testing Zkoušení Icecast s Mixxxem - + Public stream Veřejný proud - + http://www.mixxx.org http://www.mixxx.org - + Stream name Název proudu - + 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. Kvůli chybám u některých klientů pro vysílání (přenos dat) může vést dynamická aktualizace popisných dat ve formátu Ogg Vorbis u posluchačů k poruchám a přerušením. Zaškrtněte toto okénko, aby se přesto popisná data aktualizovala. @@ -4955,67 +5166,72 @@ Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný Nastavení pro %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Aktualizovat dynamicky popisná data Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Stránky - + Live mix Míchání naživo - + IRC IRC - + Select a source connection above to edit its settings here Vyberte připojení zdroje výše pro upravení jeho nastavení zde - + Password storage Úložiště hesla - + Plain text Prostý text - + Secure storage (OS keychain) Bezpečné úložiště (řetězec s klíčem OS) - + Genre Žánr - + Use UTF-8 encoding for metadata. Použít kódování UTF-8 pro popisná data. - + Description Popis @@ -5041,42 +5257,42 @@ Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný Kanály - + Server connection Připojení k serveru - + Type Typ - + Host Hostitel - + Login Přihlášení - + Mount Připojit - + Port Přípojka - + Password Heslo - + Stream info Údaje o proudu @@ -5086,17 +5302,17 @@ Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný Popisná data - + Use static artist and title. Neměnný umělec a název. - + Static title Neměnný název - + Static artist Neměnný umělec @@ -5155,13 +5371,14 @@ Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný DlgPrefColors - - + + + By hotcue number Podle čísla rychlé značky - + Color Barva @@ -5206,17 +5423,22 @@ Dvě zdrojová připojení ke stejnému serveru, které mají týž přípojný + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5224,114 +5446,114 @@ associated with each key. DlgPrefController - + Apply device settings? Použít nastavení zařízení? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Nastavení je nutné použít před spuštěním Průvodce učením. Použít nastavení a pokračovat? - + None Žádný - + %1 by %2 %1 od %2 - + Mapping has been edited Přiřazení bylo upraveno - + Always overwrite during this session Pokaždé přepsat během sezení - + Save As Uložit jako - + Overwrite Přepsat - + Save user mapping Uložit přiřazení uživatele - + Enter the name for saving the mapping to the user folder. Zadejte název pro uložení přiřazení do uživatelské složky. - + Saving mapping failed Uložení přiřazení selhalo - + A mapping cannot have a blank name and may not contain special characters. Přiřazení nesmí mít prázdný název a neměl by obsahovat zvláštní znaky. - + A mapping file with that name already exists. Soubor přiřazení s tímto názvem již existuje. - + Do you want to save the changes? Chcete uložit změny? - + Troubleshooting Odstraňování závad - + <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>Pokud používáte toto přiřazení, váš ovladač nemusí pracovat správně. Vyberte prosím další přiřazení nebo vypnutí ovladače.</b></font><br><br>Toto přiřazení bylo navrženo pro novější ovladač stroje Mixxx a nelze je použít při vaší nynější instalaci Mixxx.<br>Vaše instalace Mixxx má verzi ovladače stroje %1. Toto přiřazení vyžaduje verzi ovladače stroje> = %2.<br><br>Pro více informací navštivte stránku wiki <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Verze ovladače stroje</a>. - + Mapping already exists. Přiřazení již existuje. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> již existuje v uživatelské složce přiřazení.<br>Přepsat nebo uložit pod novým názvem? - + Clear Input Mappings Smazat přiřazení vstupu - + Are you sure you want to clear all input mappings? Jste si jistý, že chcete smazat všechna přiřazení vstupu? - + Clear Output Mappings Smazat přiřazení výstupu - + Are you sure you want to clear all output mappings? Jste si jistý, že chcete smazat všechna přiřazení výstupu? @@ -5349,100 +5571,105 @@ Použít nastavení a pokračovat? Povoleno - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Popis: - + Support: Podpora: - + Screens preview - + Input Mappings Přiřazení vstupů - - + + Search Hledat - - + + Add Přidat - - + + Remove Odstranit @@ -5462,17 +5689,17 @@ Použít nastavení a pokračovat? Načítání přiřazení: - + Mapping Info Informace o přiřazení - + Author: Autor: - + Name: Název: @@ -5482,28 +5709,28 @@ Použít nastavení a pokračovat? Průvodce učením (pouze MIDI ) - + Data protocol: - + Mapping Files: Soubory přiřazení: - + Mapping Settings - - + + Clear All Vyprázdnit vše - + Output Mappings Přiřazení výstupů @@ -5518,21 +5745,21 @@ Použít nastavení a pokračovat? - 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 používá přiřazení, aby propojil příkazy z vašeho řadiče s ovládacími prvky v Mixxxu. Pokud se vám neukazuje žádné přiřazení pro váš řadič v nabídce Nahrát přiřazení, když klepnete na řadič v levém postranním panelu, můžete ho stáhnout z %1. Umístěte soubor(y) XML (.xml) a Javascript (.js) do uživatelské složky s přednastaveními, a potom Mixxx spusťte znovu. Pokud stáhnete přiřazení v souboru ZIP, rozbalte soubor(y) XML a Javascript do uživatelské složky s přednastaveními, a pak Mixxx spusťte znovu: + 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Průvodce technickým vybavením pro DJ Mixxx - + MIDI Mapping File Format Formát přiřazení souboru MIDI - + MIDI Scripting with Javascript Skriptování MIDI JavaScriptem @@ -5662,6 +5889,16 @@ Použít nastavení a pokračovat? Multi-Sampling Vícenásobné vzorkování + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5691,137 +5928,137 @@ Použít nastavení a pokračovat? DlgPrefDeck - + Mixxx mode Režim Mixxx - + Mixxx mode (no blinking) Režim Mixxxu (bez blikání) - + Pioneer mode Režim Pioneer - + Denon mode Režim Denon - + Numark mode Režim Numark - + CUP mode Režim BZP - + mm:ss%1zz - Traditional mm:ss%1zz - tradiční - + mm:ss - Traditional (Coarse) mm:ss - tradiční (hrubé) - + s%1zz - Seconds s%1zz - sekundy - + sss%1zz - Seconds (Long) sss%1zz - sekundy (dlouhé) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - kilosekundy - + Intro start Začátek otevírající skladby - + Main cue Hlavní značka - + First hotcue - + First sound (skip silence) První zvuk (přeskočit ticho) - + Beginning of track Začátek skladby - + Reject Zamítnout - + Allow, but stop deck Povolit, ale zastavit přehrávač - + Allow, play from load point Povolit, přehrávat od bodu zatížení - + 4% 4 % - + 6% (semitone) 6 % (půltón) - + 8% (Technics SL-1210) 8 % (Technics SL-1210) - + 10% 10 % - + 16% 16 % - + 24% 24 % - + 50% 50 % - + 90% 90 % @@ -6276,62 +6513,62 @@ Vždy můžete přetažením skladeb na obrazovce naklonovat přehrávač. 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í - + Disabled Zakázáno - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + This skin does not support color schemes Tento vzhled nepodporuje barevná schémata - + Information Informace - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. Předtím než se změny, škálování nebo vícenásobné vzorkování projeví, bude se muset Mixxx spustit znovu. @@ -6559,67 +6796,97 @@ a umožní vám upravit tóninu pro libozvučné míchání. Na podrobnosti se podívejte v příručce - + 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 - + Item is not a directory or directory is missing Přestaň - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Vybrat písmo knihovny @@ -6668,262 +6935,267 @@ a umožní vám upravit tóninu pro libozvučné míchání. Prohledat adresář skladeb při spuštění - + Audio File Formats Formáty zvukových souborů - + Track Table View Zobrazení seznamu skladeb - + Track Double-Click Action: Činnost skladby dvojitým klepnutím: - + BPM display precision: Přesnost zobrazení MM: - + Session History Historie sezení - + Track duplicate distance Zdvojit vzdálenost skladeb - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Při opětovném přehrávání skladby ji zapište do historie sezení, pouze pokud bylo mezitím přehráno více než N jiných skladeb - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Seznam skladeb historie s méně než N stopami bude smazán<br/><br/>Poznámka: vyčištění bude provedeno během spouštění a vypínání Mixxx. - + Delete history playlist with less than N tracks Smazat historii seznamu skladeb - + Library Font: Písmo knihovny: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions Povolit našeptávač - + Enable search history keyboard shortcuts Povolit klávesové zkratky historie hledání - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution Upřednostňované rozlišení přinašeče obrázků obalů - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Natáhněte (získejte) obaly ze stránek coverartarchive.com pomocí funkce Nahrát popisná data z Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Poznámka: ">1200 px" může natáhnout až velmi velké obaly. - + >1200 px (if available) >1200 px (je-li dostupné) - + 1200 px (if available) 1200 px (je-li dostupné) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Nastavení adresáře - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Adresář nastavení Mixxx obsahuje databázi knihovny, různé soubory s nastavením, soubory s protokoly, data analýzy skladeb a také vlastní přiřazování ovladačů. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Upravit tyto soubory pokud víte, co s nimi děláte, a pouze pokud Mixxx není spuštěný. - + Open Mixxx Settings Folder Otevřít složku Nastavení Mixxx - + Library Row Height: Výška řádku knihovny - + Use relative paths for playlist export if possible Je-li to možné, pro vyvedení seznamu skladeb použít relativní cesty - + ... ... - + px px - + Synchronize library track metadata from/to file tags Synchronizovat popisná data skladeb knihovny z/do značek souborů - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automaticky zapisovat upravená popisná data skladeb z knihovny do značek souborů a znovu nahrát popisná data z aktualizovaných značek souborů do knihovny - + Synchronize Serato track metadata from/to file tags (experimental) Synchronizovat popisná data skladeb Serato z/do značek souborů (experimentální) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Udržuje barvu skladby, mřížku rytmu, zámek bpm, startovací body a smyčky synchronizované se značkami souborů SERATO_MARKERS/MARKERS2.<br/><br/>VAROVÁNÍ: Povolením této možnosti také povolíte opětovné nahrání popisných dat Serato poté, co byly soubory upraveny mimo Mixxx. Při opětovném zavedení jsou stávající popisná data v Mixxxu nahrazena popisnými daty nalezenými ve značkách souborů. Vlastní popisná data, která nejsou zahrnuta ve značkách souborů, jako jsou barvy smyčky, jsou ztracena. - + Edit metadata after clicking selected track Upravit popisná data po klepnutí na vybranou stopu - + Search-as-you-type timeout: Prodleva pro okamžité hledání: - + ms ms - + Load track to next available deck Nahrát skladbu do dalšího dostupného přehrávače - + External Libraries Vnější knihovny - + You will need to restart Mixxx for these settings to take effect. Aby se změny projevily, budete muset Mixxx spustit znovu. - + Show Rhythmbox Library Ukázat knihovnu Rhythmboxu - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) Přidat skladbu do řady automatického diskžokeje (dole) - + Add track to Auto DJ queue (top) Přidat skladbu do řady automatického diskžokeje (nahoře) - + Ignore Přehlížet - + Show Banshee Library Ukázat knihovnu Banshee - + Show iTunes Library Ukázat knihovnu iTunes - + Show Traktor Library Ukázat knihovnu Traktoru - + Show Rekordbox Library Ukázat knihovnu Rekordboxu - + Show Serato Library Zobrazit knihovnu Serato - + All external libraries shown are write protected. Všechny zobrazené vnější knihovny jsou chráněny proti zápisu. @@ -7268,33 +7540,33 @@ a umožní vám upravit tóninu pro libozvučné míchání. DlgPrefRecord - + Choose recordings directory Vybrat adresář pro nahrávání - - + + Recordings directory invalid Neplatný adresář pro nahrávání - + Recordings directory must be set to an existing directory. Adresář pro nahrávání musí být nastaven na existující adresář. - + Recordings directory must be set to a directory. Adresář pro nahrávání musí být nastaven na adresář. - + Recordings directory not writable Adresář pro nahrávání není zapisovatelný - + You do not have write access to %1. Choose a recordings directory you have write access to. Nemáte přístup pro zápis souboru %1. Vyberte adresář pro nahrávání, ke kterému máte přístup pro zápis. @@ -7312,43 +7584,55 @@ a umožní vám upravit tóninu pro libozvučné míchání. Procházet... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Kvalita - + Tags Značky - + Title Název - + Author Autor - + Album Album - + Output File Format Formát výstupního souboru - + Compression Komprese - + Lossy Ztrátová @@ -7363,12 +7647,12 @@ a umožní vám upravit tóninu pro libozvučné míchání. Adresář: - + Compression Level Úroveň komprese - + Lossless Bezztrátová @@ -7501,174 +7785,179 @@ Cílová hlasitost zvuku je přibližná a předpokládá se, že předzesílen DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Výchozí (dlouhé zpoždění) - + Experimental (no delay) Pokusné (žádné zpoždění) - + Disabled (short delay) Zakázáno (krátké zpoždění) - + Soundcard Clock Hodiny zvukové karty - + Network Clock Hodiny sítě - + Direct monitor (recording and broadcasting only) Přímý dohled (pouze nahrávání a vysílání) - + Disabled Zakázáno - + Enabled Povoleno - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Povolit zařazování do rozvrhu (nyní vypnuto), podívejte se na %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 uvádí zvukové karty a ovladače, které byste měli zvážit při používání Mixxxu. - + Mixxx DJ Hardware Guide Průvodce technickým vybavením pro DJ Mixxx - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) automaticky (<= 1024 snímků/periodu) - + 2048 frames/period 2048 snímků/periodu - + 4096 frames/period 4096 snímků/periodu - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Mikrofonní vstupy jsou při nahrávání a vysílaní zpožděny v porovnání s tím, co slyšíte. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Změřte prodlevu zpoždění a zadejte ji výše pro prodlevu mikrofonu. Kompenzace pro přizpůsobení načasování mikrofonu. - + Refer to the Mixxx User Manual for details. Nahlédněte do uživatelské příručky k Mixxxu, kde jsou podrobnosti. - + Configured latency has changed. Nastavená prodleva se změnila. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Opakujte nastavení zpoždění a zadejte ji výše pro latenci mikrofonu Kompenzace pro přizpůsobení načasování mikrofonu. - + Realtime scheduling is enabled. Je povoleno zařazování do rozvrhu ve skutečném čase. - + Main output only Pouze hlavní výstup - + Main and booth outputs Hlavní výstup a výstup kukaně - + %1 ms %1 ms - + Configuration error Chyba nastavení @@ -7735,17 +8024,22 @@ Kompenzace pro přizpůsobení načasování mikrofonu. ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Počítadlo podtečení vyrovnávací paměti - + 0 0 @@ -7770,12 +8064,12 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Vstup - + System Reported Latency Systémem hlášená prodleva - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Zvětšete vyrovnávací paměť zvuku, když se zvýší počítadlo podtečení nebo během přehrávání slyšíte výpadky. @@ -7805,7 +8099,7 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Rady a diagnostika - + Downsize your audio buffer to improve Mixxx's responsiveness. Zmenšete vyrovnávací paměť zvuku, abyste zlepšili reakční schopnost Mixxxu. @@ -7852,7 +8146,7 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Nastavení vinylové gramodesky - + Show Signal Quality in Skin Ukazovat kvalitu signálu ve vzhledu @@ -7888,46 +8182,51 @@ Kompenzace pro přizpůsobení načasování mikrofonu. + Pitch estimator + + + + Deck 1 Přehrávač 1 - + Deck 2 Přehrávač 2 - + Deck 3 Přehrávač 3 - + Deck 4 Přehrávač 4 - + Signal Quality Kvalita signálu - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Poháněno xwaxem - + Hints Rady - + Select sound devices for Vinyl Control in the Sound Hardware pane. Vyberte zvuková zařízení pro ovládání vinylem na kartě nastavení Zvuk. @@ -7935,58 +8234,58 @@ Kompenzace pro přizpůsobení načasování mikrofonu. DlgPrefWaveform - + Filtered Filtrováno - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + 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. @@ -8004,22 +8303,17 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Rychlost snímkování - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Ukáže, která verze OpenGL je podporována nynější platformou. - - Normalize waveform overview - Normalizovat přehled průběhové křivky - - - + Average frame rate Průměrná rychlost snímkování @@ -8035,7 +8329,7 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Výchozí zvětšení - + Displays the actual frame rate. Ukáže skutečnou rychlost snímkování. @@ -8070,7 +8364,7 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Hloubky - + Show minute markers on waveform overview @@ -8115,7 +8409,7 @@ Kompenzace pro přizpůsobení načasování mikrofonu. Celkov viditelné zesílení - + 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. Zobrazení průběhové křivky ukazuje obálku průběhové křivky celé skladby. @@ -8184,22 +8478,22 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé - + Caching Ukládání do vyrovnávací paměti - + 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 ukládá průběhové křivky skladeb na disku do vyrovnávací paměti, když poprvé skladbu nahrajete. Tím zmenšuje využití procesoru, když přehráváte naživo, ale potřebuje k tomu prostor na disku navíc. - + Enable waveform caching Povolit ukládání průběhových křivek do vyrovnávací paměti - + Generate waveforms when analyzing library Vytvářet při rozboru knihovny průběhové křivky @@ -8215,7 +8509,7 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé - + Type @@ -8245,12 +8539,58 @@ Vyberte z různých druhů zobrazení průběhových křivek, které se v prvé Posune polohu značky přehrávání na průběhových křivkách doleva, doprava nebo na střed (výchozí). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Smazat průběhové křivky uložené do vyrovnávací paměti @@ -8742,7 +9082,7 @@ Tento krok nelze vrátit zpět! MM: - + Location: Umístění: @@ -8757,27 +9097,27 @@ Tento krok nelze vrátit zpět! Poznámky - + BPM MM - + Sets the BPM to 75% of the current value. Nastaví rázy za minutu (MM) na 75 % nynější hodnoty. - + 3/4 BPM 3/4 MM - + Sets the BPM to 50% of the current value. Nastaví rázy za minutu (MM) na 50 % nynější hodnoty. - + Displays the BPM of the selected track. Zobrazí rázy za minutu (MM) vybrané skladby. @@ -8832,49 +9172,49 @@ Tento krok nelze vrátit zpět! Žánr - + ReplayGain: Vyrovnání hlasitosti: - + Sets the BPM to 200% of the current value. Nastaví rázy za minutu (MM) na 200 % nynější hodnoty. - + Double BPM Zdvojit MM - + Halve BPM Snížit MM na polovinu - + Clear BPM and Beatgrid Smazat MM a rytmickou mřížku - + Move to the previous item. "Previous" button Přesunout na předchozí položku. - + &Previous &Předchozí - + Move to the next item. "Next" button Přesunout na další položku. - + &Next &Další @@ -8899,12 +9239,12 @@ Tento krok nelze vrátit zpět! Barva - + Date added: Datum přidání: - + Open in File Browser Otevřít v prohlížeči souborů @@ -8914,12 +9254,17 @@ Tento krok nelze vrátit zpět! Vzorkovací kmitočet: - + + Filesize: + + + + Track BPM: MM skladby: - + 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. @@ -8928,90 +9273,90 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět Často jsou výsledkem vysoce kvalitní rytmické mřížky, ale nevede si dobře u skladeb, které mají posuny tempa. - + Assume constant tempo Předpokládat neměnné tempo - + Sets the BPM to 66% of the current value. Nastaví rázy za minutu (MM) na 66 % nynější hodnoty. - + 2/3 BPM 2/3 MM - + Sets the BPM to 150% of the current value. Nastaví rázy za minutu (MM) na 150 % nynější hodnoty. - + 3/2 BPM 3/2 MM - + Sets the BPM to 133% of the current value. Nastaví rázy za minutu (MM) na 133 % nynější hodnoty. - + 4/3 BPM 4/3 MM - + Tap with the beat to set the BPM to the speed you are tapping. Klepejte (ťukejte) do taktu (rytmus) pro nastavení rázů (úderů) za minutu (RZM - „M.M.“: Mälzelův metronom) na rychlost, kterou ťukáte. - + Tap to Beat Klepat rytmus - + Hint: Use the Library Analyze view to run BPM detection. Rada: Rozbor knihovny použijte ke zjištění počtu úderů za minutu - rázů za minutu (RZM - „M.M.“: Mälzelův metronom). - + Save changes and close the window. "OK" button Uložit změny a zavřít okno. - + &OK &OK - + Discard changes and close the window. "Cancel" button Zahodit změny a zavřít okno. - + Save changes and keep the window open. "Apply" button Uložit změny a ponechat okno otevřené. - + &Apply &Použít - + &Cancel &Zrušit - + (no color) (žádná barva) @@ -9168,7 +9513,7 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět - + (no color) @@ -9370,27 +9715,27 @@ Použijte toto nastavení, pokud mají vaše skladby stálé tempo (např. vět EngineBuffer - + Soundtouch (faster) Soundtouch (rychlejší) - + Rubberband (better) Rubberband (lepší) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (kvalita poblíž hi-fi) - + Unknown, using Rubberband (better) Neznámé zařízení používající Rubberband (lepší) - + Unknown, using Soundtouch Neznámý, používám Soundtouch @@ -9605,15 +9950,15 @@ 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 @@ -9625,57 +9970,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9683,62 +10028,62 @@ pro OpenGL. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9748,22 +10093,22 @@ Aborting the operation to avoid library inconsistencies LibraryFeature - + Import Playlist Nahrát seznam skladeb - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Soubory se seznamy skladeb (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Přepsat soubor? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -9904,12 +10249,12 @@ Opravdu chcete přepsat soubor? Skryté skladby - + Export to Engine DJ - + Tracks Skladby @@ -9917,37 +10262,37 @@ Opravdu chcete přepsat soubor? 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 @@ -9957,213 +10302,213 @@ Opravdu chcete přepsat soubor? vzhled - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? Pro tento mikrofon nebylo zjištěno žádné vstupní zařízení. Chcete vybrat vstupní zařízení? - + There is no input device selected for this auxiliary. Do you want to select an input device? Pro tuto pomocnou jednotku nebylo zjištěno žádné vstupní zařízení. Chcete vybrat vstupní zařízení? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. Přímé vykreslování není na vašem stroji povoleno.<br><br>Znamená to, že zobrazování průběhové křivky bude velmi<br><b>pomalé a může hodně zatěžovat procesor</b>. Buď aktualizujte své<br>nastavení a povolte přímé vykreslování, nebo zakažte<br>zobrazování průběhové křivky v nastavení Mixxxu volbou<br>"Prázdný" jako zobrazování průběhové křivky v části 'Rozhraní'. - - - + + + 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? @@ -10179,13 +10524,13 @@ Chcete vybrat vstupní zařízení? PlaylistFeature - + Lock Zamknout - - + + Playlists Seznamy skladeb @@ -10195,58 +10540,63 @@ Chcete vybrat vstupní zařízení? Zamíchat seznam skladeb - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Odemknout - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Seznamy skladeb jsou uspořádané seznamy skladeb, které vám umožňují plánovat vaše seznamy skladeb při míchání. - + 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. Může být nezbytné přeskočit některé skladby v předpřipraveném seznamu skladeb nebo přidat několik nových skladeb pro udržení posluchačů při síle. - + 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 @@ -10345,59 +10695,59 @@ Chcete vybrat vstupní zařízení? 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 @@ -10511,69 +10861,82 @@ Chcete nyní kvůli souborům s obaly prohledat knihovnu? 14-bit (MSB) - + Main + Audio path indetifier Hlavní - + Booth + Audio path indetifier Kukaň - + Headphones + Audio path indetifier Sluchátka - + Left Bus + Audio path indetifier Levá sběrnice - + Center Bus + Audio path indetifier Střední sběrnice - + Right Bus + Audio path indetifier Pravá sběrnice - + Invalid Bus + Audio path indetifier Neplatná sběrnice - + Deck + Audio path indetifier Přehrávač - + Record/Broadcast + Audio path indetifier Nahrávat/Vysílat - + Vinyl Control + Audio path indetifier Ovládání vinylem - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier Pomocný (Aux) - + Unknown path type %1 + Audio path Neznámý typ cesty %1 @@ -10916,47 +11279,49 @@ Se šířkou na nule může být celá oblast zpoždění pokryta ručně.Šířka - + Metronome Metronom - + + The Mixxx Team - + Adds a metronome click sound to the stream Přidá zvuk klepnutí metronomu do proudu - + BPM MM - + Set the beats per minute value of the click sound Nastaví hodnotu pro počet dob za minutu zvuku klepnutí metronomu - + Sync Seřízení - + Synchronizes the BPM with the track if it can be retrieved Seřídí údery za minutu/rázy za minutu (RZM - „M.M.“: Mälzelův metronom) se stopou, pokud lze údaj získat - + + Gain - + Set the gain of metronome click sound @@ -11760,14 +12125,14 @@ Fully right: end of the effect period Nahrávání OGG není podporováno. Knihovnu OGG/Vorbis se nepodařilo inicializovat. - - + + encoder failure selhání kodéru - - + + Failed to apply the selected settings. Nepodařilo se použít vybraná nastavení. @@ -11907,7 +12272,7 @@ Nápověda: vyvažuje „čipmánčí“ nebo „vrčící“ hlasyMíra zesílení použitého na zvukový signál. Ve vyšších úrovních bude zvuk více zkreslený. - + Passthrough Propustit skrz @@ -11933,55 +12298,126 @@ Nápověda: vyvažuje „čipmánčí“ nebo „vrčící“ hlasyKdyž je povolen parametr kvantizace, dělit zaokrouhlené osminové doby parametru času třemi. - - (empty) - (prázdné) + + (empty) + (prázdné) + + + + Sampler %1 + Vzorkovač %1 + + + + + Compressor + + + + + Auto Makeup Gain + + + + + Makeup + + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + - - Sampler %1 - Vzorkovač %1 + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + - - - Compressor + + Target (dBFS) - - Auto Makeup Gain + + Target - - Makeup + + The Target knob adjusts the desired target level of the output signal - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + Gain (dB) - - Off + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - On + + Knee (dB) - - Threshold (dBFS) + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -12012,6 +12448,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -12022,11 +12459,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -12038,11 +12477,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12071,12 +12512,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12111,42 +12552,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12407,194 +12848,194 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx narazil na problém - + Could not allocate shout_t Nepodařilo se přidělit shout_t - + Could not allocate shout_metadata_t Nepodařilo se přidělit shout_metadata_t - + Error setting non-blocking mode: Chyba při nastavování neblokujícího režimu: - + Error setting tls mode: Chyba při nastavování režimu TLS: - + Error setting hostname! Chyba při nastavování jména hostitele! - + Error setting port! Chyba při nastavování přípojky (port)! - + Error setting password! Chyba při nastavování hesla! - + Error setting mount! Chyba při nastavování bodu připojení! - + Error setting username! Chyba při nastavování uživatelského jména! - + Error setting stream name! Chyba při nastavování názvu proudu! - + Error setting stream description! Chyba při nastavování popisu proudu! - + Error setting stream genre! Chyba při nastavování žánru proudu! - + Error setting stream url! Chyba při nastavování adresy (URL) proudu! - + Error setting stream IRC! Chyba při nastavování IRC proudu! - + Error setting stream AIM! Chyba při nastavování AIM proudu! - + Error setting stream ICQ! Chyba při nastavování ICQ proudu! - + Error setting stream public! Chyba při nastavování jako veřejného proudu! - + Unknown stream encoding format! Neznámý formát kódování proudu! - + Use a libshout version with %1 enabled Použít verzi libshout s %1 povoleným - + Error setting stream encoding format! Chyba nastavení formátu kódování proudu! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Vysílání na 96 kHz s Ogg Vorbis není nyní podporováno. Zkuste jiný vzorkovací kmitočet, nebo přepněte do jiného kódování. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Podívejte se na https://github.com/mixxxdj/mixxx/issues/5701 pro více informací. - + Unsupported sample rate Nepodporovaný vzorkovací kmitočet - + Error setting bitrate Chyba při nastavování datového toku - + Error: unknown server protocol! Chyba: Neznámý serverový protokol! - + Error: Shoutcast only supports MP3 and AAC encoders Chyba: Shoutcast podporuje pouze kodéry MP3 a AAC - + Error setting protocol! Chyba při nastavování protokolu! - + Network cache overflow Přetečení vyrovnávací paměti sítě - + Connection error Chyba spojení - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Jedno z připojení živého vysílání vrátilo tuto chybu: <br><b>Chyba s připojením '%1':</b><br> - + Connection message Zpráva o spojení - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Zpráva připojení živého vysílání'%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Ztraceno spojení s vysílacím serverem a %1 pokus o opětovné připojení se nezdařil - + Lost connection to streaming server. Ztraceno spojení s vysílacím serverem. - + Please check your connection to the Internet. Zkontrolujte, prosím, vaše připojení k internetu. - + Can't connect to streaming server Nelze vytvořit spojení s vysílacím serverem - + Please check your connection to the Internet and verify that your username and password are correct. Zkontrolujte, prosím, vaše připojení k internetu a ověřte, jestli je správně zadáno uživatelské jméno a heslo. @@ -12602,7 +13043,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrováno @@ -12610,23 +13051,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device zařízení - + An unknown error occurred Došlo k neznámé chybě - + Two outputs cannot share channels on "%1" Dva výstupy nemohou sdílet kanály na "%1" - + Error opening "%1" Chyba při otevírání "%1" @@ -12811,7 +13252,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Otáčející se vinylová gramodeska @@ -12993,7 +13434,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Obrázek obalu @@ -13183,243 +13624,243 @@ may introduce a 'pumping' effect and/or distortion. Když je zapnuto, drží zesílení ekvalizéru hloubek na nule. - + Displays the tempo of the loaded track in BPM (beats per minute). Ukáže tempo nahrané skladby v počtu úderů za minutu - rázů za minutu (RZM - „M.M.“: Mälzelův metronom). - + Tempo Tempo - + Key The musical key of a track Tónina - + BPM Tap Klepání tempa (MM) - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Když je poklepáno opakovaně, upraví počet úderů za minutu - rázů za minutu (RZM - „M.M.“: Mälzelův metronom), aby odpovídal vyklepanému (zaťukanému) počtu úderů za minutu. - + Adjust BPM Down Snížit počet MM - + When tapped, adjusts the average BPM down by a small amount. Když je poklepáno, zmenší lehce průměrný počet úderů za minutu - rázů za minutu (RZM - „M.M.“: Mälzelův metronom). - + Adjust BPM Up Zvýšit počet MM - + When tapped, adjusts the average BPM up by a small amount. Když je poklepáno, zvýší lehce průměrný počet úderů za minutu - rázů za minutu (RZM - „M.M.“: Mälzelův metronom). - + Adjust Beats Earlier Upravit údery na dříve - + When tapped, moves the beatgrid left by a small amount. Když je poklepáno, posune rytmickou mřížku lehce doleva. - + Adjust Beats Later Upravit údery na později - + When tapped, moves the beatgrid right by a small amount. Když je poklepáno, posune rytmickou mřížku lehce doprava. - + Tempo and BPM Tap Klepání tempa a MM - + Show/hide the spinning vinyl section. Ukázat/Skrýt oblast s otáčející se vinylovou gramodeskou. - + Keylock Uzamčení tóniny - + Toggling keylock during playback may result in a momentary audio glitch. Zapnutí nebo vypnutí (přepínání) uzamčení tóniny (opravy výšky tónu) během přehrávání může vést ke krátkodobým výpadkům - poruchám hladkého chodu. - + Toggle visibility of Loop Controls Přepnout viditelnost ovládání smyčky - + Toggle visibility of Beatjump Controls Přepnout viditelnost ovládání skoku o daný počet dob - + Toggle visibility of Rate Control Přepnout viditelnost ovládání rychlosti - + Toggle visibility of Key Controls Přepnout viditelnost ovládání smyčky - + (while previewing) (při náhledu) - + Places a cue point at the current position on the waveform. Umístí bod značky do průběhové křivky v nynější poloze. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Zastaví skladbu na bodu značky, NEBO jít na bod značky a přehrát po uvolnění (režim BZP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Umístí bod značky (režim Pioneer/Mixxx/Numark), umístit a přehrát po uvolnění (režim BZP) NEBO náhled (předposlech) od tohoto bodu (režim Denon). - + Is latching the playing state. Uzavírá stav přehrávání. - + Seeks the track to the cue point and stops. Skočí ve skladbě na bod značky a zastaví. - + Play Přehrát - + Plays track from the cue point. Přehrává skladbu od bodu značky. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Odešle zvuk vybraného kanálu do výstupu sluchátek vybraného v Nastavení → Zvuk. - + (This skin should be updated to use Sync Lock!) (Tento vzhled by se měl aktualizovat, aby se používal zámek seřízení!) - + Enable Sync Lock Povolit zámek seřízení - + Tap to sync the tempo to other playing tracks or the sync leader. Klepněte pro seřízení tempa k jiné hrající skladbě nebo k vedoucímu seřízení. - + Enable Sync Leader Povolit vedoucí seřízení - + When enabled, this device will serve as the sync leader for all other decks. Když je povoleno, toto zařízení bude sloužit jako vedoucí seřízení pro všechny ostatní přehrávače. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. To je důležité, když je dynamické tempo skladby načteno do synchronizačního vedoucího přehrávače. V takovém případě ostatní synchronizovaná zařízení převezmou měnící se tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Změní rychlost přehrávání skladby (ovlivní jak tempo tak také výšku tónu). Pokud je povoleno uzamčení tóniny, je ovlivněno pouze tempo. - + Tempo Range Display Zobrazení rozsahu tempa - + Displays the current range of the tempo slider. Zobrazuje nynější rozsah posuvníku tempa. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Zruší vysunutí, když není načtena žádná skladba, tj. znovu nahraje skladbu, která byla vysunuta jako poslední (z libovolného přehrávače). - + Delete selected hotcue. Vybráno smazání rychlého klíče. - + Track Comment Poznámka ke skladbě - + Displays the comment tag of the loaded track. Ukáže značku poznámky nahrané skladby. - + Opens separate artwork viewer. Otevře samostatný prohlížeč obalů. - + Effect Chain Preset Settings Nastavení přednastavení řetězce efektu - + Show the effect chain settings menu for this unit. Zobrazit nabídku nastavení řetězce efektu pro tuto jednotku. - + Select and configure a hardware device for this input Vybrat a nakonfigurovat hardware zařízení pro tento vstup - + Recording Duration Doba trvání nahrávání @@ -13642,949 +14083,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier Posunout značky dříve - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Posunout značky zavedené ze Serato nebo Rekordboxu, pokud jsou trochu mimo čas. - + Left click: shift 10 milliseconds earlier Levé tlačítko myši: posunout o 10 milisekund dříve - + Right click: shift 1 millisecond earlier Pravé tlačítko myši: posunout o 1 milisekundu dříve - + Shift cues later Posunout značky později - + Left click: shift 10 milliseconds later Levé tlačítko myši: posunout o 10 milisekund pozdějí - + Right click: shift 1 millisecond later Pravé tlačítko myši: posunout o 1 milisekundu pozdějí - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. Ztlumí zvukový signál vybraného kanálu v hlavním výstupu. - + Main mix enable Povolit hlavní míchání - + Hold or short click for latching to mix this input into the main output. Podržením nebo krátkým klepnutím zablokujete tento vstup smícháním s hlavním výstupem. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Ukáže dobu trvání běžícího nahrávání. - + Auto DJ is active Auto DJ je zapnutý - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. Rychlá značka - Skladba bude hledat k nejbližšímu bodu předchozí rychlé značky - + Sets the track Loop-In Marker to the current play position. Nastaví značku začátku smyčky skladby na nynější polohu přehrávání. - + Press and hold to move Loop-In Marker. Stisknout a podržet pro přesunutí značky začátku smyčky. - + Jump to Loop-In Marker. Skočit na značku začátku smyčky. - + Sets the track Loop-Out Marker to the current play position. Nastaví značku konce smyčky skladby na nynější polohu přehrávání. - + Press and hold to move Loop-Out Marker. Stisknout a podržet pro přesunutí značky konce smyčky. - + Jump to Loop-Out Marker. Skočit na značku konce smyčky. - + If the track has no beats the unit is seconds. - + Beatloop Size Velikost smyčkování dob - + Select the size of the loop in beats to set with the Beatloop button. Vybrat velikost smyčky v dobách pro nastavení pomocí tlačítka pro smyčkování dob. - + Changing this resizes the loop if the loop already matches this size. Pokud změníte, změní se velikost smyčky, pokud smyčka již odpovídá této velikosti. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Zmenšete velikost stávajícího smyčkování dob na polovinu nebo zmenšete velikost další sady smyčkování dob na polovinu pomocí tlačítka pro smyčkování dob. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Zdvojnásobte velikost stávajícího smyčkování dob nebo zdvojnásobte velikost další sady smyčkování dob pomocí tlačítka pro smyčkování dob. - + Start a loop over the set number of beats. Začít smyčku nad stanoveným počtem dob. - + Temporarily enable a rolling loop over the set number of beats. Povolit přechodně běžící smyčku nad stanoveným počtem dob. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size Velikost skoku o daný počet dob/posunu smyčky - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Zvolit počet dob, o které se má skočit, nebo posunout smyčku pomocí tlačítek pro skoku o daný počet dob vpřed/skok na dobu vzad. - + Beatjump Forward Skok o daný počet dob vpřed - + Jump forward by the set number of beats. Skočit dopředu o stanovený počet dob. - + Move the loop forward by the set number of beats. Posunout smyčku dopředu o stanovený počet dob. - + Jump forward by 1 beat. Skočit o 1 dobu dopředu. - + Move the loop forward by 1 beat. Posunout smyčku o 1 dobu dopředu. - + Beatjump Backward Skok o daný počet dob vzad - + Jump backward by the set number of beats. Skočit dozadu o stanovený počet dob. - + Move the loop backward by the set number of beats. Posunout smyčku dozadu o stanovený počet dob. - + Jump backward by 1 beat. Skočit o 1 dobu dozadu. - + Move the loop backward by 1 beat. Posunout smyčku o 1 dobu dozadu. - + Reloop Smyčkovat znovu - + If the loop is ahead of the current position, looping will start when the loop is reached. Pokud je smyčka před nynější polohou, smyčkování začne při dosažení smyčky. - + Works only if Loop-In and Loop-Out Marker are set. Pracuje, jen když jsou nastaveny značky začátku a konce smyčky. - + Enable loop, jump to Loop-In Marker, and stop playback. Povolit smyčku, skok na značku začátku smyčky a zastavení přehrávání. - + Displays the elapsed and/or remaining time of the track loaded. Ukáže uplynulý a/nebo zbývající čas nahrané skladby. - + Click to toggle between time elapsed/remaining time/both. Klepněte pro přepnutí mezi uplynulým/zbývajícím časem/oběma. - + Hint: Change the time format in Preferences -> Decks. Rada: Změňte časový formát v Nastavení → Přehrávače. - + Show/hide intro & outro markers and associated buttons. Ukázat/Skrýt značky úvodu a závěru a přidružená tlačítka. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Značka začátku úvofu - - - - + + + + If marker is set, jumps to the marker. Pokud je bod značky nastaven, skočí na značku. - - - - + + + + If marker is not set, sets the marker to the current play position. Pokud bod značky stanoven není, nastaví bod značky v nynější poloze přehrávání. - - - - + + + + If marker is set, clears the marker. Pokud je bod značky nastaven, vymaže značku. - + Intro End Marker Značka konce úvodu - + Outro Start Marker Značka začátku závěru - + Outro End Marker Značka konce závěru - + Mix Míchat - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Upravit smíchání nezpracovaného (vstupního) signálu se zpracovaným (výstupním) signálem efektové jednotky - + D/W mode: Crossfade between dry and wet Režim D/W: Prolínání mezi nezpracovaným a zpracovaným - + D+W mode: Add wet to dry Režim D+W: Přidat nezpracovaný a zpracovaný - + Mix Mode Režim míchání - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Upravit, jak je nezpracovaný (vstupní) signál smíchán se zpracovaným (výstupním) signálem efektové jednotky - + 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. Režim Na zkoušku/naostro (křížené čáry): Knoflík Mix mezi nezpracovaným a zpracovaným Použijte toto ke změně zvuku stopy pomocí EQ a filtrových efektů. - + 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. Režim Na zkoušku/naostro (ploché nezpracované čáry): Knoflík Mix přidá zpracovaný do nezpracovaného Použijte toto ke změně efektového (zpracovaného) signálu pomocí EQ a filtrových efektů. - + Route the main mix through this effect unit. Vést hlavní míchání skrze tuto efektovou jednotku. - + Route the left crossfader bus through this effect unit. Vést sběrnici levého prolínače skrze tuto efektovou jednotku. - + Route the right crossfader bus through this effect unit. Vést sběrnici pravého prolínače skrze tuto efektovou jednotku. - + Right side active: parameter moves with right half of Meta Knob turn Pravá strana činná: parametr se pohybuje pomocí pravé poloviny otočení otočného řízení. - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Nabídka nastavení vzhledu - + Show/hide skin settings menu Ukázat/Skrýt nabídku pro nastavení vzhledu - + Save Sampler Bank Uložit banku vzorkovače - + Save the collection of samples loaded in the samplers. Uložit sbírku vzorků nahranou do vzorkovačů. - + Load Sampler Bank Nahrát banku vzorkovače - + Load a previously saved collection of samples into the samplers. Nahrát předtím uloženou sbírku vzorků do vzorkovačů. - + Show Effect Parameters Ukázat parametry efektů - + Enable Effect Povolit efekt - + Meta Knob Link Spojení metaknoflíku - + Set how this parameter is linked to the effect's Meta Knob. Nastavit, jak je tento parametr spojen s metaknoflíkem efektu. - + Meta Knob Link Inversion Obrácení spojení metaknoflíku - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Obrátí směr, kterým se tento parametr pohybuje, když se točí metaknoflíkem efektu. - + Super Knob Superknoflík - + Next Chain Další řetězec - + Previous Chain Předchozí řetězec - + Next/Previous Chain Další/Předchozí řetězec - + Clear Smazat - + Clear the current effect. Vyprázdnit nynější efekt. - + Toggle Přepnout - + Toggle the current effect. Přepnout nynější efekt. - + Next Další - + Clear Unit Vyprázdnit jednotku - + Clear effect unit. Vyprázdnit efektovou jednotku. - + Show/hide parameters for effects in this unit. Ukázat/Skrýt parametry pro efekty v této jednotce. - + Toggle Unit Přepnout jednotku - + Enable or disable this whole effect unit. Zapnout nebo vypnout celou tuto efektovou jednotku. - + Controls the Meta Knob of all effects in this unit together. Ovládá otočné řízení všech efektů v této jednotce společně. - + Load next effect chain preset into this effect unit. Nahrát další přednastavení efektového řetězce do této efektové jednotky. - + Load previous effect chain preset into this effect unit. Nahrát předchozí přednastavení efektového řetězce do této efektové jednotky. - + Load next or previous effect chain preset into this effect unit. Nahrát další nebo předchozí přednastavení efektového řetězce do této efektové jednotky. - - - - - - - - - + + + + + + + + + Assign Effect Unit Přiřadit efektovou jednotku - + Assign this effect unit to the channel output. Přiřadit tuto efektovou jednotku výstupu kanálu. - + Route the headphone channel through this effect unit. Vést kanál sluchátek skrze tuto efektovou jednotku. - + Route this deck through the indicated effect unit. Vést tento přehrávač skrze označenou efektovou jednotku. - + Route this sampler through the indicated effect unit. Vést tento vzorkovač skrze označenou efektovou jednotku. - + Route this microphone through the indicated effect unit. Vést tento mikrofon skrze označenou efektovou jednotku. - + Route this auxiliary input through the indicated effect unit. Vést tento pomocný vstup skrze označenou efektovou jednotku. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. Efektová jednotka také musí být přiřazena přehrávači nebo jinému zdroji zvuku, aby byl efekt slyšitelný. - + Switch to the 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 the next or previous effect. Přepnout na další nebo předchozí efekt. - + Meta Knob Metaknoflík - + Controls linked parameters of this effect Řídí spojené parametry tohoto efektu. - + Effect Focus Button Tlačítko pro zaměření efektu - + Focuses this effect. Zaměří tento efekt. - + Unfocuses this effect. Zruší zaměření efektu. - + Refer to the web page on the Mixxx wiki for your controller for more information. Podrobnější informace k ovladači najdete na internetové stránce Mixxxu (wikipedie). - + Effect Parameter Parametr efektu - + Adjusts a parameter of the effect. Upraví parametr efektu. - + Inactive: parameter not linked Nečinné: parametr není spojen - + Active: parameter moves with Meta Knob Činné: parametr se pohybuje pomocí otočného řízení - + Left side active: parameter moves with left half of Meta Knob turn Levá strana činná: parametr se pohybuje po polovině otočení otočného řízení vlevo - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Levá a pravá strana činná: parametr se pohybuje v celé šířce pásma pomocí jedné poloviny otočení otočného řízení a zpět pomocí druhé - - + + Equalizer Parameter Kill Potlačení parametru ekvalizéru - - + + Holds the gain of the EQ to zero while active. Když je zapnuto, drží zesílení ekvalizéru na nule. - + Quick Effect Super Knob Superknoflík pro rychlý efekt - + Quick Effect Super Knob (control linked effect parameters). Superknoflík (řízení propojených parametrů efektů). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Rada: Změňte výchozí režim rychlého efektu v Nastavení → Ekvalizéry. - + Equalizer Parameter Parametr ekvalizéru - + Adjusts the gain of the EQ filter. Upraví zesílení filtru ekvalizéru. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Rada: Změňte výchozí režim ekvalizéru v Nastavení → Ekvalizéry. - - + + Adjust Beatgrid Upravit rytmickou mřížku - + Adjust beatgrid so the closest beat is aligned with the current play position. Upravit rytmickou mřížku tak, aby byla nejbližší doba zarovnána s nynější polohou ukazatele přehrávání. - - + + Adjust beatgrid to match another playing deck. Upravit rytmickou mřížku tak, aby byla zarovnána s jiným hrajícím přehrávačem. - + If quantize is enabled, snaps to the nearest beat. Pokud je povolena kvantizace, umístí se na nejbližší dobu. - + Quantize Kvantizovat - + Toggles quantization. Přepnout kvantizaci. - + Loops and cues snap to the nearest beat when quantization is enabled. Smyčky a značky jsou postaveny na nejbližší dobu, když je povolena kvantizace. - + Reverse Obrátit - + Reverses track playback during regular playback. Obrátí přehrávání skladby během běžného přehrávání. - + Puts a track into reverse while being held (Censor). Obrátí přehrávání. Přehrává skladbu během držení pozpátku (cenzor). - + Playback continues where the track would have been if it had not been temporarily reversed. Přehrávání pokračuje tam, kde by skladba byla, pokud by nebyla přechodně přehrávána pozpátku. - - - + + + Play/Pause Přehrát/Pozastavit - + Jumps to the beginning of the track. Skočí na začátek skladby. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Seřídí tempo (RZM - údery/rázy za minutu - „M.M.“: Mälzelův metronom) a fázi s jiným přehrávačem, pokud je hodnota RZM rozpoznána u obou. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Seřídí tempo (RZM - údery/rázy za minutu - „M.M.“: Mälzelův metronom) s tempem skladby jiného přehrávače, pokud je hodnota RZM rozpoznána u obou. - + Sync and Reset Key Seřídit a nastavit znovu tóninu - + Increases the pitch by one semitone. Zvýší výšku tónu o jeden půltón. - + Decreases the pitch by one semitone. Sníží výšku tónu o jeden půltón. - + Enable Vinyl Control Povolit ovládání vinylem - + When disabled, the track is controlled by Mixxx playback controls. Když je zakázáno, skladba je ovládána přehrávacími ovládacími prvky Mixxxu. - + When enabled, the track responds to external vinyl control. Když je povoleno, skladba odpovídá na vnější ovládání vinylovou gramodeskou. - + Enable Passthrough Povolit předání dál - + Indicates that the audio buffer is too small to do all audio processing. Ukazuje, že vyrovnávací paměť je na zpracování všeho zvukového signálu příliš malá. - + Displays cover artwork of the loaded track. Ukáže obrázek obalu nahrané skladby. - + Displays options for editing cover artwork. Ukáže volby pro upravování obrázků obalů. - + Star Rating Hodnocení hvězdičkami - + Assign ratings to individual tracks by clicking the stars. Přiřaďte hodnocení jednotlivým skladbám klepnutím na hvězdičky. @@ -14719,33 +15195,33 @@ Použijte toto ke změně efektového (zpracovaného) signálu pomocí EQ a filt Síla tlumení mikrofonu/hlasu - + Prevents the pitch from changing when the rate changes. Zabrání tomu, aby se změnila výška tónu, když se změní rychlost přehrávání. - + Changes the number of hotcue buttons displayed in the deck Změní počet tlačítek rychlých značek v přehrávači - + Starts playing from the beginning of the track. Začne přehrávání od začátku skladby. - + Jumps to the beginning of the track and stops. Skočí na začátek skladby a zastaví. - - + + Plays or pauses the track. Přehraje, nebo pozastaví skladbu. - + (while playing) (při přehrávání) @@ -14765,215 +15241,215 @@ Použijte toto ke změně efektového (zpracovaného) signálu pomocí EQ a filt Měřič hlasitosti pravého kanálu hlavního výstupu - + (while stopped) (při zastavení) - + Cue Značka - + Headphone Sluchátka - + Mute Ztlumit - + Old Synchronize Staré seřizování - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Seřídí s prvním přehrávačem (v číselném pořadí), který přehrává nějakou skladbu a má MM. - + If no deck is playing, syncs to the first deck that has a BPM. Pokud nepřehrává žádný přehrávač, seřídí s prvním přehrávačem, který má MM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Podržte nejméně na sekundu pro zapnutí zámku seřizování pro tento přehrávač. - + 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. Přehrávače s uzamknutým seřizováním budou všechny přehrávat se stejným tempem, a přehrávače, které mají zapnutu i kvantizaci, mají vždy své doby srovnány. - + Resets the key to the original track key. Nastaví tóninu znovu na původní tóninu skladby. - + Speed Control Řízení rychlosti - - - + + + Changes the track pitch independent of the tempo. Změní výšku tónu skladby nezávisle na tempu. - + Increases the pitch by 10 cents. Zvýší výšku tónu o 10 centů. - + Decreases the pitch by 10 cents. Sníží výšku tónu o 10 centů. - + Pitch Adjust Upravení výšky tónu - + Adjust the pitch in addition to the speed slider pitch. Změní výšku tónu dodatečně ke změně výšky tónu regulátoru rychlosti. - + Opens a menu to clear hotcues or edit their labels and colors. Otevře nabídku pro vyprázdnění rychlých značek nebo upravení jejich štítků a barev. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Nahrát míchání - + Toggle mix recording. Přepnout nahrávání míchání. - + Enable Live Broadcasting Povolit živé vysílání - + Stream your mix over the Internet. Vysílejte svoje míchání přes internet. - + Provides visual feedback for Live Broadcasting status: Poskytuje viditelou zpětnou vazbu pro stav živého přenosu: - + disabled, connecting, connected, failure. vypnuto, spojuje se, spojeno, selhalo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Když je zapnuto, mechanika přímo přehrává přícházející zvukový signál na vstupu vinylové gramodesky. - + Playback will resume where the track would have been if it had not entered the loop. Přehrávání bude pokračovat tam, kde by skladba byla, pokud by nebyla přehrávána ve smyčce. - + Loop Exit Ukončit smyčku - + Turns the current loop off. Vypne nynější smyčku. - + Slip Mode Režim klouzání - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Když je zapnuto, přehrávání pokračuje během smyčky, obráceného přehrávání (zpětného chodu), vytváření zvuků ručním otáčením gramofonové desky atd. ztlumeno na pozadí. - + Once disabled, the audible playback will resume where the track would have been. Jakmile je zakázáno, slyšitelné přehrávání pokračuje tam, kde by skladba byla. - + Track Key The musical key of a track Tónina skladby - + Displays the musical key of the loaded track. Ukáže tóninu nahrané skladby. - + Clock Hodiny - + Displays the current time. Zobrazí aktuální čas. - + Audio Latency Usage Meter Měřič užití prodlevy zvuku - + Displays the fraction of latency used for audio processing. Ukáže kousek prodlevy používaný pro zpracování zvuku. - + A high value indicates that audible glitches are likely. Vysoká hodnota znamená, že jsou pravděpodobné slyšitelné poruchy. - + Do not enable keylock, effects or additional decks in this situation. Za této situace nepovolujte uzamčení tóniny, efekty nebo dodatečné přehrávače. - + Audio Latency Overload Indicator Ukazatel přetížení prodlevy zvuku @@ -15013,259 +15489,259 @@ Použijte toto ke změně efektového (zpracovaného) signálu pomocí EQ a filt Zapněte ovládání vinylovou gramodeskou v hlavní nabídce → Volby. - + Displays the current musical key of the loaded track after pitch shifting. Ukáže nynější tóninu nahrané skladby po změně (posunutí) výšky tónu. - + Fast Rewind Rychlé přetáčení zpět - + Fast rewind through the track. Rychlé přetáčení zpět skrze skladbu. - + Fast Forward Rychlé přetáčení vpřed - + Fast forward through the track. Rychlé přetáčení vpřed skrze skladbu. - + Jumps to the end of the track. Skočí na konec skladby. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Nastaví výšku tónu na tóninu, která umožní souzvučně znějící přechod z jiné skladby. Vyžaduje, aby byla tónina rozpoznána v obou zúčastněných přehrávacích mechanikách. - - - + + + Pitch Control Ovládání výšky tónu - + Pitch Rate Rychlost přehrávání - + Displays the current playback rate of the track. Ukáže nynější rychlost přehrávání skladby. - + Repeat Opakovat - + When active the track will repeat if you go past the end or reverse before the start. Když je zapnuto, skladba bude opakována, když půjdete za konec nebo budete přehrávat zpět až před začátek. - + Eject Vysunout - + Ejects track from the player. Vysune skladbu z přehrávače. - + Hotcue Rychlá značka - + If hotcue is set, jumps to the hotcue. Pokud je stanoven bod rychlé značky, skočí na rychlou značku. - + If hotcue is not set, sets the hotcue to the current play position. Pokud bod rychlé značky stanoven není, nastaví bod rychlé značky v nynější poloze přehrávání. - + Vinyl Control Mode Režim ovládání vinylovou gramodeskou - + Absolute mode - track position equals needle position and speed. Absolutní režim - poloha ve skladbě odpovídá poloze a rychlosti snímací jehly. - + Relative mode - track speed equals needle speed regardless of needle position. Relativní režim – rychlost skladby odpovídá rychlosti jehly bez ohledu na polohu snímací jehly. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Stálý režim - rychlost skladby odpovídá poslední známé stálé rychlosti jehly bez ohledu na vstup snímací jehly. - + Vinyl Status Stav vinylové gramodesky - + Provides visual feedback for vinyl control status: Poskytuje viditelou zpětnou vazbu pro stav ovládání vinylovou gramodeskou: - + Green for control enabled. Zelená, když je zapnuto ovládání. - + Blinking yellow for when the needle reaches the end of the record. Blikající žlutá, když snímací jehla dosáhne konce (gramofonové) desky. - + Loop-In Marker Značka začátku smyčky - + Loop-Out Marker Značka konce smyčky - + Loop Halve Zkrácení smyčky na polovinu - + Halves the current loop's length by moving the end marker. Zkrátí délku nynější smyčky na polovinu posunutím značky konce. - + Deck immediately loops if past the new endpoint. Přehrávač začne okamžitě smyčkovat, jestliže je za novým bodem konce. - + Loop Double Zdvojení smyčky - + Doubles the current loop's length by moving the end marker. Zdvojí délku nynější smyčky na polovinu posunutím značky konce. - + Beatloop Smyčkování dob - + Toggles the current loop on or off. Zapne/Vypne nynější smyčku. - + Works only if Loop-In and Loop-Out marker are set. Pracuje, jen když jsou nastaveny značky začátku a konce smyčky. - + Vinyl Cueing Mode Režim značení vinylem - + Determines how cue points are treated in vinyl control Relative mode: Určuje, jak se zachází s body značek v relativním režimu ovládání vinylovou gramodeskou: - + Off - Cue points ignored. Vypnuto - Body značek se přehlíží. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Jedna značka - Skladba skočí na tento bod značky, když je snímací jehla položena za bod značky. - + Track Time Čas skladby - + Track Duration Doba trvání skladby - + Displays the duration of the loaded track. Ukáže délku nahrané skladby. - + Information is loaded from the track's metadata tags. Údaje jsou nahrány z popisných dat skladby. - + Track Artist Umělec skladby - + Displays the artist of the loaded track. Ukáže umělce nahrané skladby. - + Track Title Název skladby - + Displays the title of the loaded track. Ukáže název nahrané skladby. - + Track Album Album - + Displays the album name of the loaded track. Ukáže název alba nahrané skladby. - + Track Artist/Title Umělec/Skladba - + Displays the artist and title of the loaded track. Ukáže umělce a název nahrané skladby. @@ -15496,47 +15972,75 @@ Tento krok nelze vrátit zpět! WCueMenuPopup - + Cue number Číslo značky - + Cue position Poloha značky - + Edit cue label Upravit popisek značky - + Label... Popisek... - + Delete this cue Smazat tuto značku - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. - - Left-click: Use the old size or the current beatloop size as the loop size + + Turn this cue into a saved backward jump (one shot loop). - - Right-click: Use the current play position as loop end if it is after the cue + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 Rychlá značka #%1 @@ -15661,323 +16165,363 @@ Tento krok nelze vrátit zpět! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Vytvořit &nový seznam skladeb - + Create a new playlist Vytvořit nový seznam skladeb - + Ctrl+n Ctrl+N - + Create New &Crate Vytvořit novou &přepravku - + Create a new crate Vytvořit novou přepravku - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Pohled - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Nebude pravděpodobně podporován všemi vzhledy. - + Show Skin Settings Menu Ukázat nabídku nastavení vzhledu - + Show the Skin Settings Menu of the currently selected Skin Ukázat nabídku nastavení vzhledu nyní vybraného vzhledu - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Ukázat mikrofony - + Show the microphone section of the Mixxx interface. Ukázat oblast s mikrofonem rozhraní Mixxxu. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Ukázat ovládání vinylem - + Show the vinyl control section of the Mixxx interface. Ukázat oblast ovládání vinylovou gramodeskou v rozhraní Mixxxu. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Ukázat přehrávač náhledu - + Show the preview deck in the Mixxx interface. Ukázat oblast s přehrávač náhledu v rozhraní Mixxxu. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Ukázat obal - + Show cover art in the Mixxx interface. Ukázat obal v rozhraní Mixxxu. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Zvětšit okno knihovny - + 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. - + Space Menubar|View|Maximize Library Mezerník - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen Na &celou obrazovku - + Display Mixxx using the full screen Zobrazit Mixxx v režimu celé obrazovky - + &Options &Volby - + &Vinyl Control Ovládání &vinylem - + Use timecoded vinyls on external turntables to control Mixxx Použít vinylové gramodesky s časovým kódem k ovládání programu Mixxx vnějšími přehrávači (gramofony) - + Enable Vinyl Control &%1 Povolit ovládání vinylem &%1 - + &Record Mix Nah&rát míchání - + Record your mix to a file Nahrát míchání do souboru - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting &Povolit živé vysílání - + Stream your mixes to a shoutcast or icecast server Vysílat vaše míchání na server shoutcast nebo icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Povolit &klávesové zkratky - + Toggles keyboard shortcuts on or off Zapnout/Vypnout klávesové zkratky - + Ctrl+` Ctrl+` - + &Preferences &Nastavení - + Change Mixxx settings (e.g. playback, MIDI, controls) Změnit nastavení Mixxxu (např. přehrávání, MIDI, ovládací prvky) - + &Developer &Vývojář - + &Reload Skin Nahrát vzhled &znovu - + Reload the skin Nahrát vzhled znovu - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Vývojářské &nástroje - + Opens the developer tools dialog Otevře dialog vývojářských nástrojů - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Statistiky: &Pokusný kýbl - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Zapne pokusný režim. Sbírá statistiky do POKUSNÉHO sledovacího kýblu. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Statistiky: &Základní kýbl - + Enables base mode. Collects stats in the BASE tracking bucket. Zapne základní režim. Sbírá statistiky do ZÁKLADNÍHO sledovacího kýblu. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled &Ladění povoleno - + Enables the debugger during skin parsing Zapne ladiče během zpracování vzhledu - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Nápověda - + Show Keywheel menu title Zobrazit kolo klíčů @@ -15994,74 +16538,74 @@ Tento krok nelze vrátit zpět! - + Show keywheel tooltip text Zobrazit kolo klíčů - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Podpora &společenství - + Get help with Mixxx Dostat nápovědu k Mixxxu - + &User Manual &Uživatelská příručka - + Read the Mixxx user manual. Číst uživatelskou příručku k Mixxxu. - + &Keyboard Shortcuts &Klávesové zkratky - + Speed up your workflow with keyboard shortcuts. Zrychlit pracovní postup s klávesovými zkratkami - + &Settings directory Adresář &nastavení - + Open the Mixxx user settings directory. Otevřít adresář uživatelských nastavení Mixxx. - + &Translate This Application &Překlad - + Help translate this application into your language. Pomozte přeložit tento program do svého jazyka. - + &About &O programu - + About the application O tomto programu @@ -16069,25 +16613,25 @@ Tento krok nelze vrátit zpět! WOverview - + Passthrough Propustit skrz - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Připraven k přehrávání, provádí se rozbor... - - + + Loading track... Text on waveform overview when file is cached from source Nahrává se skladba... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Dokončuje se... @@ -16096,25 +16640,13 @@ Tento krok nelze vrátit zpět! WSearchLineEdit - - Clear input - Clear the search bar input field - Vyčistit vstup - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Hledat - + Clear input Vyčistit vstup @@ -16125,93 +16657,87 @@ Tento krok nelze vrátit zpět! Hledat... - + Clear the search bar input field Vyprázdnit zadávací pole vyhledávacího řádku - - Enter a string to search for - Zadejte řetězec k vyhledání + + Return + Návrat - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Použít operátory jako je MM:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Na další informace se podívejte v Uživatelská příručka → Knihovna Mixxxu + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Klávesová zkratka + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Zaměření + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts - Klávesové zkratky + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Návrat + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Spusťte hledání před vypršením časového limitu zadávání hledání nebo přeskočte na zobrazení skladeb + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+mezerník - + Toggle search history Shows/hides the search history entries Přepnout historii vyhledávání - + Delete or Backspace Delete nebo Backspace - - Delete query from history - Odstranit dotaz z historie - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Ukončit hledání + + Delete query from history + Odstranit dotaz z historie @@ -16295,625 +16821,640 @@ Tento krok nelze vrátit zpět! WTrackMenu - + Load to Nahrát do - + Deck Přehrávač - + Sampler Vzorkovač - + Add to Playlist Přidat do seznamu skladeb - + Crates Přepravky - + Metadata Popisná data - + Update external collections Aktualizovat vnější sbírky - + Cover Art Obrázek obalu - + Adjust BPM Upravit MM - + Select Color Vybrat barvu - - + + Analyze Analýza - - + + Delete Track Files Smazat soubory skladeb - + 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) - + Preview Deck Náhled přehrávače - + Remove Odstranit - + Remove from Playlist Odstranit ze seznamu skladeb - + Remove from Crate Odstranit z přepravky - + Hide from Library Skrýt z knihovny - + Unhide from Library Ukázat v knihovně - + Purge from Library Odstranit z knihovny - + Move Track File(s) to Trash Přesunout soubory skladeb do koše - + Delete Files from Disk Smazat soubory z disku - + Properties Vlastnosti - + Open in File Browser Otevřít v prohlížeči souborů - + Select in Library Vybrat v knihovně - + Import From File Tags Nahrát ze značek souboru - + Import From MusicBrainz Nahrát z MusicBrainz - + Export To File Tags Uložit do značek souboru - + BPM and Beatgrid MM a rytmická mřížka - + Play Count Počet přehrání - + Rating Hodnocení - + Cue Point Nastavit bod označení - - + + Hotcues Rychlé značky - + Intro Otevírající skladba - + Outro Uzavírající skladba - + Key Tónina - + ReplayGain Vyrovnání hlasitosti - + Waveform Průběhová křivka - + Comment Poznámka - + All Vše - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Zamknout MM - + Unlock BPM Odemknout MM - + Double BPM Zdvojit MM - + Halve BPM Snížit MM na polovinu - + 2/3 BPM 2/3 MM - + 3/4 BPM 3/4 MM - + 4/3 BPM 4/3 MM - + 3/2 BPM 3/2 MM - + Shift Beatgrid Half Beat - + Reanalyze Znovu analyzovat - + Reanalyze (constant BPM) Znovu analyzovat (konstantu BPM) - + Reanalyze (variable BPM) Znovu analyzovat (proměnnou BPM) - + Update ReplayGain from Deck Gain Aktualizovat vyrovnávání hlasitosti ze zesílení přehrávače - + Deck %1 Přehrávač %1 - + Importing metadata of %n track(s) from file tags Zavádí se popisná data %n skladby ze značek souborůZavádí se popisná data %n skladeb ze značek souborůZavádí se popisná data %n skladeb ze značek souborůZavádí se popisná data %n skladeb ze značek souborů - + Marking metadata of %n track(s) to be exported into file tags Označují se popisná data %n skladby k uložení k exportu do značek souborůOznačují se popisná data %n skladeb k uložení do značek souborůOznačují se popisná data %n skladeb k uložení do značek souborůOznačují se popisná data %n skladeb k uložení do značek souborů - - + + 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 Přidat do nové přepravky - + Scaling BPM of %n track(s) Změna velikosti BPM %n skladbyZměna velikosti BPM %n skladebZměna velikosti BPM %n skladebZměna velikosti MM %n skladeb - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Zamknout BPM %n skladbyZamknout BPM %n skladebZamknout BPM %n skladebZamknout MM %n skladeb - + Unlocking BPM of %n track(s) Odemknout BPM %n skladbyOdemknout BPM %n skladebOdemknout BPM %n skladebOdemknout MM %n skladeb - + Setting rating of %n track(s) - + Setting color of %n track(s) Nastavení barvy %n skladbyNastavení barvy %n skladebNastavení barvy %n skladebNastavení barvy %n skladeb - + Resetting play count of %n track(s) Vynulování počtu přehrání %n skladbyVynulování počtu přehrání %n skladebVynulování počtu přehrání %n skladebVynulování počtu přehrání %n skladeb - + Resetting beats of %n track(s) Vynulování dob %n skladbyVynulování dob %n skladebVynulování dob %n skladebVynulování dob %n skladeb - + Clearing rating of %n track(s) Vymazání hodnocení %n skladbyVymazání hodnocení %n skladebVymazání hodnocení %n skladebVymazání hodnocení %n skladeb - + Clearing comment of %n track(s) Vymazání poznámky %n skladbyVymazání poznámky %n skladebVymazání poznámky %n skladebVymazání poznámky %n skladeb - + Removing main cue from %n track(s) Odstraňování hlavní značky %n skladbyOdstraňování hlavní značky %n skladebOdstraňování hlavní značky %n skladebOdstraňování hlavní značky %n skladeb - + Removing outro cue from %n track(s) Odstraňování značky závěru %n skladbyOdstraňování značky závěru %n skladebOdstraňování značky závěru %n skladebOdstraňování značky závěru %n skladeb - + Removing intro cue from %n track(s) Odstraňování značky úvodu %n skladbyOdstraňování značky úvodu %n skladebOdstraňování značky úvodu %n skladebOdstraňování značky úvodu %n skladeb - + Removing loop cues from %n track(s) Odstraňování značky smyčky %n skladbyOdstraňování značky smyčky %n skladebOdstraňování značky smyčky %n skladebOdstraňování značky smyčky %n skladeb - + Removing hot cues from %n track(s) Odstraňování rychlé značky %n skladbyOdstraňování rychlé značky %n skladebOdstraňování rychlé značky %n skladebOdstraňování rychlé značky %n skladeb - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) Vynulování značek %n skladbyVynulování značek %n skladebVynulování značek %n skladebVynulování značek %n skladeb - + Resetting replay gain of %n track(s) Vynulování vyrovnání hlasitosti %n skladbyVynulování vyrovnání hlasitosti %n skladebVynulování vyrovnání hlasitosti %n skladebVynulování vyrovnání hlasitosti %n skladeb - + Resetting waveform of %n track(s) Vynulování průběhové křivky %n skladbyVynulování průběhové křivky %n skladebVynulování průběhové křivky %n skladebVynulování průběhové křivky %n skladeb - + Resetting all performance metadata of %n track(s) Vynulování všech popisných dat výkonu %n skladbyVynulování všech popisných dat výkonu %n skladebVynulování všech popisných dat výkonu %n skladebVynulování všech popisných dat výkonu %n skladeb - + Move these files to the trash bin? - + Permanently delete these files from disk? Odstranit trvale tyto soubory z disku? - - + + This can not be undone! To nelze vrátit zpět! - + Cancel Zrušit - + Delete Files Smazat soubory - + Okay Dobře - + Move Track File(s) to Trash? Přesunout soubory skladeb do koše? - + Track Files Deleted Smazány soubory skladeb - + Track Files Moved To Trash Soubory skladeb přesunuty do koše - + %1 track files were moved to trash and purged from the Mixxx database. %1 souborů skladeb bylo přesunuto do koše a vyčištěno z databáze Mixxxu. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 souborů skladeb bylo smazáno z disku a vyčištěno z databáze Mixxxu. - + Track File Deleted Smazán soubor skladeb - + Track file was deleted from disk and purged from the Mixxx database. %1 soubor skladeb byl smazán z disku a vyčištěn z databáze Mixxxu. - + The following %1 file(s) could not be deleted from disk Následující %1 soubor(y) nemohl(y) být smazán(y) z disku - + This track file could not be deleted from disk Tento soubor skladby nemohl být smazán z disku - + Remaining Track File(s) Zbývající soubor(y) skladeb - + Close Zavřít - + Clear Reset metadata in right click track context menu in library - + Loops Skoky - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... Odstraňování %n souborů skladeb z disku... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Poznámka: Jste-li v zobrazení Počítač či Nahrávání, musíte pro zobrazení změn znovu klepnout na nynější zobrazení. - + Track File Moved To Trash Soubor skladby přesunut do koše - + Track file was moved to trash and purged from the Mixxx database. Soubor skladeb byl přesunut do koše a vyčištěn z databáze Mixxxu. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash Následující %1 soubor(y) nemohl(y) být přesunut(y) do koše - + This track file could not be moved to trash Tento soubor skladby nemohl být přesunut do koše + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Nastavení obrázku obalu %n skladbyNastavení obrázku obalu %n skladebNastavení obrázku obalu %n skladebNastavení obrázku obalu %n skladeb - + Reloading cover art of %n track(s) Nahrání obrázku obalu %n skladby znovuNahrání obrázku obalu %n skladeb znovuNahrání obrázku obalu %n skladeb znovuNahrání obrázku obalu %n skladeb znovu @@ -16967,37 +17508,37 @@ Tento krok nelze vrátit zpět! WTrackTableView - + Confirm track hide Potvrdit skrytí skladby - + Are you sure you want to hide the selected tracks? Opravdu chcete skrýt vybrané skladby? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Opravdu chcete odstranit vybrané skladby z řady automatického diskžokeje? - + Are you sure you want to remove the selected tracks from this crate? Opravdu chcete odstranit vybrané skladby z této přepravky? - + Are you sure you want to remove the selected tracks from this playlist? Opravdu chcete odstranit vybrané skladby z tohoto seznamu skladeb? - + Don't ask again during this session Příště se během tohoto sezení neptat - + Confirm track removal Potvrdit odstranění skladby @@ -17005,12 +17546,12 @@ Tento krok nelze vrátit zpět! WTrackTableViewHeader - + Show or hide columns. Ukázat nebo skrýt sloupce. - + Shuffle Tracks @@ -17048,22 +17589,22 @@ Tento krok nelze vrátit zpět! knihovna - + Choose music library directory Vybrat adresář s hudební knihovnou - + controllers ovladače - + 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. @@ -17220,6 +17761,24 @@ Stiskněte OK pro ukončení. Požadavek sítě nebyl spuštěn + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17228,4 +17787,27 @@ Stiskněte OK pro ukončení. Nenahrán žádný efekt. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_da.qm b/res/translations/mixxx_da.qm index c4449fc2894e..a62c6a87205a 100644 Binary files a/res/translations/mixxx_da.qm and b/res/translations/mixxx_da.qm differ diff --git a/res/translations/mixxx_da.ts b/res/translations/mixxx_da.ts index af0aedad8fe5..c41f94937b41 100644 --- a/res/translations/mixxx_da.ts +++ b/res/translations/mixxx_da.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -147,28 +155,28 @@ 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 @@ -178,12 +186,12 @@ Omdøb - + Lock Lås - + Duplicate Dupliker @@ -204,24 +212,24 @@ 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 @@ -231,70 +239,77 @@ Tilføj til Auto DJ-køen (erstat) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion Bekræft sletning - + Do you really want to delete playlist <b>%1</b>? - + M3U Playlist (*.m3u) M3U-afspilningsliste (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -302,12 +317,12 @@ BaseSqlTableModel - + # # - + Timestamp Tidsstempel @@ -315,7 +330,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunne ikke læse spor. @@ -323,137 +338,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Albumkunstner - + Artist Kunstner - + Bitrate Bithastighed - + BPM BPM - + Channels Kanaler - + Color Farve - + Comment Bemærkning - + Composer Komponist - + Cover Art Cover-kunst - + Date Added Dato Tilføjet - + Last Played Sidst Afspillet - + Duration Varighed - + Type Type - + Genre Genre - + Grouping Gruppering - + Key Toneart - + Location Placering - + + Overview + + + + Preview Forsmag - + Rating Vurdering - + ReplayGain - + Samplerate - + Played Spillede - + Title Titel - + Track # Spor # - + Year År - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -475,22 +495,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Kan ikke anvende sikker adgangskode, adgang til nøglering fejlede. - + Secure password retrieval unsuccessful: keychain access failed. Adgang til sikker adgangskode fejlede, - + Settings error - + <b>Error with settings for '%1':</b><br> @@ -541,67 +561,77 @@ BrowseFeature - + Add to Quick Links Tilføj til Hurtige Links - + Remove from Quick Links Fjern fra Hurtige Links - + Add to Library Føj til bibliotek - + Refresh directory tree - + Quick Links Genveje - - + + Devices Enheder - + Removable Devices Flytbare enheder - - + + Computer Computer - + 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 - + "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. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -711,12 +741,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. @@ -747,87 +777,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx er et open source DJ software. For mere information, se: - + Starts Mixxx in full-screen mode Starter Mixxx i fuldskærmstilstand - + Use a custom locale for loading translations. (e.g 'fr') - + 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -837,27 +872,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -950,2535 +990,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Hovedtelefonudgang - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Plade %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Forsmag Pladespiller %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Aux %1 - + Reset to default Nulstil til standard - + Effect Rack %1 - + Parameter %1 Parameter %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Hovedtelefon miks (Forsmag/Master) - + Toggle headphone split cueing Slå hovedtelefon split cueing til/fra - + Headphone delay Hovedtelefon delay - + Transport - + Strip-search through track - + Play button Afspil knap - - + + Set to full volume Sæt til fuld styrke - - + + Set to zero volume Sluk for lyden - + Stop button Stop knap - + Jump to start of track and play Gå til start og afspil - + Jump to end of track Gå til slutningen af nummeret - + Reverse roll (Censor) button - + Headphone listen button Lytteknap til hovedtelefoner - - + + Mute button Sluk for lyden knap - + Toggle repeat mode - - + + Mix orientation (e.g. left, right, center) Mixretning(f.eks. venstre, højre, midterste) - - + + Set mix orientation to left Indstil mixretning til venstre - - + + Set mix orientation to center Indstil mixretning til midt - - + + Set mix orientation to right Indstil mixretning til højre - + Toggle slip mode Skift slip-tilstand - - + + BPM BPM - + Increase BPM by 1 Forøg BPM hastighed med 1 - + Decrease BPM by 1 Minsk BPM hastighed med 1 - + Increase BPM by 0.1 Forøg BPM hastighed med 0,1 - + Decrease BPM by 0.1 Minsk BPM hastighed med 0,1 - + BPM tap button BPM tap knap - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode - + Equalizers - + 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 Flyt loop fremad med %1 slag - + Move loop backward by %1 beats Flyt loop tilbage med %1 slag - + Create %1-beat loop - + Create temporary %1-beat loop roll - + Library Bibliotek - + Slot %1 - + Headphone Mix Hovedtelefon mix - + Headphone Split Cue - + Headphone Delay - + Play Afspil - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume Lyd - - - + + + Volume Fader Lyd fader - - + + Full Volume Lyd max - - + + Zero Volume Lyd minimum - + Track Gain - + Track Gain knob - - + + Mute - + Eject Skub ud - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - - + + Orientation - - + + Orient Left - - + + Orient Center - - + + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 - + High EQ Høj EQ - + Mid EQ Mellem EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ Lav 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 - + 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 - Hurtige Effekter - - - + Deck %1 Quick Effect Super Knob - + + Quick Effect Super Knob (control linked effect parameters) - - + + + + Quick Effect Hurtig Effekt - + Clear Unit - + Clear effect unit - + Toggle Unit - + Dry/Wet Tørt/Vådt - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob - + Next Chain - + Assign Tildel - + Clear Ryd - + Clear the current effect Ryd den nuværende effekt - + Toggle Slå til eller fra - + 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 - + 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 - + Headphone Gain - + Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + Playback Speed Afspilningshastighed - + 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) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + Navigation - + Move up Flyt op - + Equivalent to pressing the UP key on the keyboard Det samme som at trykke PIL OP på tastaturet - + Move down Flyt ned - + Equivalent to pressing the DOWN key on the keyboard Det samme som at trykke PIL NED på tastaturet - + Move up/down Flyt op/ned - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up Rul ip - + Equivalent to pressing the PAGE UP key on the keyboard Det samme som at trykke PAGE UP på tastaturet - + Scroll Down Rul ned - + Equivalent to pressing the PAGE DOWN key on the keyboard Det samme som at trykke PAGE DOWN på tastaturet - + Scroll up/down Rul op/ned - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left Flyt til venstre - + Equivalent to pressing the LEFT key on the keyboard Det samme som at trykke VENSTRE PIL på tastaturet - + Move right Flyt til højre - + Equivalent to pressing the RIGHT key on the keyboard Det samme som at trykke HØJRE PIL på tastaturet - + Move left/right Flyt til venstre/højre - + 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 Det samme som at trykke TAB på tastaturet - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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) Tilføj til Auto DJ-køen (erstat) - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 Mikrofon Til/Fra - + Microphone on/off Mikrofon til/fra - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3491,6 +3581,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3593,32 +3836,32 @@ trace - Above + Profiling messages 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. @@ -3626,27 +3869,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3662,13 +3905,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Fjern - + Create New Crate @@ -3678,55 +3921,55 @@ trace - Above + Profiling messages 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 @@ -3736,74 +3979,74 @@ trace - Above + Profiling messages 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. - + Confirm Deletion Bekræft sletning - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u) M3U-afspilningsliste (*.m3u) - + Crates are a great way to help organize the music you want to DJ with. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3898,12 +4141,12 @@ trace - Above + Profiling messages - + Official Website Officiel hjemmeside - + Donate Donér @@ -4022,72 +4265,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Spring over - + Random Tilfældig - + Fade Falm - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist Gentag afspilningslisten - + Determines the duration of the transition - + Seconds Sekunder - + Auto DJ Fade Modes Full Intro + Outro: @@ -4118,80 +4361,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence Spring stilhed over - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto DJ - + Shuffle - + 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. @@ -4414,37 +4657,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4483,17 +4726,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4689,122 +4932,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Handlingen fejlede - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4817,27 +5077,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing - + Public stream - + http://www.mixxx.org - + Stream name - + 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. @@ -4877,67 +5137,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website - + Live mix - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Genre - + Use UTF-8 encoding for metadata. - + Description Beskrivelse @@ -4963,42 +5228,42 @@ Two source connections to the same server that have the same mountpoint can not Kanaler - + Server connection - + Type Type - + Host - + Login - + Mount - + Port - + Password - + Stream info @@ -5008,17 +5273,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5077,13 +5342,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color Farve @@ -5128,17 +5394,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5146,113 +5417,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5265,105 +5536,110 @@ Apply settings and continue? - + Enabled Aktiv - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add - - + + Remove Fjern @@ -5378,22 +5654,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5403,28 +5679,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All - + Output Mappings @@ -5439,21 +5715,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5583,6 +5859,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5612,137 +5898,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -6174,62 +6460,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6456,67 +6742,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - - Item is not a directory or directory is missing + + Item is not a directory or directory is missing + + + + + 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 - - Choose a music directory + + Leave Tracks Unchanged - - Confirm Directory Removal + + Relink music directory to new location - - 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. + + Black - - 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. + + ExtraBold - - Hide Tracks + + Bold - - Delete Track Metadata + + SemiBold - - Leave Tracks Unchanged + + Medium - - Relink music directory to new location + + Light - + Select Library Font @@ -6565,262 +6881,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible - + ... - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms - + Load track to next available deck - + External Libraries - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Show iTunes Library - + Show Traktor Library - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. @@ -7165,33 +7486,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7209,43 +7530,55 @@ and allows you to pitch adjust them for harmonic mixing. - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality - + Tags - + Title Titel - + Author - + Album Album - + Output File Format - + Compression - + Lossy @@ -7260,12 +7593,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7396,173 +7729,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Aktiv - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7580,131 +7917,136 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7746,7 +8088,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7782,46 +8124,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7829,57 +8176,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB - + Top - + Center - + Bottom - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7892,250 +8240,297 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. - - - - - Waveform + + OpenGL Status - - Normalize waveform overview + + Displays which OpenGL version is supported by the current platform. - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + + Overview Waveforms + + + + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8143,47 +8538,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library Bibliotek - + Interface - + Waveforms - + Mixer Mixer - + Auto DJ Auto DJ - + Decks - + Colors @@ -8218,47 +8613,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Effekter - + 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> - + Vinyl Control - + Live Broadcasting - + Modplug Decoder @@ -8291,22 +8686,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8614,284 +9009,289 @@ This can not be undone! - + Filetype: - + BPM: BPM: - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Spor # - + Album Artist Albumskunstner - + Composer Komponist - + Title Titel - + Grouping Gruppering - + Key Tast - + Year År - + Artist Kunstner - + Album Album - + Genre Genre - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color Farve - + Date added: - + Open in File Browser - + Samplerate: - + + Filesize: + + + + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9048,7 +9448,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9250,27 +9650,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9414,38 +9814,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. Check the logs for details. @@ -9453,12 +9853,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9466,18 +9866,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9485,15 +9885,15 @@ 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 @@ -9504,57 +9904,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9562,62 +9962,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9627,22 +10027,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9689,27 +10089,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9769,22 +10169,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9792,208 +10192,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10009,13 +10450,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - - + + Playlists @@ -10025,32 +10466,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Lås op - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -10149,58 +10621,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 @@ -10314,69 +10786,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier - + Microphone + Audio path indetifier - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10705,47 +11190,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11529,19 +12016,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Pladespiller 1 @@ -11674,7 +12161,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11705,7 +12192,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11742,15 +12229,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11779,6 +12337,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11789,11 +12348,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11805,11 +12366,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11838,12 +12401,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11878,42 +12441,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11971,54 +12534,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12153,19 +12716,19 @@ may introduce a 'pumping' effect and/or distortion. Lås - - + + Confirm Deletion Bekræft sletning - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12174,193 +12737,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. @@ -12368,7 +12931,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12376,23 +12939,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device - + An unknown error occurred - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12577,7 +13140,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12759,7 +13322,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Cover-kunst @@ -12949,243 +13512,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track Tast - + BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Afspil - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13408,939 +13971,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If the play position is inside an active loop, stores the loop as loop cue. + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - - Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. + + If the play position is inside an active loop, stores the loop as loop cue. - - Dragging with Shift key pressed will not start previewing the hotcue + + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear Ryd - + Clear the current effect. - + Toggle Slå til eller fra - + Toggle the current effect. - + Next Næste - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Forrige - + Switch to the previous effect. - + Next or Previous Næste eller Forrige - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14475,33 +15081,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14521,205 +15127,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix Optag Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14759,259 +15375,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Skub ud - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15019,12 +15635,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15032,47 +15648,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15244,47 +15855,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15408,407 +16047,448 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F - + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15816,25 +16496,25 @@ This can not be undone! WOverview - + 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 @@ -15843,25 +16523,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -15872,169 +16540,163 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Tast - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Kunstner - + Album Artist Albumskunstner - + Composer Komponist - + Title Titel - + Album Album - + Grouping Gruppering - + Year År - + Genre Genre - + Directory - + &Search selected @@ -16042,599 +16704,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates - + Metadata - + Update external collections - + Cover Art Cover-kunst - + Adjust BPM - + Select Color - - + + Analyze Analyser - - + + Delete Track Files - + 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) Tilføj til Auto DJ-køen (erstat) - + Preview Deck - + Remove Fjern - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Vurdering - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Tast - + ReplayGain - + Waveform - + Comment Bemærkning - + All - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Pladespiller 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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Luk - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16650,37 +17353,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16688,37 +17391,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16726,60 +17429,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. + + + Shuffle Tracks + + 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. @@ -16790,67 +17498,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Gennemse - + Export directory - + Database version - + Export - + Cancel - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16871,7 +17590,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16881,23 +17600,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -16922,6 +17641,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -16930,4 +17667,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_de.qm b/res/translations/mixxx_de.qm index c50696646d34..65b3f5f7b84c 100644 Binary files a/res/translations/mixxx_de.qm and b/res/translations/mixxx_de.qm differ diff --git a/res/translations/mixxx_de.ts b/res/translations/mixxx_de.ts index 3f4e38106ba9..183fbf800ad8 100644 --- a/res/translations/mixxx_de.ts +++ b/res/translations/mixxx_de.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Plattenkisten - + Enable Auto DJ Auto-DJ aktivieren - + Disable Auto DJ Auto-DJ deaktivieren - + Clear Auto DJ Queue Auto-DJ Warteschlange löschen - + Remove Crate as Track Source Plattenkiste als Track-Quelle entfernen - + Auto DJ Auto-DJ - + Confirmation Clear Bestätigung leeren - + Do you really want to remove all tracks from the Auto DJ queue? - Möchten Sie wirklich alle Titel aus der Auto-DJ-Warteschlange entfernen? + Möchten Sie wirklich alle Titel aus der Auto DJ-Warteschlange entfernen? - + This can not be undone. Dies kann nicht rückgängig gemacht werden. - + Add Crate as Track Source Plattenkiste als Track-Quelle hinzufügen @@ -94,8 +102,7 @@ There was an error loading your Banshee database at - Beim Laden der Banshee-Datenbank "%1" ist ein Fehler aufgetreten. - + Beim Laden der Banshee-Datenbank "%1" ist ein Fehler aufgetreten. @@ -223,7 +230,7 @@ - + Export Playlist Wiedergabeliste exportieren @@ -237,7 +244,7 @@ Export to Engine DJ "Engine DJ" is a product name and must not be translated. - + Exportieren nach Engine DJ @@ -277,13 +284,13 @@ - + Playlist Creation Failed Erstellen der Wiedergabeliste fehlgeschlagen - + An unknown error occurred while creating playlist: Ein unbekannter Fehler ist beim Erstellen der Wiedergabeliste aufgetreten: @@ -298,12 +305,12 @@ Möchten Sie die Wiedergabeliste<b>%1</b> wirklich löschen? - + 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);;CSV (*.csv);;Normaler Text (*.txt) @@ -311,12 +318,12 @@ BaseSqlTableModel - + # # - + Timestamp Zeitstempel @@ -324,7 +331,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Track konnte nicht geladen werden. @@ -362,7 +369,7 @@ Kanäle - + Color Farbe @@ -377,7 +384,7 @@ Komponist - + Cover Art Cover-Bild @@ -387,7 +394,7 @@ Hinzugefügt am - + Last Played Zuletzt gespielt @@ -417,7 +424,7 @@ Tonart - + Location Speicherort @@ -427,7 +434,7 @@ Übersicht - + Preview Vorhören @@ -467,7 +474,7 @@ Jahr - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Bild abrufen ... @@ -489,22 +496,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Sicherer Kennwortspeicher kann nicht verwendet werden: Schlüsselbundzugriff ist fehlgeschlagen. - + Secure password retrieval unsuccessful: keychain access failed. Sichere Kennwortabfrage erfolglos: Schlüsselbundzugriff fehlgeschlagen. - + Settings error Einstellungsfehler - + <b>Error with settings for '%1':</b><br> <b>Fehler bei Einstellungen für '%1':</b><br> @@ -592,7 +599,7 @@ - + Computer Computer @@ -612,17 +619,17 @@ Scannen - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Sie können Ordner auf Ihrer Festplatte und externen Geräten durchsuchen, sich Tracks anzeigen lassen und diese laden. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +742,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. @@ -771,87 +778,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx ist eine quelloffene DJ Software. Mehr Informationen unter: - + 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 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 Pfad, in den die Zeitleiste der Debug-Statistik 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! Das Controller-Mapping wird aggressivere Warnungen und Fehler ausgeben, wenn es einen Missbrauch von Controller-APIs feststellt. Neue Controller-Zuordnungen sollten mit dieser Option entwickelt werden! - + 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. - + Top-level directory where Mixxx should look for settings. Default is: Verzeichnis, in dem Mixxx nach Einstellungen suchen soll. Standard ist: - + Starts Auto DJ when Mixxx is launched. Startet Auto DJ, wenn Mixxx gestartet wird. - + Rescans the library when Mixxx is launched. Scannt die Bibliothek erneut wenn Mixxx gestartet wird - + Use legacy vu meter Frühere Methode für Pegelanzeigen nutzen - + Use legacy spinny Frühere Methode für drehendes Vinyl nutzen - - Loads experimental QML GUI instead of legacy QWidget skin - Lädt experimentelle QML-GUI anstelle des früheren QWidget-Skins + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + 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 @@ -866,32 +878,32 @@ 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. Legt die Protokollierungsstufe fest, mit welcher der Protokollpuffer in mixxx.log geschrieben wird. <level> ist einer der oben unter --logLevel definierten Werte. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Legt die maximale Dateigröße der Datei mixxx.log in Bytes fest. Verwenden Sie -1 für unbegrenzt. Der Standardwert ist 100 MB als 1e5 oder 100000000. - + 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. - + Overrides the default application GUI style. Possible values: %1 - + Überschreibt den Standard Stil der grafischen Benutzeroberfläche der Anwendung. Mögliche Werte: %1 - + 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. - + Preview rendered controller screens in the Setting windows. @@ -984,2567 +996,2748 @@ trace - Wie oben + Profiling-Meldungen ControlPickerMenu - + Headphone Output Kopfhörer-Ausgang - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Vorhör-Deck %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Aux %1 - + Reset to default Auf Standartwerte zurücksetzen - + Effect Rack %1 Effekt-Rack %1 - + Parameter %1 Parameter %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Kopfhörer-Mix (Vorhören/Alles) - + Toggle headphone split cueing Vorhören im Kopfhörer aufteilen - + Headphone delay Kopfhörer-Verzögerung - + Transport Transport - + Strip-search through track Strip-Suche durch Track - + Play button Wiedergabe-Taste - - + + Set to full volume Auf volle Lautstärke setzen - - + + Set to zero volume Lautstärke auf Null setzen - + Stop button Stop-Taste - + Jump to start of track and play Zum Anfang des Tracks springen und wiedergeben - + Jump to end of track Zum Ende des Tracks springen - + Reverse roll (Censor) button Rückwärts-Roll- (Zensieren-) Taste - + Headphone listen button Kopfhörer-Taste - - + + Mute button Stummschalten-Taste - + Toggle repeat mode Wiederholen-Modus ein-/ausschalten - - + + Mix orientation (e.g. left, right, center) Mix-Orientierung (z.B. Links, Rechts, Mitte) - - + + Set mix orientation to left Der linken Seite des Crossfaders zuordnen - - + + Set mix orientation to center Der rechten Seite des Crossfaders zuordnen - - + + Set mix orientation to right Der Mitte des Crossfaders zuordnen - + Toggle slip mode Slip-Modus ein-/ausschalten - - + + BPM BPM - + Increase BPM by 1 BPM um 1 erhöhen - + Decrease BPM by 1 BPM um 1 verringern - + Increase BPM by 0.1 BPM um 0,1 erhöhen - + Decrease BPM by 0.1 BPM um 0,1 verringern - + BPM tap button BPM Tippen-Taste - + Toggle quantize mode Quantisierungs-Modus ein-/ausschalten - + One-time beat sync (tempo only) Einmalige Beat-Synchronisation (Nur Tempo) - + One-time beat sync (phase only) Einmalige Beat-Synchronisation (Nur Phase) - + Toggle keylock mode Tonhöhensperre ein-/ausschalten - + Equalizers Equalizer - + Vinyl Control Vinyl-Steuerung - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Cueing-Modus der Vinyl-Steuerung umschalten (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Vinyl-Steuerungs-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 Zu Cue-Punkt gehen und stoppen - + Preview from cue point Vom Cue-Punkt aus vorhören - + Cue button (CDJ mode) Cue-Taste (CDJ-Modus) - + Stutter cue Stotter-Cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Hotcue %1 setzen, vorhören, oder dorthin springen - + 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 Von Hotcue %1 aus vorhören - - + + 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 - + Slot %1 Platz %1 - + Headphone Mix Kopfhörer-Mix - + Headphone Split Cue Vorhören im Kopfhörer aufteilen - + Headphone Delay Kopfhörer-Verzögerung - + Play Wiedergabe - + Fast Rewind Schneller Rücklauf - + Fast Rewind button Schneller Rücklauf-Taste - + Fast Forward Schneller Vorlauf - + Fast Forward button Schneller Vorlauf-Taste - + Strip Search Strip-Suche - + Play Reverse Rückwärts abspielen - + Play Reverse button Rückwärts Abspielen-Taste - + Reverse Roll (Censor) Rückwärts-Roll (Zensieren) - + Jump To Start Zum Anfang springen - + Jumps to start of track Springt zum Anfang des Tracks - + Play From Start Vom Anfang wiedergeben - + Stop Stop - + Stop And Jump To Start Stoppen und zum Anfang springen - + Stop playback and jump to start of track Wiedergabe stoppen und zum Anfang des Tracks springen - + Jump To End Zum Ende springen - + Volume Lautstärke - - - + + + Volume Fader Lautstärke-Fader - - + + Full Volume Volle Lautstärke - - + + Zero Volume Lautstärke Null - + Track Gain Track-Verstärkung - + Track Gain knob Track-Verstärkungs-Drehregler - - + + Mute Stummschalten - + Eject Auswerfen - - + + Headphone Listen Kopfhörer-Vorhören - + Headphone listen (pfl) button Kopfhörer-Vorhören (pfl) Taste - + Repeat Mode Wiederholen-Modus - + Slip Mode Slip-Modus - - + + Orientation Orientierung - - + + Orient Left Links orientieren - - + + Orient Center Mittig orientieren - - + + Orient Right Rechts orientieren - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap BPM-Tippen - + Adjust Beatgrid Faster +.01 Beatgrid schneller +0,01 - + Increase track's average BPM by 0.01 Durchschnittliche BPM des Tracks um 0,01 erhöhen - + Adjust Beatgrid Slower -.01 Beatgrid langsamer -0,01 - + Decrease track's average BPM by 0.01 Durchschnittliche BPM des Tracks um 0,01 verringern - + Move Beatgrid Earlier Beatgrid verschieben früher - + Adjust the beatgrid to the left Beatgrid nach links verschieben - + Move Beatgrid Later Beatgrid verschieben später - + Adjust the beatgrid to the right Beatgrid nach rechts verschieben - + Adjust Beatgrid Beatgrid anpassen - + Align beatgrid to current position Beatgrid an der aktuellen Position ausrichten - + Adjust Beatgrid - Match Alignment Beatgrid anpassen - Anordnung angleichen - + Adjust beatgrid to match another playing deck. Beatgrid entsprechend einem anderen spielenden Deck anpassen. - + Quantize Mode Quantisieren-Modus - + Sync Synchronisation - + Beat Sync One-Shot Einmalige Beat-Synchronisation - + Sync Tempo One-Shot Einmalige Tempo-Synchronisation - + Sync Phase One-Shot Einmalige Phasen-Synchronisation - + 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 - + High EQ Höhen-Equalizer - + Mid EQ Mitten-Equalizer - - + + Main Output Hauptausgang - + Main Output Balance Hauptausgang-Balance - + Main Output Delay Hauptausgang-Verzögerung - + Main Output Gain Hauptausgang-Verstärkung - + Low EQ Tiefen-Equalizer - + Toggle Vinyl Control Vinyl-Steuerung ein-/ausschalten - + Toggle Vinyl Control (ON/OFF) Vinyl-Steuerung ein-/ausschalten (ON/OFF) - + 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 Cue vorhören - + 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 Hotcue %1 vorhören - + Loop In Loop-In - + 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 Einen Loop über %1 Beats setzen - + 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 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ärkungs-Drehregler - + 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/Aus - + Toggle Auto DJ On/Off Auto-DJ ein-/ausschalten - + 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 - + Headphone Gain Kopfhörer-Verstärkung - + Headphone gain Kopfhörer-Verstärkung - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Tippen zum synchronisieren von Tempo (und Phase bei aktivierter Quantisierung), halten für permanente Synchronisation - + One-time beat sync tempo (and phase with quantize enabled) Einmalige Beat-Synchronisation des Tempos (und der 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) - - + + Adjust %1 %1 anpassen - + + Deck %1 Stem %2 + + + + Effect Unit %1 Effekteinheit %1 - + Button Parameter %1 Taste Parameter %1 - + Skin Skin - + Controller Controller - + Crossfader / Orientation Crossfader / Orientierung - + Main Output gain Hauptausgang-Verstärkung - + Main Output balance Hauptausgang-Balance - + Main Output delay Hauptausgang-Verzögerung - + Headphone Kopfhörer - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" %1 stummschalten - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Track auswerfen oder nachladen, d.h. den zuletzt ausgeworfenen Track (von jedem Deck) erneut laden.<br>Doppelklicken, um den zuletzt ersetzten Track erneut zu laden. In leeren Decks wird der vorletzte ausgeworfen Track erneut geladen. - + BPM / Beatgrid BPM / Beatgrid - + Halve BPM BPM halbieren - + Multiply current BPM by 0.5 Aktuelle BPM mit 0,5 multiplizieren - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Aktuelle BPM mit 0,666 multiplizieren - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Aktuelle BPM mit 0,75 multiplizieren - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Aktuelle BPM mit 1,333 multiplizieren - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Aktuelle BPM mit 1,5 multiplizieren - + Double BPM BPM verdoppeln - + Multiply current BPM by 2 Aktuelle BPM mit 2 multiplizieren - + Tempo Tap - + Tempo tap button - + Move Beatgrid Beatgrid verschieben - + Adjust the beatgrid to the left or right Beatgrid nach links oder rechts verschieben - + Move Beatgrid Half a Beat Beatgrid eine halben Beat verschieben - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock BPM-/Beatgrid-Sperre umschalten - + Revert last BPM/Beatgrid Change BPM/Beatgrid-Änderung rückgängig machen - + Revert last BPM/Beatgrid Change of the loaded track. - + Die letzte Änderung von BPM/Beatgrid im geladenen Titel rückgängig machen. - + Sync / Sync Lock Sync / Sync-Sperre - + Internal Sync Leader Interne Synchronisationleiter - + Toggle Internal Sync Leader Interne Sync-Leader umschalten - - + + Internal Leader BPM Interne Leader-BPM - + Internal Leader BPM +1 Interne Leader-BPM +1 - + Increase internal Leader BPM by 1 Interne Leader-BPM um 1 erhöhen - + Internal Leader BPM -1 Interne Leader-BPM -1 - + Decrease internal Leader BPM by 1 Interne Leader-BPM um 1 verringern - + Internal Leader BPM +0.1 Interne Leader-BPM +0.1 - + Increase internal Leader BPM by 0.1 Interne Leader-BPM um 0.1 erhöhen - + Internal Leader BPM -0.1 Interne Leader-BPM -0.1 - + Decrease internal Leader BPM by 0.1 Interne Leader-BPM um 0.1 verringern - + Sync Leader Sync-Leader - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) 3-stufiger Umschalter/Indikator für Sync-Modus (Aus, Soft-Leader, Explicit-Leader) - + Speed Geschwindigkeit - + Decrease Speed (Fine) Geschwindigkeit verringern (fein) - + 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 - - + + Sort hotcues by position Hotcues nach Position sortieren - - + + Sort hotcues by position (remove offsets) Hotcues nach Position sortieren (Versatz entfernen) - + 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 - + if the track has no beats the unit is seconds wenn der Track keine Beats hat ist die Einheit Sekunden - + 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 über ausgewählte Beats - + Create a rolling beat loop of selected beat size Einen Beat-Loop-Roll der ausgewählten Beat-Länge erstellen - + Loop %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats Loop Beats - + Loop Roll Beats Loop-Roll Beats - + Go To Loop In Zum Loop-In-Marker springen - + Go to Loop In button "Zum Loop-In-Marker springen"-Taste - + Go To Loop Out Zum Loop-Out-Marker springen - + Go to Loop Out button "Zum Loop-Out-Marker springen"-Taste - + 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-Marker 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 Anzahl 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 Anzahl 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 Beat-Sprung - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Zeige an, welcher Loop-Marker beim Anpassen der Größe statisch bleibt oder von der aktuellen Position übernommen wird - + 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 - + Remove Temporary Loop Temporären Loop entfernen - + Remove the temporary loop Den temporären Loop entfernen - + 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- und TAB-Tasten 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 - + Sort focused column Ausgewählte Spalte sortieren - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Sortiere die Spalte, in der gerade eine Zelle ausgewählt ist (entspricht einem Klick auf den Spaltenkopf) - + 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 - + Clear search Suche löschen - + Clears the search query Löscht den Suchbegriff - - + + Select Next Color Available Nächste verfügbare Farbe auswählen - + Select the next color in the color palette for the first selected track Auswählen der nächsten Farbe in der Palette für den ersten geladene Track. - - + + Select Previous Color Available Vorherige verfügbare Farbe auswählen - + Select the previous color in the color palette for the first selected track Auswählen der vorherigen Farbe in der Palette für den ersten geladene Track. - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Deck %1 Quick-Effekt-Aktivierungstaste - + + Quick Effect Enable Button Quick-Effekt Aktivierungstaste - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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/aus - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) Mikrofon-Dämpfungsmodus umschalten (AUS, AUTO, MANUELL) - + Auxiliary On/Off Aux ein/aus - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mikrofon && Aux ein-/ausblenden - + Waveform Zoom Reset To Default Wellenform-Vergrößerung auf Standard zurücksetzen - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Vergrößerungsstufe aller Wellenform-Anzeigen auf den in Einstellungen -> Wellenformen ausgewählten Standardwert zurücksetzen - + Select the next color in the color palette for the loaded track. Auswählen der nächsten Farbe in der Palette für den geladene Track. - + Select previous color in the color palette for the loaded track. Auswählen der vorherigen Farbe in der Palette für den geladene Track. - + Navigate Through Track Colors Track-Farben durchsuchen - + Select either next or previous color in the palette for the loaded track. Auswählen der nächsten oder vorherigen Farbe in der Palette für den geladene Track. - + 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. - - + + + Deck %1 Stems + + + + + Samplers Sampler - + Vinyl Control Show/Hide Vinyl-Steuerung ein-/ausblenden - + Show/hide the vinyl control section Bereich "Vinyl-Steuerung" 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 + + Decrease the track rating by one star + Verringert die Bewertung des Tracks um einen Stern + + + + Controller + + + Unknown + Unbekannt + + + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + - - - Controller - - Unknown - Unbekannt + + Non Volatile + @@ -3649,32 +3842,32 @@ trace - Wie oben + Profiling-Meldungen 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. @@ -3682,27 +3875,27 @@ trace - Wie oben + Profiling-Meldungen ControllerScriptEngineLegacy - + Controller Mapping File Problem Problem mit der Controller-Mappingdatei - + The mapping for controller "%1" cannot be opened. Das Mapping für den Controller "%1" kann nicht geöffnet werden. - + 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. - + File: Datei: - + Error: Fehler: @@ -3735,7 +3928,7 @@ trace - Wie oben + Profiling-Meldungen - + Lock Sperren @@ -3765,7 +3958,7 @@ trace - Wie oben + Profiling-Meldungen Auto-DJ Track-Quelle - + Enter new name for crate: Einen neuen Namen für die Plattenkiste eingeben: @@ -3782,22 +3975,22 @@ trace - Wie oben + Profiling-Meldungen 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 @@ -3807,28 +4000,28 @@ trace - Wie oben + Profiling-Meldungen 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. - + Confirm Deletion Löschen bestätigen - - + + 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);;CSV (*.csv);;Normaler Text (*.txt) - + M3U Playlist (*.m3u) M3U-Wiedergabeliste (*.m3u) @@ -3849,17 +4042,17 @@ trace - Wie oben + Profiling-Meldungen Plattenkisten ermöglichen es, Ihre Musik so zu organisieren wie Sie möchten! - + Do you really want to delete crate <b>%1</b>? Möchten Sie die Plattenkiste <b>%1</b> wirklich löschen? - + 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. @@ -3954,12 +4147,12 @@ trace - Wie oben + Profiling-Meldungen Frühere Mitwirkende - + Official Website Offizielle Webseite - + Donate Spenden @@ -4206,7 +4399,7 @@ crossfader, so that the intro starts at full volume. Skip Silence Start Full Volume - Stille überspringen, Start mit voller Lautstärke + Stille überspringen, starte mit voller Lautstärke @@ -4765,123 +4958,140 @@ Sie haben versucht anzulernen: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Automatisch - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Aktion fehlgeschlagen - + You can't create more than %1 source connections. Sie können nicht mehr als %1 Quellverbindungen erstellen. - + Source connection %1 Quellverbindung %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + Einstellungen für %1 + + + At least one source connection is required. Mindestens eine Quellverbindung ist erforderlich. - + Are you sure you want to disconnect every active source connection? Wollen Sie wirklich alle aktiven Quellverbindungen trennen? - - + + Confirmation required Bestätigung erforderlich - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' hat den gleichen Icecast-Einhängepunkt wie '%2'. Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt haben. - + Are you sure you want to delete '%1'? Wollen Sie wirklich '%1' löschen? - + Renaming '%1' Umbenennen von '%1' - + New name for '%1': Neuer Name für '%1': - + Can't rename '%1' to '%2': name already in use Kann '%1' nicht in '%2' umbenennen: Name wird bereits verwendet @@ -4894,27 +5104,27 @@ Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt ha Liveübertragung-Einstellungen - + Mixxx Icecast Testing Mixxx Icecast-Test - + Public stream Öffentlicher Stream - + http://www.mixxx.org http://www.mixxx.org - + Stream name Stream-Name - + 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. Aufgrund von Fehlern in einigen Streaming-Clients kann die dynamische Aktualisierung von Ogg Vorbis Metadaten zu Störungen und Unterbrechungen führen. Aktivieren Sie diese Checkbox, um die Metadaten trotzdem zu aktualisieren. @@ -4954,67 +5164,72 @@ Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt ha Einstellungen für %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Ogg Vorbis-Metadaten dynamisch aktualisieren. - + ICQ ICQ - + AIM AIM - + Website Webseite - + Live mix Live-Mix - + IRC IRC - + Select a source connection above to edit its settings here Wählen Sie oben eine Quellverbindung aus, um sie hier zu bearbeiten - + Password storage Kennwortspeicher - + Plain text Klartext - + Secure storage (OS keychain) Sichere Speicherung (OS-Schlüsselbund) - + Genre Genre - + Use UTF-8 encoding for metadata. UTF-8 Kodierung für Metadaten verwenden. - + Description Beschreibung @@ -5040,42 +5255,42 @@ Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt ha Kanäle - + Server connection Serververbindung - + Type Typ - + Host Host - + Login Benutzername - + Mount Einhängepunkt - + Port Port - + Password Passwort - + Stream info Stream-Info @@ -5085,17 +5300,17 @@ Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt ha Metadaten - + Use static artist and title. Statischen Interpreten und Titel verwenden. - + Static title Statischer Titel - + Static artist Statischer Interpret @@ -5154,13 +5369,14 @@ Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt ha DlgPrefColors - - + + + By hotcue number Nach Hotcue-Nummer - + Color Farbe @@ -5205,18 +5421,23 @@ Zwei Verbindungen auf demselben Server können nicht denselben Einhängepunkt ha + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Wenn die Tonart-Farben aktiviert sind, zeigt Mixxx einen farbliche Kennzeichnung die mit der jeweiligen Tonart verbunden ist. - + Enable Key Colors Tonart-Farben aktivieren - + Key palette @@ -5224,114 +5445,114 @@ die mit der jeweiligen Tonart verbunden ist. DlgPrefController - + Apply device settings? Einstellungen für Gerät anwenden? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Ihre Einstellungen müssen übernommen werden bevor Sie den Lern-Assistenten starten. Einstellungen übernehmen und fortfahren? - + None Keine - + %1 by %2 %1 von %2 - + Mapping has been edited Mapping wurde bearbeitet - + Always overwrite during this session Während dieser Session immer überschreiben - + Save As Speichern als - + Overwrite Überschreiben - + Save user mapping Benutzer-Mapping speichern - + Enter the name for saving the mapping to the user folder. Geben Sie den Namen für die Speicherung des Mappings im Benutzerordner ein. - + Saving mapping failed Speichern des Mappings fehlgeschlagen - + A mapping cannot have a blank name and may not contain special characters. Ein Mapping muss einen Namen haben und darf keine Sonderzeichen enthalten. - + A mapping file with that name already exists. Eine Mapping-Datei mit diesem Namen ist bereits vorhanden. - + Do you want to save the changes? Möchten Sie die Änderungen speichern? - + Troubleshooting Fehlerbehebung - + <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>Es kann notwendig sein, einige Titel in Ihrer vorbereiteten Playlist zu überspringen oder einige andere Titel hinzuzufügen, um die Energie Ihres Publikums aufrechtzuerhalten.</b></font><br><br>Dieses Mapping wurde für eine neuere Mixxx Controller-Engine entwickelt und kann nicht auf Ihrer aktuellen Mixxx-Installation verwendet werden.<br>Ihre Mixxx-Installation hat die Controller-Engine-Version %1. Dieses Mapping erfordert eine Controller-Engine-Version >= %2<br><br>Für weitere Informationen besuchen Sie die Wiki-Seite <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller-Engine-Versionen</a>. - + Mapping already exists. Mapping ist bereits vorhanden. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> existiert bereits im Benutzerordner.<br>Überschreiben oder unter einem neuen Namen speichern? - + Clear Input Mappings Eingangs-Mappings löschen - + Are you sure you want to clear all input mappings? Wollen Sie wirklich alle Eingangs-Mappings löschen? - + Clear Output Mappings Ausgangs-Mappings löschen - + Are you sure you want to clear all output mappings? Wollen Sie wirklich alle Ausgangs-Mappings löschen? @@ -5349,100 +5570,105 @@ Einstellungen übernehmen und fortfahren? Aktiviert - + + Refresh mapping list + + + + Device Info Geräte-Info - + Physical Interface: - + Vendor name: Anbietername - + Product name: Produktname - + Vendor ID Anbieter-ID - + VID: - + Product ID Produktnummer - + PID: - + Serial number: Seriennummer - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Beschreibung: - + Support: Unterstützung: - + Screens preview - + Input Mappings Eingangs-Mappings - - + + Search Suche - - + + Add Hinzufügen - - + + Remove Entfernen @@ -5462,17 +5688,17 @@ Einstellungen übernehmen und fortfahren? Lade Mapping: - + Mapping Info Mapping-Info - + Author: Autor: - + Name: Name: @@ -5482,28 +5708,28 @@ Einstellungen übernehmen und fortfahren? Lern-Assistent (nur MIDI) - + Data protocol: - + Mapping Files: Mapping-Dateien: - + Mapping Settings Mapping-Einstellungen - - + + Clear All Alles entfernen - + Output Mappings Ausgangs-Mappings @@ -5518,21 +5744,21 @@ Einstellungen übernehmen und fortfahren? - 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 verwendet "Mappings", um Befehle von Ihrem Controller mit Steuerelementen in Mixxx zu verbinden. Wenn Sie links in der Seitenleiste auf Ihren Controller klicken und dort keine Voreinstellung für Ihren Controller im Menü "Mapping laden" sehen, können Sie möglicherweise eine aus dem %1 herunterladen. Legen Sie die XML (.xml) und Javascript (.js) Datei(en) in den "Benutzerordner" und starten Mixxx neu. Wenn Sie ein Mapping in einer ZIP-Datei heruntergeladen haben, extrahieren Sie die XML und Javascript-Datei(en) aus der ZIP-Datei in den "Benutzerordner" und starten Mixxx neu. + 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ Hardware-Handbuch - + MIDI Mapping File Format MIDI-Mapping Dateiformat - + MIDI Scripting with Javascript MIDI-Scripting mit Javascript @@ -5662,6 +5888,16 @@ Einstellungen übernehmen und fortfahren? Multi-Sampling Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5691,137 +5927,137 @@ Einstellungen übernehmen und fortfahren? DlgPrefDeck - + Mixxx mode Mixxx-Modus - + Mixxx mode (no blinking) Mixxx-Modus (ohne Blinken) - + Pioneer mode Pioneer-Modus - + Denon mode Denon-Modus - + Numark mode Numark-Modus - + CUP mode CUP-Modus - + mm:ss%1zz - Traditional mm:ss%1zz - Traditionell - + mm:ss - Traditional (Coarse) mm:ss - Traditionell (Grob) - + s%1zz - Seconds s%1zz - Sekunden - + sss%1zz - Seconds (Long) sss%1zz - Sekunden (Lang) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosekunden - + Intro start Intro-Start - + Main cue Haupt-Cue - + First hotcue Erster Hotcue - + First sound (skip silence) Erster Ton (Stille überspringen) - + Beginning of track Anfang des Tracks - + Reject Nicht erlauben - + Allow, but stop deck Erlauben, aber Wiedergabe des Decks stoppen - + Allow, play from load point Erlauben und vom Ladepunkt aus abspielen - + 4% 4 % - + 6% (semitone) 6 % (Halbton) - + 8% (Technics SL-1210) 8 % (Technics SL-1210) - + 10% 10 % - + 16% 16 % - + 24% 24 % - + 50% 50 % - + 90% 90 % @@ -6276,62 +6512,62 @@ 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 - + Disabled Deaktiviert - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + This skin does not support color schemes Dieses Skin unterstützt keine Farbschemen - + Information Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. Mixxx muss neu gestartet werden, damit die neuen Sprach-, Skalierungs- oder Multi-Sampling-Einstellungen wirksam werden. @@ -6559,67 +6795,97 @@ und ermöglicht es Ihnen die Tonhöhe für harmonisches Mixen anzupassen.Details finden Sie im Handbuch - + 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 - + Item is not a directory or directory is missing Element ist kein Verzeichnis oder Verzeichnis fehlt - + Choose a music directory Wählen Sie ein Musikverzeichnis - + 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 überprüfen. 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>Das Ausblenden von Tracks speichert deren 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 mit seinem neuen Speicherort verknüpfen - + + Black + Schwarz + + + + ExtraBold + ExtraFett + + + + Bold + Fett + + + + SemiBold + HalbFett + + + + Medium + Mittel + + + + Light + Dünn + + + Select Library Font Schriftart der Bibliothek auswählen @@ -6668,262 +6934,267 @@ und ermöglicht es Ihnen die Tonhöhe für harmonisches Mixen anzupassen.Bibliothek beim Start erneut scannen - + Audio File Formats Audio-Dateiformate - + Track Table View Track-Tabellenansicht - + Track Double-Click Action: Aktion beim Doppelklick auf Tracks: - + BPM display precision: BPM-Anzeigegenauigkeit: - + Session History Sitzungsverlauf - + Track duplicate distance Mindestabstand zwischen Track-Duplikate - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Beim erneuten Abspielen eines Tracks nur dann im Verlauf eintragen, wenn mehr als N andere Tracks dazwischen gespielt wurden - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Verlauf-Wiedergabelisten mit weniger als N Tracks werden gelöscht<br/><br/>Hinweis: Die Bereinigung wird beim Starten und Beenden von Mixxx durchgeführt. - + Delete history playlist with less than N tracks Verlauf-Wiedergabelisten mit weniger als N Tracks löschen - + Library Font: Schriftart der Bibliothek: - + + Show scan summary dialog + + + + Grey out played tracks Gepielte Tracks ausgrauen - + Track Search Track-Suche - + Enable search completions Suchvorschläge aktivieren - + Enable search history keyboard shortcuts Suchverlauf-Tastenkombinationen aktivieren - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution Bevorzugte Auflösung Cover-Bilder - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Cover-Bilder von coverartarchive.com abrufen unter Verwendung von Metadaten von MusicBrainz importieren. - + Note: ">1200 px" can fetch up to very large cover arts. Hinweis: ">1200 px" kann sehr große Cover-Bilder abrufen. - + >1200 px (if available) >1200 px (falls verfügbar) - + 1200 px (if available) 1200 px (falls verfügbar) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Einstellungs-Verzeichnis - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Das Mixxx-Einstellungsverzeichnis enthält die Bibliotheksdatenbank, verschiedene Konfigurationsdateien, Protokolldateien, Track-Analysedaten sowie benutzerdefinierte Controller-Mappings. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Bearbeiten Sie diese Dateien nur, wenn Sie wissen was Sie tun, und nur wenn Mixxx nicht läuft. - + Open Mixxx Settings Folder Mixxx-Einstellungsordner öffnen - + Library Row Height: Zeilenhöhe der Bibliothek: - + Use relative paths for playlist export if possible Wenn möglich, relative Pfade für den Export von Wiedergabelisten verwenden - + ... - + px px - + Synchronize library track metadata from/to file tags Track-Metadaten zwischen Bibliothek und Datei-Tags synchronisieren - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automatisch modifizierte Track-Metadaten aus der Bibliothek in Datei-Tags schreiben und Metadaten aus veränderten Datei-Tags in die Bibliothek importieren - + Synchronize Serato track metadata from/to file tags (experimental) Serato-Metadaten mit Dateien synchronisieren (experimentell) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Track-Farbe, Beatgrid, BPM-Sperre, Cue-Punkte und Loops mit SERATO_MARKERS/MARKERS2-Datei-Tags synchron halten.<br/><br/>WARNUNG: Durch Aktivieren dieser Option wird auch der erneute Import von Serato-Metadaten ermöglicht, nachdem Dateien außerhalb von Mixxx geändert wurden. Beim erneuten Import werden vorhandene Metadaten in Mixxx durch die in den Datei-Tags gefundenen Metadaten ersetzt. Benutzerdefinierte Metadaten, welche nicht in den Datei-Tags enthalten sind (z.B. Loop-Farben) gehen verloren. - + Edit metadata after clicking selected track Metadaten nach Klick auf ausgewählten Track bearbeiten - + Search-as-you-type timeout: Timeout für Instant-Suche: - + ms ms - + Load track to next available deck Track in das nächste verfügbare Deck laden - + External Libraries Externe Bibliotheken - + You will need to restart Mixxx for these settings to take effect. Sie werden Mixxx neu starten müssen, damit diese Änderungen wirksam werden. - + Show Rhythmbox Library Rhythmbox-Bibliothek anzeigen - + Track Metadata Synchronization / Playlists Synchronisation von Track-Metadaten / Wiedergabelisten - + Add track to Auto DJ queue (bottom) Track zur Auto-DJ Warteschlange hinzufügen (Ende) - + Add track to Auto DJ queue (top) Track zur Auto-DJ Warteschlange hinzufügen (Anfang) - + Ignore Ignorieren - + Show Banshee Library Banshee-Bibliothek anzeigen - + Show iTunes Library iTunes-Bibliothek anzeigen - + Show Traktor Library Traktor-Bibliothek anzeigen - + Show Rekordbox Library Rekordbox-Bibliothek anzeigen - + Show Serato Library Serato-Bibliothek anzeigen - + All external libraries shown are write protected. Alle angezeigten externen Bibliotheken sind schreibgeschützt. @@ -7268,33 +7539,33 @@ und ermöglicht es Ihnen die Tonhöhe für harmonisches Mixen anzupassen. DlgPrefRecord - + Choose recordings directory Aufnahme-Verzeichnis auswählen - - + + Recordings directory invalid Aufnahmeverzeichnis ungültig - + Recordings directory must be set to an existing directory. Das Aufnahmeverzeichnis muss auf ein vorhandenes Verzeichnis eingestellt sein. - + Recordings directory must be set to a directory. Das Aufnahmeverzeichnis muss auf ein Verzeichnis eingestellt sein. - + Recordings directory not writable Aufnahmeverzeichnis nicht beschreibbar - + You do not have write access to %1. Choose a recordings directory you have write access to. Sie haben keinen Schreibzugriff auf %1. Wählen Sie ein Aufnahmeverzeichnis, auf das Sie Schreibzugriff haben. @@ -7312,43 +7583,55 @@ und ermöglicht es Ihnen die Tonhöhe für harmonisches Mixen anzupassen.Durchsuchen… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Qualität - + Tags Tags - + Title Titel - + Author Autor - + Album Album - + Output File Format Ausgabe-Dateiformat - + Compression Komprimierung - + Lossy Verlustbehaftet @@ -7363,12 +7646,12 @@ und ermöglicht es Ihnen die Tonhöhe für harmonisches Mixen anzupassen.Verzeichnis: - + Compression Level Komprimierungsgrad - + Lossless Verlustfrei @@ -7501,172 +7784,177 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Standard (lange Verzögerung) - + Experimental (no delay) Experimentell (keine Verzögerung) - + Disabled (short delay) Deaktiviert (kurze Verzögerung) - + Soundcard Clock Taktgeber der Soundkarte - + Network Clock Netzwerk-Taktgeber - + Direct monitor (recording and broadcasting only) Direkter Monitor (nur Aufzeichnung und Liveübertragung) - + Disabled Deaktiviert - + Enabled Aktiviert - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Um Echtzeit-Scheduling zu aktivieren (aktuell deaktiviert), siehe das %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. Im %1 sind Soundkarten und Controller aufgeführt, die Sie für die Verwendung von Mixxx in Betracht ziehen sollten. - + Mixxx DJ Hardware Guide Mixxx DJ Hardware-Handbuch - + + Find details in the Mixxx user manual + Details sind im Mixxx Benutzerhandbuch zu finden. + + + Information Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) automatisch (<= 1024 Frames/Periode) - + 2048 frames/period 2048 Frames/Periode - + 4096 frames/period 4096 Frames/Periode - + Are you sure? - Sind Sie sich sicher? + Bist du dir sicher? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - Sind Sie sich sicher, dass Sie fortfahren möchtest? + Bist du dir sicher, dass du fortfahren möchtest? - + No Nein - + Yes, I know what I am doing Ja, ich weiß, was ich tue - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Mikrofon-Eingänge sind nicht synchron im Aufnahmen- und Liveübertragungssignal, verglichen mit dem was Sie hören. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Messen Sie die Round-Trip-Latenzzeit und geben Sie diese für die Mikrofon-Latenzkompensation ein, um das Mikrofon-Timing auszurichten. - + Refer to the Mixxx User Manual for details. Details dazu finden Sie im Mixxx-Benutzerhandbuch. - + Configured latency has changed. Die eingestellte Latenz hat sich geändert. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Messen Sie erneut die Round-Trip-Latenzzeit und geben Sie diese für die Mikrofon-Latenzkompensation ein, um das Mikrofon-Timing auszurichten. - + Realtime scheduling is enabled. Echtzeit-Scheduling ist aktiviert. - + Main output only Nur Hauptausgang - + Main and booth outputs Haupt- und Kabinenausgänge - + %1 ms %1 ms - + Configuration error Fehler in der Konfiguration @@ -7733,17 +8021,22 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Pufferunterlauf-Zähler - + 0 0 @@ -7768,12 +8061,12 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Eingang - + System Reported Latency Vom System gemeldete Latenz - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Vergrößern Sie den Audio-Puffer, wenn sich der Unterlaufzähler erhöht oder wenn Sie Aussetzer während der Wiedergabe hören. @@ -7803,7 +8096,7 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Hinweise und Diagnose - + Downsize your audio buffer to improve Mixxx's responsiveness. Verkleinern Sie Ihren Audio-Puffer, um Mixxx' Reaktionsfähigkeit zu verbessern. @@ -7850,7 +8143,7 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Vinyl-Konfiguration - + Show Signal Quality in Skin Signalqualität im Skin anzeigen @@ -7886,46 +8179,51 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 Deck 3 - + Deck 4 Deck 4 - + Signal Quality Signalqualität - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Angetrieben von xwax - + Hints Hinweise - + Select sound devices for Vinyl Control in the Sound Hardware pane. Wählen Sie Audiogeräte für die Vinyl-Steuerung in den Sound-Hardware-Einstellungen aus. @@ -7933,58 +8231,58 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas DlgPrefWaveform - + Filtered Gefiltert - + HSV HSV - + RGB RGB - + Top Oben - + Center Mitte - + Bottom Unten - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + 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. @@ -8002,22 +8300,17 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Bildwiederholrate - + OpenGL Status - OpenGL-Status + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Zeigt an, welche OpenGL-Version von der aktuellen Plattform unterstützt wird. - - Normalize waveform overview - Wellenform-Übersicht normalisieren - - - + Average frame rate Durchschnittliche Bildwiederholrate @@ -8033,7 +8326,7 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Standard-Vergrößerung - + Displays the actual frame rate. Zeigt die tatsächliche Bildwiederholrate. @@ -8068,7 +8361,7 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Tiefen - + Show minute markers on waveform overview Minuten-Marker in der Wellenform-Übersicht anzeigen @@ -8113,7 +8406,7 @@ Die Ziel-Lautheit ist ungefähr und nimmt an, dass Track-Vorverstärkung und Mas Globale visuelle Verstärkung - + 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. Die Wellenform-Übersicht zeigt die Wellenform-Hüllkurve des gesamten Tracks. @@ -8182,22 +8475,22 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste - + Caching Zwischenspeicherung - + 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 speichert die Wellenformen Ihrer Tracks auf der Festplatte, wenn Sie einen Track das erste Mal laden. Dies erfordert zusätzlichen Speicherplatz, reduziert aber die CPU-Auslastung, wenn Sie live spielen. - + Enable waveform caching Zwischenspeicherung der Wellenformen aktivieren - + Generate waveforms when analyzing library Wellenformen bei der Analyse der Bibliothek erzeugen @@ -8213,7 +8506,7 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste - + Type Typ @@ -8243,12 +8536,58 @@ Wählen Sie aus verschiedenen Arten der Wellenform-Anzeige, welche sich in erste Verschiebt die Position des Wiedergabemarkers auf den Wellenformen nach links, rechts oder mittig (Standard). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Zwischengespeicherte Wellenformen löschen @@ -8740,7 +9079,7 @@ Dies kann nicht rückgängig gemacht werden! BPM: - + Location: Speicherort: @@ -8755,27 +9094,27 @@ Dies kann nicht rückgängig gemacht werden! Kommentare - + BPM BPM - + Sets the BPM to 75% of the current value. Setzt die BPM auf 75 % des aktuellen Wertes. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Setzt die BPM auf 50 % des aktuellen Wertes. - + Displays the BPM of the selected track. Zeigt die BPM des gewählten Tracks an. @@ -8830,49 +9169,49 @@ Dies kann nicht rückgängig gemacht werden! Genre - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Setzt die BPM auf 200 % des aktuellen Wertes. - + Double BPM BPM verdoppeln - + Halve BPM BPM halbieren - + Clear BPM and Beatgrid BPM und Beatgrid löschen - + Move to the previous item. "Previous" button Zum vorherigen Stück wechseln. - + &Previous &Zurück - + Move to the next item. "Next" button Zum nächsten Stück wechseln. - + &Next &Weiter @@ -8897,12 +9236,12 @@ Dies kann nicht rückgängig gemacht werden! Farbe - + Date added: Hinzugefügt am: - + Open in File Browser Im Dateibrowser öffnen @@ -8912,12 +9251,17 @@ Dies kann nicht rückgängig gemacht werden! Abtastrate: - + + Filesize: + + + + Track BPM: Track-BPM: - + 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. @@ -8926,90 +9270,90 @@ Benutzen Sie diese Einstellung wenn Ihre Tracks ein konstantes Tempo haben (z.B. Das führt oft zu Beatgrids mit höherer Qualität, wird aber nicht so gut bei Tracks mit Tempowechseln funktionieren. - + Assume constant tempo Konstantes Tempo annehmen - + Sets the BPM to 66% of the current value. Setzt die BPM auf 66 % des aktuellen Wertes. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Setzt die BPM auf 150 % des aktuellen Wertes. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Setzt die BPM auf 133 % des aktuellen Wertes. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Tippen Sie im Takt um die BPM auf die Geschwindigkeit festzulegen, die Sie tippen. - + Tap to Beat Zum Beat tippen - + Hint: Use the Library Analyze view to run BPM detection. Hinweis: Nutzen Sie die Analysieren-Ansicht in der Bibliothek für die BPM-Erkennung. - + Save changes and close the window. "OK" button Änderungen speichern und Fenster schließen. - + &OK &OK - + Discard changes and close the window. "Cancel" button Änderungen verwerfen und Fenster schließen. - + Save changes and keep the window open. "Apply" button Änderungen speichern und Fenster offen halten. - + &Apply &Anwenden - + &Cancel Ab&brechen - + (no color) (keine Farbe) @@ -9166,7 +9510,7 @@ Das führt oft zu Beatgrids mit höherer Qualität, wird aber nicht so gut bei T &OK - + (no color) (keine Farbe) @@ -9368,27 +9712,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (nahezu Hi-Fi-Qualität) - + Unknown, using Rubberband (better) Unbekannt, nutze Rubberband (besser) - + Unknown, using Soundtouch Unbekannt, Soundtouch wird verwenden @@ -9603,15 +9947,15 @@ 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 @@ -9623,57 +9967,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9681,37 +10025,37 @@ Unterstützung. Library - + This or a parent directory is already in your library. Dieses oder ein übergeordnetes Verzeichnis befindet sich bereits in Ihrer Bibliothek. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Dieses oder ein aufgelistetes Verzeichnis existiert nicht oder ist nicht zugänglich. Der Vorgang wird zur zur Vermeidung von Inkonsistenzen in der Bibliothek abgebrochen. - - + + This directory can not be read. Dieses Verzeichnis kann nicht gelesen werden. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ein unbekannter Fehler ist aufgetreten. Der Vorgang wird zur zur Vermeidung von Inkonsistenzen in der Bibliothek abgebrochen. - + Can't add Directory to Library Verzeichnis kann nicht zur Bibliothek hinzugefügt werden - + Could not add <b>%1</b> to your library. %2 @@ -9720,27 +10064,27 @@ Der Vorgang wird zur zur Vermeidung von Inkonsistenzen in der Bibliothek abgebro %2 - + Can't remove Directory from Library Verzeichnis kann nicht aus der Bibliothek entfernt werden - + An unknown error occurred. Es ist ein unbekannter Fehler aufgetreten. - + This directory does not exist or is inaccessible. Dieses Verzeichnis existiert nicht oder ist nicht zugänglich. - + Relink Directory Verzeichnis neu verknüpfen - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9752,22 +10096,22 @@ Der Vorgang wird zur zur Vermeidung von Inkonsistenzen in der Bibliothek abgebro 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. @@ -9908,12 +10252,12 @@ Möchten Sie wirklich diese Datei überschreiben? Ausgeblendete Tracks - + Export to Engine DJ Exportieren nach Engine DJ - + Tracks Tracks @@ -9921,37 +10265,37 @@ Möchten Sie wirklich diese Datei ü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 @@ -9961,213 +10305,213 @@ Möchten Sie wirklich diese Datei überschreiben? Skin - + Allow Mixxx to hide the menu bar? Darf Mixxx die Menüleiste ausblenden? - + Hide Always show the menu bar? Ausblenden - + Always show Immer anzeigen - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Die Mixxx-Menüleiste ist ausgeblendet und kann mit einem einzigen Druck der <b>Alt</b> Taste umgeschaltet werden.<br><br><b>%1</b> anklicken, um zuzustimmen.<br><br><b>%2</b>anklicken, um dies zu deaktivieren , z.B. wenn Sie Mixxx nicht mit einer Tastatur verwenden.<br><br>Sie können diese Einstellung jederzeit unter Einstellungen -> Benutzeroberfläche ändern.<br> - + Ask me again Nochmals fragen - - + + 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total %1 Tracks insgesamt - + %1 new tracks found %1 neue Tracks gefunden - + %1 moved tracks detected %1 verschobene Tracks erkannt - + %1 tracks are missing (%2 total) %1 Tracks fehlen (%2 insgesamt) - + %1 tracks have been rediscovered %1 Tracks wurden wiedergefunden - + Library scan finished Bibliothek-Scan abgeschlossen - + 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? @@ -10183,13 +10527,13 @@ Wollen Sie ein Eingabegerät auswählen? PlaylistFeature - + Lock Sperren - - + + Playlists Wiedergabelisten @@ -10199,58 +10543,63 @@ Wollen Sie ein Eingabegerät auswählen? Wiedergabeliste mischen - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Entsperren - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 währenddessen 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 eines Live-DJ-Sets immer darauf, wie das Publikum auf die von Ihnen gespielte Musik reagiert. - + Create New Playlist Neue Wiedergabeliste erstellen @@ -10293,7 +10642,7 @@ Wollen Sie ein Eingabegerät auswählen? Mixxx Track Colors - Mixxx-Track-Farben + Mixxx Track-Farben @@ -10349,59 +10698,59 @@ Wollen Sie ein Eingabegerät auswählen? QMessageBox - + Upgrading Mixxx Mixxx aktualisieren - + 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. Möchten Sie Ihre 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 @@ -10515,69 +10864,82 @@ Möchten Sie Ihre Bibliothek jetzt nach Cover-Dateien scannen? 14-bit (MSB) - + Main + Audio path indetifier Haupt - + Booth + Audio path indetifier Kabine - + Headphones + Audio path indetifier Kopfhörer - + Left Bus + Audio path indetifier Linker Bus - + Center Bus + Audio path indetifier Mitten-Bus - + Right Bus + Audio path indetifier Rechter Bus - + Invalid Bus + Audio path indetifier Ungültiger Bus - + Deck + Audio path indetifier Deck - + Record/Broadcast + Audio path indetifier Aufnahme/Übertragung - + Vinyl Control + Audio path indetifier Vinyl-Steuerung - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier Aux - + Unknown path type %1 + Audio path Unbekannter Pfad-Typ %1 @@ -10920,47 +11282,49 @@ Mit einer Breite von Null kann der gesamte Verzögerungsbereich manuell überstr Breite - + Metronome Metronom - + + The Mixxx Team Das Mixxx-Team - + Adds a metronome click sound to the stream Fügt dem Audio-Signal ein Metronom-Tick hinzu - + BPM BPM - + Set the beats per minute value of the click sound Stellt den Beats pro Minute-Wert des Metronom-Tick ein - + Sync Synchronisation - + Synchronizes the BPM with the track if it can be retrieved Synchronisiert die BPM mit dem Track, wenn sie abgerufen werden können - + + Gain Verstärkung - + Set the gain of metronome click sound @@ -11764,14 +12128,14 @@ Ganz rechts: Ende der Effektperiode OGG-Aufnahme wird nicht unterstützt. OGG/Vorbis-Bibliothek konnte nicht initialisiert werden. - - + + encoder failure Kodiererfehler - - + + Failed to apply the selected settings. Die ausgewählten Einstellungen konnten nicht übernommen werden. @@ -11911,7 +12275,7 @@ Hinweis: Kompensiert "Chipmunk"- oder "Brumm"- StimmenDie Intensität der Verstärkung, die auf das Audiosignal angewendet wird. Bei höheren Pegeln wird der Ton stärker verzerrt. - + Passthrough Passthrough @@ -11974,19 +12338,90 @@ and the processed output signal as close as possible in perceived loudnessAus - - On - Ein + + On + Ein + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Schwellwert (dBFS) + + + + + Threshold + Schwellwert + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Schwellwert (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Schwellwert + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12018,6 +12453,7 @@ Bei einem Verhältnis von 1:1 findet keine Komprimierung statt, da der Eingang g Knie (dBFS) + Knee Knie @@ -12028,11 +12464,13 @@ Bei einem Verhältnis von 1:1 findet keine Komprimierung statt, da der Eingang g Der Knie-Regler wird verwendet, um eine sanftere Kompressionskurve zu erreichen + Attack (ms) Attack (ms) + Attack Attack @@ -12044,11 +12482,13 @@ will set in once the signal exceeds the threshold Der Attack-Regler bestimmt, wie schnell die Kompression einsetzt, wenn das Signal den Schellwert überschreitet + Release (ms) Release (ms) + Release Release @@ -12077,12 +12517,12 @@ may introduce a 'pumping' effect and/or distortion. verschiedene - + built-in eingebaut - + missing fehlt @@ -12117,42 +12557,42 @@ may introduce a 'pumping' effect and/or distortion. Stem #%1 - + Empty Leer - + Simple Einfach - + Filtered Gefiltert - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Gestapelt - + Unknown Unbekannt @@ -12413,193 +12853,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx hat ein Problem festgestellt - + Could not allocate shout_t shout_t konnte nicht zugewiesen werden - + Could not allocate shout_metadata_t shout_metadata_t konnte nicht zugewiesen werden - + Error setting non-blocking mode: Fehler beim Aktivieren des Non-blocking Modus: - + Error setting tls mode: Fehler beim Aktivieren des TLS Modus: - + Error setting hostname! Fehler beim Festlegen des Host-Namens! - + Error setting port! Fehler beim Festlegen des Ports! - + Error setting password! Fehler beim Festlegen des Passwortes! - + Error setting mount! Fehler beim Festlegen des Einhängepunktes! - + Error setting username! Fehler beim Festlegen des Benutzernamens! - + Error setting stream name! Fehler beim Festlegen des Stream-Namens! - + Error setting stream description! Fehler beim Festlegen der Stream-Beschreibung! - + Error setting stream genre! Fehler beim Festlegen des Stream-Genres! - + Error setting stream url! Fehler beim Festlegen der Stream-URL! - + Error setting stream IRC! Fehler beim Festlegen des Stream-IRC! - + Error setting stream AIM! Fehler beim Festlegen des Stream-AIM! - + Error setting stream ICQ! Fehler beim Festlegen des Stream-ICQ! - + Error setting stream public! Fehler beim Festlegen als Öffentlicher Stream! - + Unknown stream encoding format! Unbekanntes Stream-Kodierungsformat! - + Use a libshout version with %1 enabled Verwenden Sie eine libshout-Version mit %1 aktiviert - + Error setting stream encoding format! Fehler beim Einstellen des Stream-Kodierungsformats! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Liveübertragung in 96 kHz mit Ogg Vorbis wird derzeit nicht unterstützt. Bitte versuchen Sie eine andere Abtastrate oder wechseln Sie zu einer anderen Kodierung. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Für weitere Informationen, siehe https://github.com/mixxxdj/mixxx/issues/5701. - + Unsupported sample rate Nicht unterstützte Abtastrate - + Error setting bitrate Fehler beim Festlegen der Bitrate - + Error: unknown server protocol! Fehler: Unbekanntes Server-Protokoll! - + Error: Shoutcast only supports MP3 and AAC encoders Fehler: Shoutcast unterstützt nur MP3- und AAC-Encoder - + Error setting protocol! Fehler beim Festlegen des Protokolls! - + Network cache overflow Netzwerk-Zwischenspeicher-Überlauf - + Connection error Verbindungsfehler - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Eine der Liveübertragung-Verbindungen hat diesen Fehler ausgelöst:<br><b>Fehler bei Verbindung '%1':</b><br> - + Connection message Verbindungsnachricht - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Nachricht von Liveübertragung-Verbindung '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Verbindung zum Streaming-Server verloren, und %1 Versuche erneut zu verbinden sind fehlgeschlagen. - + Lost connection to streaming server. Verbindung zum Streaming-Server verloren. - + Please check your connection to the Internet. Bitte überprüfen Sie die Verbindung zum Internet. - + Can't connect to streaming server Verbindung zum Streaming-Server kann nicht hergestellt werden - + Please check your connection to the Internet and verify that your username and password are correct. Bitte überprüfen Sie die Internetverbindung und vergewissern sich, dass Ihr Benutzername und Kennwort richtig sind. @@ -12607,7 +13047,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Gefiltert @@ -12615,23 +13055,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device ein Gerät - + An unknown error occurred Es ist ein unbekannter Fehler aufgetreten - + Two outputs cannot share channels on "%1" Zwei Ausgänge können sich keine Kanäle an "%1" teilen - + Error opening "%1" Fehler beim Öffnen von "%1" @@ -12704,17 +13144,17 @@ may introduce a 'pumping' effect and/or distortion. Identifying track through AcoustID - + Identifiziere Track über AcoustID Could not identify track through AcoustID. - + Konnte Track über AcoustID nicht identifizieren. Could not find this track in the MusicBrainz database. - + Konnte diesen Track in der MusicBrainz Datenbank nicht finden @@ -12816,7 +13256,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Drehendes Vinyl @@ -12998,7 +13438,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Cover-Bild @@ -13188,243 +13628,243 @@ may introduce a 'pumping' effect and/or distortion. Hält die Verstärkung des Tiefen-Equalizer auf Null wenn aktiviert. - + Displays the tempo of the loaded track in BPM (beats per minute). Zeigt das Tempo des geladenen Tracks in BPM (Beats pro Minute). - + Tempo Tempo - + Key The musical key of a track Tonart - + BPM Tap BPM-Tippen - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Passt die BPM der eingetippten BPM an wenn wiederholt getippt wird. - + Adjust BPM Down BPM verringern - + When tapped, adjusts the average BPM down by a small amount. Passt die durchschnittlichen BPM ein klein wenig nach unten an wenn getippt wird. - + Adjust BPM Up BPM erhöhen - + When tapped, adjusts the average BPM up by a small amount. Passt die durchschnittlichen BPM ein klein wenig nach oben an wenn getippt wird. - + Adjust Beats Earlier Beats früher - + When tapped, moves the beatgrid left by a small amount. Verschiebt das Beatgrid ein klein wenig nach links wenn getippt wird. - + Adjust Beats Later Beats später - + When tapped, moves the beatgrid right by a small amount. Verschiebt das Beatgrid ein klein wenig nach rechts wenn getippt wird. - + Tempo and BPM Tap Tempo und BPM-Tip - + Show/hide the spinning vinyl section. Vinyl-Steuerung-Bereich ein-/ausblenden. - + Keylock Tonhöhensperre - + Toggling keylock during playback may result in a momentary audio glitch. Umschalten der Tonhöhensperre während der Wiedergabe kann zu kurzzeitigen Aussetzern führen. - + Toggle visibility of Loop Controls Sichtbarkeit der Loop-Steuerelemente umschalten - + Toggle visibility of Beatjump Controls Sichtbarkeit der Beatjump-Steuerelemente umschalten - + Toggle visibility of Rate Control Sichtbarkeit der Geschwindigkeit-Steuerelemente umschalten - + Toggle visibility of Key Controls Sichtbarkeit der Tonart-Steuerelemente umschalten - + (while previewing) (während der Vorschau) - + Places a cue point at the current position on the waveform. Setzt einen Cue-Punkt an der aktuellen Position in der Wellenform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Track am Cue-Punkt stoppen, oder zum Cue-Punkt gehen und nach dem Loslassen wiedergeben (CUP-Modus). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Cue-Punkt setzen (Pioneer/Mixxx/Numark-Modus), Cue-Punkt setzen und nach dem Loslassen wiedergeben (CUP-Modus) oder Vorhören von hier starten (Denon-Modus). - + Is latching the playing state. Hält den Wiedergabestatus fest. - + Seeks the track to the cue point and stops. Springt im Track zum Cue-Punkt und stoppt. - + Play Wiedergabe - + Plays track from the cue point. Track vom Cue-Punkt wiedergeben. - + 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!) (Dieses Skin sollte aktualisiert werden, um Sync-Lock zu verwenden!) - + Enable Sync Lock Sync-Lock aktivieren - + Tap to sync the tempo to other playing tracks or the sync leader. Tippen um das Tempo mit anderen spielenden Tracks oder dem Sync-Leader zu synchronisieren. - + Enable Sync Leader Sync-Leader aktivieren - + When enabled, this device will serve as the sync leader for all other decks. Wenn aktiviert, wird dieses Gerät als Sync-Leader für alle anderen Decks dienen. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Dies ist von Bedeutung, wenn ein Track mit dynamischem Tempo in ein Sync-Leader-Deck geladen wird, so dass anderen synchronisierte Geräte das wechselnde Tempo übernehmen. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Ändert die Wiedergabegeschwindigkeit (beeinflusst das Tempo als auch die Tonhöhe). Wenn die Tonhöhensperre aktiviert ist, wird nur das Tempo beeinflusst. - + Tempo Range Display Tempobereichsanzeige - + Displays the current range of the tempo slider. Zeigt den aktuellen Bereich des Temporeglers an. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Nachladen wenn kein Track geladen ist, d.h. lädt den letzten ausgeworfenen Track (von jedem Deck) erneut. - + Delete selected hotcue. Ausgewählten Hotcue löschen. - + Track Comment Track-Kommentar - + Displays the comment tag of the loaded track. Zeigt das Kommentar-Tag des geladenen Tracks an. - + Opens separate artwork viewer. Öffnet separate Cover-Bild Anzeige. - + Effect Chain Preset Settings Effektketten-Einstellungen - + Show the effect chain settings menu for this unit. Die Effektketten-Einstellungen für diese Einheit anzeigen. - + Select and configure a hardware device for this input Wählen und konfigurieren Sie ein Hardwaregerät für diesen Eingang - + Recording Duration Aufnahmedauer @@ -13584,7 +14024,7 @@ may introduce a 'pumping' effect and/or distortion. If keylock is disabled, pitch is also affected. - + Wenn Keylock deaktiviert ist, wird auch der Pitch beeinflusst. @@ -13594,12 +14034,12 @@ may introduce a 'pumping' effect and/or distortion. Raises the track playback speed (tempo). - + Erhöht die Track Abspielgeschwindigkeit (Tempo). Raises playback speed in small steps. - + Erhöht die Abspielgeschwindigkeit in kleinen Schritten. @@ -13609,12 +14049,12 @@ may introduce a 'pumping' effect and/or distortion. Lowers the track playback speed (tempo). - + Verringert die Track Abspielgeschwindigkeit (Tempo). Lowers playback speed in small steps. - + Verringert die Abspielgeschwindigkeit in kleinen Schritten. @@ -13624,972 +14064,1007 @@ may introduce a 'pumping' effect and/or distortion. Holds playback speed higher while active (tempo). - + Hält die Abspielgeschwindigkeit höher, wenn aktiviert (Tempo). Holds playback speed higher (small amount) while active. - + Hält die Abspielgeschwindigkeit höher (kleinerer Wert), wenn aktiviert. Slow Down Temporarily (Nudge) - + Temporär Verlangsamen (Nudge) Holds playback speed lower while active (tempo). - + Hält die Abspielgeschwindigkeit niedriger, wenn aktiviert (Tempo). Holds playback speed lower (small amount) while active. - + Hält die Abspielgeschwindigkeit niedriger (kleinerer Wert), wenn aktiviert. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Letzte BPM/Beatgrid Änderung rückgängig machen - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + BPM-/Beatgrid-Sperre umschalten - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier Cue-Punkte nach vorn verschieben - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Verschieben von Cues, die aus Serato oder Rekordbox importiert wurden, wenn sie leicht neben der Zeit liegen. - + Left click: shift 10 milliseconds earlier Linksklick: 10 Millisekunden nach vorn verschieben - + Right click: shift 1 millisecond earlier Rechtsklick: 1 Millisekunde nach vorn verschieben - + Shift cues later Cue-Punkte nach hinten verschieben - + Left click: shift 10 milliseconds later Linksklick: 10 Millisekunden nach hinten verschieben - + Right click: shift 1 millisecond later Rechtsklick: 1 Millisekunde nach hinten verschieben - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. Schaltet das Audiosignal des gewählten Kanals im Hauptausgang stumm. - + Main mix enable Hauptmix aktivieren - + Hold or short click for latching to mix this input into the main output. Halten oder kurzes Klicken zum Einrasten um diesen Eingang in den Hauptausgang zu mischen. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers Sampler erweitern/reduzieren - + Toggle expanded samplers view. Erweiterte Sampler-Ansicht ein-/ausschalten. - + Displays the duration of the running recording. Zeigt die Dauer der laufenden Aufnahme. - + Auto DJ is active Auto-DJ aktiviert - + Red for when needle skip has been detected. Rot wenn ein Nadel-Sprung erkannt wurde. - + Hot Cue - Track will seek to nearest previous hotcue point. Hot Cue - Der Track springt zum nächstgelegenen vorherigen Hotcue-Punkt. - + Sets the track Loop-In Marker to the current play position. Setzt den Loop-In Marker des Tracks an der aktuellen Wiedergabeposition. - + Press and hold to move Loop-In Marker. Drücken und halten um Loop-In Marker zu verschieben. - + Jump to Loop-In Marker. Zum Loop-In Marker springen. - + Sets the track Loop-Out Marker to the current play position. Setzt den Loop-Out Marker des Tracks an der aktuellen Wiedergabeposition. - + Press and hold to move Loop-Out Marker. Drücken und halten um Loop-Out Marker zu verschieben. - + Jump to Loop-Out Marker. Zum Loop-Out Marker springen. - + If the track has no beats the unit is seconds. Hat der Track keine Beats, ist die Einheit Sekunden. - + Beatloop Size Beatloop-Größe - + Select the size of the loop in beats to set with the Beatloop button. Wähle die Größe des Loop in Beats aus, die mit der Beatloop-Taste eingestellt werden soll. - + Changing this resizes the loop if the loop already matches this size. Ändern dieser Größe verändert den Loop, wenn der Loop bereits dieser Größe entspricht. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Halbiere die Größe eines vorhandenen Beatloop, oder halbiere die Größe des nächsten mit dem Beatloop-Button festgelegten Beatloop. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Verdopple die Länge eines vorhandenen Beatloop, oder verdopple die Länge des nächsten mit dem Beatloop-Button festgelegten Beatloop. - + Start a loop over the set number of beats. Startet einen Loop über die festgelegte Anzahl von Beats. - + Temporarily enable a rolling loop over the set number of beats. Vorübergehend einen Loop-Roll über die festgelegte Anzahl von Beats aktivieren. - + Beatloop Anchor - + Beatloop Anker - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size Größe von Beat-Sprung / Loop-Verschiebung - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Wähle die Anzahl der Beats aus, um den Loop mit den Vorwärts/Rückwärts Beat-Sprung-Tasten zu springen oder zu verschieben. - + Beatjump Forward Beat-Sprung vorwärts - + Jump forward by the set number of beats. Vorwärts springen über die festgelegte Anzahl von Beats. - + Move the loop forward by the set number of beats. Den Loop vorwärts verschieben über die festgelegte Anzahl von Beats. - + Jump forward by 1 beat. Vorwärts springen um 1 Beat. - + Move the loop forward by 1 beat. Verschieben des Loop um 1 Beat vorwärts. - + Beatjump Backward Beat-Sprung rückwärts - + Jump backward by the set number of beats. Rückwärts springen über die festgelegte Anzahl von Beats. - + Move the loop backward by the set number of beats. Rückwärts verschieben des Loop über die festgelegte Anzahl von Beats. - + Jump backward by 1 beat. Rückwärts springen um 1 Beat. - + Move the loop backward by 1 beat. Verschieben des Loop um 1 Beat rückwärts. - + Reloop Reloop - + If the loop is ahead of the current position, looping will start when the loop is reached. Wenn der Loop vor der aktuellen Wiedergabeposition ist, beginnt das Looping wenn der Loop erreicht wird. - + Works only if Loop-In and Loop-Out Marker are set. Funktioniert nur wenn die Loop-In und Loop-Out Marker gesetzt sind. - + Enable loop, jump to Loop-In Marker, and stop playback. Loop aktivieren, zum Loop-In Marker springen, und Wiedergabe stoppen. - + Displays the elapsed and/or remaining time of the track loaded. Zeigt die bereits verstrichene und/oder verbleibende Zeit des geladenen Tracks an. - + Click to toggle between time elapsed/remaining time/both. Klicken zum Umschalten zwischen vergangener/verbleibender Zeit/ beiden. - + Hint: Change the time format in Preferences -> Decks. Hinweis: Ändern Sie das Zeitformat in Voreinstellungen -> Decks. - + Show/hide intro & outro markers and associated buttons. Intro- und Outro-Marker und zugehörige Tasten ein-/ausblenden. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Intro Start-Marker - - - - + + + + If marker is set, jumps to the marker. Springt zum Marker wenn bereits ein Marker gesetzt wurde. - - - - + + + + If marker is not set, sets the marker to the current play position. Setzt den Marker an der aktuellen Wiedergabeposition wenn noch kein Marker gesetzt wurde. - - - - + + + + If marker is set, clears the marker. Löscht den Marker wenn bereits ein Marker gesetzt wurde. - + 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 Passen Sie die Mischung des unverarbeiteten (Dry) Eingangssignals mit dem verarbeiteten (Wet) Ausgangssignal der Effekteinheit an - + D/W mode: Crossfade between dry and wet D/W Modus: Überblendung zwischen Dry und Wet - + D+W mode: Add wet to dry D+W Modus: Wet zu Dry hinzufügen - + Mix Mode Mix-Modus - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Stellen Sie ein, wie das unverarbeitete (dry) Eingangssignal mit dem verarbeiteten (wet) Ausgangssignal der Effekteinheit gemischt wird - + 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-Modus (gekreuzte Linien): Mix-Drehregler überblendet zwischen Dry und Wet Hiermit können Sie den Sound des Tracks mit EQ- und Filtereffekten ändern. - + 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-Modus (Flache Dry-Linie): Mix-Drehregler fügt Wet zu Dry hinzu Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Filtereffekten zu ändern. - + Route the main mix through this effect unit. Den Hauptmix durch die angegebene Effekteinheit routen. - + Route the left crossfader bus through this effect unit. Den linken Crossfader-Bus durch die angegebene Effekteinheit führen. - + Route the right crossfader bus through this effect unit. Den rechten Crossfader-Bus durch die angegebene Effekteinheit führen. - + Right side active: parameter moves with right half of Meta Knob turn Rechte Seite aktiv: Parameter bewegt sich über halbe Drehung rechts des Meta-Drehregler - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin-Einstellungen - + Show/hide skin settings menu Skin-Einstellungen zeigen/verbergen - + Save Sampler Bank Sampler-Bank speichern - + Save the collection of samples loaded in the samplers. Speichern Sie die Sammlung der in den Samplern geladenen Samples. - + Load Sampler Bank Sampler-Bank laden - + Load a previously saved collection of samples into the samplers. Laden Sie eine zuvor gespeicherte Sammlung von Samples in die Sampler. - + Show Effect Parameters Effektparameter anzeigen - + Enable Effect Effekt aktivieren - + Meta Knob Link Meta-Drehregler-Verknüpfung - + Set how this parameter is linked to the effect's Meta Knob. Legt fest wie dieser Parameter mit dem Meta-Drehregler des Effektes verknüpft ist. - + Meta Knob Link Inversion Invertierte Meta-Drehregler-Verknüpfung - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invertiert die Richtung in welche sich dieser Parameter beim Drehen des Effekt's Meta-Drehregler bewegt. - + Super Knob Super-Drehregler - + Next Chain Nächste Effektkette - + Previous Chain Vorherige Effektkette - + Next/Previous Chain Nächste/Vorherige Effektkette - + 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 - + Clear Unit Einheit leeren - + Clear effect unit. Effekteinheit leeren. - + Show/hide parameters for effects in this unit. Parameter für Effekte in dieser Einheit anzeigen/verbergen. - + Toggle Unit Einheit ein-/ausschalten - + Enable or disable this whole effect unit. Aktivieren oder deaktivieren dieser ganzen Effekteinheit. - + Controls the Meta Knob of all effects in this unit together. Regelt den Meta-Drehregler aller Effekte in dieser Einheit zusammen. - + Load next effect chain preset into this effect unit. Nächste Effektketten-Voreinstellung in diese Effekteinheit laden. - + Load previous effect chain preset into this effect unit. Vorherige Effektketten-Voreinstellung in diese Effekteinheit laden. - + Load next or previous effect chain preset into this effect unit. Nächste oder vorherige Effektketten-Voreinstellung in diese Effekteinheit laden. - - - - - - - - - + + + + + + + + + Assign Effect Unit Effekteinheit zuweisen - + Assign this effect unit to the channel output. Diese Effekteinheit dem Kanalausgang zuweisen. - + Route the headphone channel through this effect unit. Den Kopfhörer-Kanal durch diese Effekteinheit führen. - + Route this deck through the indicated effect unit. Dieses Deck durch die angegebene Effekteinheit führen. - + Route this sampler through the indicated effect unit. Diesen Sampler durch die angegebene Effekteinheit führen. - + Route this microphone through the indicated effect unit. Dieses Mikrofon durch die angegebene Effekteinheit führen. - + Route this auxiliary input through the indicated effect unit. Diesen Aux-Eingang durch die angegebene Effekteinheit führen. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. Der Effekteinheit muss auch ein Deck oder eine andere Soundquelle zugewiesen werden, um den Effekt zu hören. - + Switch to the 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 the next or previous effect. Zum nächsten oder vorherigen Effekt wechseln. - + Meta Knob Meta-Drehregler - + Controls linked parameters of this effect Regelt verknüpfte Parameter dieses Effekts - + Effect Focus Button Effekt-Fokustaste - + Focuses this effect. Fokussiert diesen Effekt. - + Unfocuses this effect. Unfokussiert diesen Effekt. - + Refer to the web page on the Mixxx wiki for your controller for more information. Siehe auch die Webseite für Ihren Controller im Mixxx-Wiki für weitere Informationen. - + Effect Parameter Effektparameter - + Adjusts a parameter of the effect. Einen Parameter des Effekts anpassen. - + Inactive: parameter not linked Inaktiv: Parameter nicht verknüpft - + Active: parameter moves with Meta Knob Aktiv: Parameter bewegt sich mit Meta-Drehregler - + Left side active: parameter moves with left half of Meta Knob turn Linke Seite aktiv: Parameter bewegt sich über halbe Drehung links des Meta-Drehregler - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Linke und rechte Seite aktiv: Parameter bewegt sich in ganzer Bandbreite über halbe Drehung des Meta-Drehregler und zurück mit der anderen Hälfte - - + + Equalizer Parameter Kill Equalizer-Parameter stummschalten - - + + Holds the gain of the EQ to zero while active. Hält die Verstärkung des Equalizers auf Null wenn aktiviert. - + Quick Effect Super Knob Quick-Effekt Super-Drehregler - + Quick Effect Super Knob (control linked effect parameters). Quick-Effekt Super-Drehregler (Verknüpfte Effekt-Parameter steuern). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Hinweis: Ändern Sie den standardmäßigen Quick-Effekt-Modus in den Einstellungen -> Interface. - + Equalizer Parameter Equalizer-Parameter - + Adjusts the gain of the EQ filter. Regelt die Verstärkung des Equalizer-Filters. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Hinweis: Ändern Sie den standardmäßigen Equalizer-Modus in den Einstellungen -> Interface. - - + + Adjust Beatgrid Beatgrid anpassen - + Adjust beatgrid so the closest beat is aligned with the current play position. Passt den Beatgrid so an das der nächste Beat an der aktuellen Wiedergabeposition ausgerichtet ist. - - + + Adjust beatgrid to match another playing deck. Beatgrid entsprechend einem anderen spielenden Deck anpassen. - + If quantize is enabled, snaps to the nearest beat. Rastet am nächsten Beat ein wenn Quantisierung aktiviert ist. - + Quantize Quantisieren - + Toggles quantization. Quantisierung ein-/ausschalten. - + Loops and cues snap to the nearest beat when quantization is enabled. Loops und Cues rasten am nächsten Beat ein wenn die Quantisierung aktiviert ist. - + Reverse Rückwärts - + Reverses track playback during regular playback. Kehrt die Wiedergabe des Tracks während der normalen Wiedergabe um. - + Puts a track into reverse while being held (Censor). Spielt einen Track während des Haltens rückwärts ab (Zensieren). - + Playback continues where the track would have been if it had not been temporarily reversed. Die Wiedergabe wird fortgesetzt wo der Track gewesen wäre, ohne vorübergehend rückwärts abgespielt worden zu sein. - - - + + + Play/Pause Wiedergabe/Pause - + Jumps to the beginning of the track. Springt zum Anfang des Tracks. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Synchronisiert das Tempo (BPM) und die Phase mit der des anderen Tracks, wenn ein BPM-Wert bei beiden erkannt wird. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Synchronisiert das Tempo (BPM) mit dem des anderen Tracks, wenn ein BPM-Wert bei beiden erkannt wird. - + Sync and Reset Key Tonart synchronisieren und zurücksetzen - + Increases the pitch by one semitone. Erhöht die Tonhöhe um einen Halbton. - + Decreases the pitch by one semitone. Verringert die Tonhöhe um einen Halbton. - + Enable Vinyl Control Vinyl-Steuerung aktivieren - + When disabled, the track is controlled by Mixxx playback controls. Wenn deaktiviert, wird der Track von Mixxx Wiedergabe-Steuerelementen gesteuert. - + When enabled, the track responds to external vinyl control. Wenn aktiviert, reagiert der Track auf externe Vinyl-Steuerung. - + Enable Passthrough Passthrough aktivieren - + Indicates that the audio buffer is too small to do all audio processing. Zeigt an, dass der Audiopuffer zu klein ist um alle Audiosignale zu verarbeiten. - + Displays cover artwork of the loaded track. Zeigt das Cover-Bild des geladenen Tracks an. - + Displays options for editing cover artwork. Zeigt die Optionen für die Bearbeitung von Cover-Bildern. - + Star Rating Sterne-Bewertung - + Assign ratings to individual tracks by clicking the stars. Weisen Sie einzelnen Tracks Bewertungen zu, indem Sie auf die Sterne klicken. @@ -14724,33 +15199,33 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Mikrofon-Talkover-Dämpfungsstärke - + Prevents the pitch from changing when the rate changes. Verhindert das sich die Tonhöhe ändert wenn die Wiedergabegeschwindigkeit geändert wird. - + Changes the number of hotcue buttons displayed in the deck Ändert die Anzahl der im Deck angezeigten Hotcue-Tasten - + Starts playing from the beginning of the track. Beginnt die Wiedergabe vom Anfang des Tracks. - + Jumps to the beginning of the track and stops. Springt an den Anfang des Tracks und stoppt. - - + + Plays or pauses the track. Spielt oder pausiert den Track. - + (while playing) (während der Wiedergabe) @@ -14770,215 +15245,215 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Hauptkanal-R-Pegelanzeige - + (while stopped) (während des Stops) - + Cue Cue - + Headphone Kopfhörer - + Mute Stummschalten - + Old Synchronize Altes Synchronisieren - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Synchronisiert mit dem ersten Deck (in numerischer Ordnung) welches einen Track abspielt und einen BPM-Wert hat. - + If no deck is playing, syncs to the first deck that has a BPM. Wenn kein Deck spielt, wird mit dem ersten Deck synchronisiert welches einen BPM-Wert hat. - + 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. - + Hold for at least a second to enable sync lock for this deck. Halten Sie für mindestens eine Sekunde um Sync-Lock für dieses Deck zu aktivieren. - + 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 mit gesperrter Synchronisation werden alle im selben Tempo abgespielt, und bei Decks, für die auch die Quantisierung aktiviert ist, sind die Beats immer ausgerichtet. - + Resets the key to the original track key. Tonart auf die Original-Tonart des Tracks zurücksetzen. - + Speed Control Geschwindigkeit-Steuerelement - - - + + + Changes the track pitch independent of the tempo. Ändert die Track-Tonhöhe unabhängig vom Tempo. - + Increases the pitch by 10 cents. Erhöht die Tonhöhe um 10 Cent. - + Decreases the pitch by 10 cents. Verringert die Tonhöhe um 10 Cent. - + Pitch Adjust Tonhöhenanpassung - + Adjust the pitch in addition to the speed slider pitch. Verändert die Tonhöhe zusätzlich zur Tonhöhenänderung der Geschwindigkeits-Schieberegler. - + Opens a menu to clear hotcues or edit their labels and colors. Öffnet ein Menü um Hotcues zu löschen oder deren Beschriftungen und Farben zu bearbeiten. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Mix aufnehmen - + Toggle mix recording. Mix-Aufnahme ein-/ausschalten. - + Enable Live Broadcasting Live-Übertragung aktivieren - + Stream your mix over the Internet. Streamen Sie Ihren Mix über das Internet. - + Provides visual feedback for Live Broadcasting status: Gibt eine grafische Rückmeldung für den Liveübertragung-Status: - + disabled, connecting, connected, failure. deaktiviert, verbinden, verbunden, fehlgeschlagen. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Wenn aktiviert, gibt das Deck direkt das am Vinyl-Eingang ankommende Audiosignal wieder. - + Playback will resume where the track would have been if it had not entered the loop. Die Wiedergabe wird fortgesetzt wo der Track gewesen wäre, ohne in den Loop gegangen zu sein. - + Loop Exit Loop beenden - + Turns the current loop off. Schaltet den aktuellen Loop ab. - + Slip Mode Slip-Modus - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Wenn aktiviert, wird die Wiedergabe während eines Loop, Rückwärtslaufes, Scratches usw. stumm im Hintergrund fortgesetzt. - + Once disabled, the audible playback will resume where the track would have been. Sobald deaktiviert, wird die hörbare Wiedergabe fortgesetzt wo der Track gewesen wäre. - + Track Key The musical key of a track Tonart des Tracks - + Displays the musical key of the loaded track. Zeigt die Tonart des geladenen Tracks an. - + Clock Uhr - + Displays the current time. Zeigt die aktuelle Uhrzeit an. - + Audio Latency Usage Meter Audiolatenz-Nutzungsanzeige - + Displays the fraction of latency used for audio processing. Zeigt den für die Audioverarbeitung verwendeten Anteil der Latenz. - + A high value indicates that audible glitches are likely. Ein hoher Wert bedeutet, dass hörbare Störungen wahrscheinlich sind. - + Do not enable keylock, effects or additional decks in this situation. Aktivieren Sie Tonhöhensperre, Effekte oder zusätzliche Decks in dieser Situation nicht. - + Audio Latency Overload Indicator Audiolatenz-Überlastanzeige @@ -15018,259 +15493,259 @@ Verwenden Sie diese Option, um nur das verarbeitete (Wet) Signal mit EQ- und Fil Aktivieren Sie die Vinyl-Steuerung im Menü -> Optionen. - + Displays the current musical key of the loaded track after pitch shifting. Zeigt die aktuelle Tonart des geladenen Tracks nach der Tonhöhenänderung an. - + Fast Rewind Schneller Rücklauf - + Fast rewind through the track. Schneller Rücklauf durch den Track. - + Fast Forward Schneller Vorlauf - + Fast forward through the track. Schneller Vorlauf durch den Track. - + Jumps to the end of the track. Springt zum Ende des Tracks. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Stellt die Tonhöhe auf eine Tonart, welche einen harmonischen Übergang vom anderen Track erlaubt. Erfordert das die Tonart auf beiden beteiligten Decks erkannt wurde. - - - + + + Pitch Control Wiedergaberate-Steuerung - + Pitch Rate Wiedergaberate - + Displays the current playback rate of the track. Zeigt die aktuelle Wiedergaberate des Tracks an. - + Repeat Wiederholen - + When active the track will repeat if you go past the end or reverse before the start. Wenn aktiviert wird der Track wiederholt wenn Sie hinter das Ende gehen oder bis vor den Anfang rückwärts abspielen. - + Eject Auswerfen - + Ejects track from the player. Wirft den Track aus dem Deck. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Springt zum Hotcue wenn bereits ein Hotcue gesetzt wurde. - + If hotcue is not set, sets the hotcue to the current play position. Setzt den Hotcue an der aktuellen Wiedergabeposition wenn noch kein Hotcue gesetzt wurde. - + Vinyl Control Mode Vinyl-Steuerungsmodus - + Absolute mode - track position equals needle position and speed. Absoluter Modus - Die Position des Tracks entspricht der Position und Geschwindigkeit der Nadel. - + Relative mode - track speed equals needle speed regardless of needle position. Relativer Modus - Die Geschwindigkeit des Tracks entspricht der Nadel-Geschwindigkeit unabhängig von der Position der Nadel. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Konstanter Modus - Die Geschwindigkeit des Tracks entspricht der letzten bekannten konstanten Geschwindigkeit unabhängig vom Nadel-Eingang. - + Vinyl Status Vinyl-Status - + Provides visual feedback for vinyl control status: Gibt eine grafische Rückmeldung für den Vinyl-Steuerungsstatus: - + Green for control enabled. Grün wenn die Steuerung aktiviert ist. - + Blinking yellow for when the needle reaches the end of the record. Gelb blinkend wenn die Nadel das Ende der Platte erreicht. - + Loop-In Marker Loop-In Marker - + Loop-Out Marker Loop-Out Marker - + Loop Halve Loop halbieren - + Halves the current loop's length by moving the end marker. Halbiert die Länge des aktuellen Loop durch das Verschieben des Endmarkers. - + Deck immediately loops if past the new endpoint. Das Deck wird sofort loopen wenn es hinter dem neuen Endpunkt ist. - + Loop Double Loop verdoppeln - + Doubles the current loop's length by moving the end marker. Verdoppelt die Länge des aktuellen Loop durch das Verschieben des Endmarkers. - + Beatloop Beatloop - + Toggles the current loop on or off. Den aktuellen Loop ein-/ausschalten. - + Works only if Loop-In and Loop-Out marker are set. Funktioniert nur wenn die Loop-In und Loop-Out Marker gesetzt sind. - + Vinyl Cueing Mode Vinyl-Cueing-Modus - + Determines how cue points are treated in vinyl control Relative mode: Bestimmt wie Cue-Punkte im Relativen Modus der Vinylsteuerung behandelt werde: - + Off - Cue points ignored. Off - Cue-Punkte ignoriert. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. One Cue - Der Track springt zu diesem Cue-Punkt wenn die Nadel hinter dem Cue-Punkt abgesetzt wird. - + Track Time Track-Zeit - + Track Duration Laufzeit - + Displays the duration of the loaded track. Zeigt die Länge des geladenen Tracks an. - + Information is loaded from the track's metadata tags. Die Informationen werden aus den Metadaten-Tags des Tracks geladen. - + Track Artist Track-Interpret - + Displays the artist of the loaded track. Zeigt den Interpreten des geladenen Tracks an. - + Track Title Track-Titel - + Displays the title of the loaded track. Zeigt den Titel des geladenen Tracks an. - + Track Album Track-Album - + Displays the album name of the loaded track. Zeigt den Albumnamen des geladenen Tracks an. - + Track Artist/Title Track-Interpret/Titel - + Displays the artist and title of the loaded track. Zeigt den Interpreten und Titel des geladenen Tracks an. @@ -15501,47 +15976,75 @@ Dies kann nicht rückgängig gemacht werden! WCueMenuPopup - + Cue number Cue-Nummer - + Cue position Cue-Position - + Edit cue label Cue-Beschriftungen bearbeiten - + Label... Beschriftung … - + Delete this cue Diesen Cue löschen - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size - - Left-click: Use the old size or the current beatloop size as the loop size + + Right-click: Use the current play position as new loop end if it is after the cue - - Right-click: Use the current play position as loop end if it is after the cue + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. - + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 Hotcue #%1 @@ -15666,323 +16169,363 @@ Dies kann nicht rückgängig gemacht werden! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + Strg+Shift+F + + + Create &New Playlist Neue &Wiedergabeliste erstellen - + Create a new playlist Neue Wiedergabeliste erstellen - + Ctrl+n Strg+N - + Create New &Crate Neue &Plattenkiste erstellen - + Create a new crate Neue Plattenkiste erstellen - + Ctrl+Shift+N Strg+Umschalt+N - - + + &View &Ansicht - + Auto-hide menu bar Menüleiste automatisch verbergen - + Auto-hide the main menu bar when it's not used. Menüleiste automatisch verbergen wenn sie nicht verwendet wird.. - + May not be supported on all skins. Wird möglicherweise nicht von allen Skins unterstützt. - + Show Skin Settings Menu Skin-Einstellungsmenü anzeigen - + Show the Skin Settings Menu of the currently selected Skin Das Skin-Einstellungsmenü des aktuell ausgewählten Skin anzeigen - + Ctrl+1 Menubar|View|Show Skin Settings Strg+1 - + Show Microphone Section Mikrofon-Bereich anzeigen - + Show the microphone section of the Mixxx interface. Den Mikrofon-Bereich der Mixxx-Benutzeroberfläche anzeigen. - + Ctrl+2 Menubar|View|Show Microphone Section Strg+2 - + Show Vinyl Control Section Vinyl-Steuerung-Bereich anzeigen - + Show the vinyl control section of the Mixxx interface. Den Vinyl-Steuerung Bereich der Mixxx-Benutzeroberfläche anzeigen. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Strg+3 - + Show Preview Deck Vorhör-Deck anzeigen - + Show the preview deck in the Mixxx interface. Das Vorhör-Deck in der Mixxx-Benutzeroberfläche anzeigen. - + Ctrl+4 Menubar|View|Show Preview Deck Strg+4 - + Show Cover Art Cover-Bild anzeigen - + Show cover art in the Mixxx interface. Cover-Bild in der Mixxx-Benutzeroberfläche anzeigen. - + Ctrl+6 Menubar|View|Show Cover Art Strg+6 - + Maximize Library Bibliothek maximieren - + Maximize the track library to take up all the available screen space. Die Track-Bibliothek auf den verfügbaren Bildschirmplatz maximieren. - + Space Menubar|View|Maximize Library Leertaste - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Vollbild - + Display Mixxx using the full screen Mixxx im Vollbildmodus anzeigen - + &Options &Optionen - + &Vinyl Control &Vinyl-Steuerung - + Use timecoded vinyls on external turntables to control Mixxx Timecode-Vinyls benutzen um Mixxx mit externen Plattenspielern zu steuern - + Enable Vinyl Control &%1 Vinyl-Steuerung &%1 aktivieren - + &Record Mix &Mix aufnehmen - + Record your mix to a file Aufnahme Ihres Mixes in eine Datei - + Ctrl+R Strg+R - + Enable Live &Broadcasting &Liveübertragung aktivieren - + Stream your mixes to a shoutcast or icecast server Den Mix zu einem Icecast- oder Shoutcast-Server streamen - + Ctrl+L Strg+L - + Enable &Keyboard Shortcuts &Tastenkombinationen aktivieren - + Toggles keyboard shortcuts on or off Tastenkombinationen ein-/ausschalten - + Ctrl+` Strg+` - + &Preferences &Einstellungen - + Change Mixxx settings (e.g. playback, MIDI, controls) Mixxx Einstellungen verändern (z.B. Wiedergabe, MIDI, Steuerelemente) - + &Developer &Entwickler - + &Reload Skin Skin &neu laden - + Reload the skin Das Skin neu laden - + Ctrl+Shift+R Strg+Umschalt+R - + Developer &Tools Entwickler&werkzeuge - + Opens the developer tools dialog Öffnet den Entwicklerwerkzeuge-Dialog - + Ctrl+Shift+T Strg+Umschalt+T - + Stats: &Experiment Bucket Statistiken: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Aktiviert den Experiment-Modus. Sammelt Statistiken im Experiment-Tracking-Bucket. - + Ctrl+Shift+E Strg+Umschalt+E - + Stats: &Base Bucket Statistiken: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. Aktiviert den Base-Modus. Sammelt Statistiken im Base-Tracking-Bucket. - + Ctrl+Shift+B Strg+Umschalt+B - + Deb&ugger Enabled Deb&ugger aktiviert - + Enables the debugger during skin parsing Aktiviert den Debugger während des Parsens der Skins - + Ctrl+Shift+D Strg+Umschalt+D - + &Help &Hilfe - + Show Keywheel menu title Tonartrad anzeigen @@ -15999,74 +16542,74 @@ Dies kann nicht rückgängig gemacht werden! Die Bibliothek in das Engine DJ Format exportieren - + Show keywheel tooltip text Tonartrad anzeigen - + F12 Menubar|View|Show Keywheel F12 - + &Community Support &Community Unterstützung - + Get help with Mixxx Hilfe zu Mixxx erhalten - + &User Manual &Benutzerhandbuch - + Read the Mixxx user manual. Mixxx-Benutzerhandbuch lesen. - + &Keyboard Shortcuts &Tastenkombinationen - + Speed up your workflow with keyboard shortcuts. Beschleunigen Sie Ihren Arbeitsablauf mit Tastenkombinationen. - + &Settings directory &Einstellungs-Verzeichnis - + Open the Mixxx user settings directory. Das Verzeichnis mit den Mixxx-Benutzereinstellungen öffnen. - + &Translate This Application Diese Anwendung &übersetzen - + Help translate this application into your language. Helfen Sie, diese Anwendung in Ihre Sprache zu übersetzen. - + &About &Über - + About the application Über diese Anwendung @@ -16074,25 +16617,25 @@ Dies kann nicht rückgängig gemacht werden! WOverview - + Passthrough 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 … @@ -16101,25 +16644,13 @@ Dies kann nicht rückgängig gemacht werden! WSearchLineEdit - - Clear input - Clear the search bar input field - Eingabe löschen - - - - Ctrl+F - Search|Focus - Strg+F - - - + Search noun Suche - + Clear input Eingabe löschen @@ -16130,93 +16661,87 @@ Dies kann nicht rückgängig gemacht werden! Suchen … - + Clear the search bar input field Eingabefeld der Suchleiste löschen - - Enter a string to search for - Geben Sie einen Suchbegriff ein + + Return + Enter - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Verwenden Sie Operatoren wie bpm:115-128, artist:Max Muster, -year:1990 + + Enter a string to search for. + Bitte eine Zeichenkette zum Suchen eingeben. - - For more information see User Manual > Mixxx Library - Für weitere Informationen siehe Benutzerhandbuch > Mixxx Bibliothek + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Tastenkombination + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Strg+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Fokus + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Strg+Rücktaste + + Additional Shortcuts When Focused: + - Shortcuts - Tastenkombinationen + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Enter + Esc or Ctrl+Return + Esc oder Strg+Enter - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Suche auslösen, vor dem Timeout für Instant-Suche, oder danach zur Track-Ansicht wechseln + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Strg+Leertaste - + Toggle search history Shows/hides the search history entries Suchverlauf ein-/ausblenden - + Delete or Backspace Löschen oder Backspace - - Delete query from history - Suchbegriff aus dem Verlauf löschen - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Suche verlassen + + Delete query from history + Suchbegriff aus dem Verlauf löschen @@ -16300,625 +16825,640 @@ Dies kann nicht rückgängig gemacht werden! WTrackMenu - + Load to Laden in - + Deck Deck - + Sampler Sampler - + Add to Playlist Zur Wiedergabeliste hinzufügen - + Crates Plattenkisten - + Metadata Metadaten - + Update external collections Externe Sammlung aktualisieren - + Cover Art Cover-Bild - + Adjust BPM BPM anpassen - + Select Color Farbe auswählen - - + + Analyze Analysieren - - + + Delete Track Files Track-Dateien löschen - + 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) - + Preview Deck Vorhör-Deck - + Remove Entfernen - + Remove from Playlist Von Wiedergabeliste entfernen - + Remove from Crate Aus Plattenkiste entfernen - + Hide from Library In der Bibliothek ausblenden - + Unhide from Library In der Bibliothek einblenden - + Purge from Library Aus der Bibliothek entfernen - + Move Track File(s) to Trash Track-Datei(en) in den Papierkorb verschieben - + Delete Files from Disk Dateien von der Festplatte löschen - + Properties Eigenschaften - + Open in File Browser Im Dateibrowser öffnen - + Select in Library In Bibliothek auswählen - + Import From File Tags Aus Datei-Tags importieren - + Import From MusicBrainz Von MusicBrainz importieren - + Export To File Tags In Datei-Tags exportieren - + BPM and Beatgrid BPM und Beatgrid - + Play Count Wiedergabezähler - + Rating Bewertung - + Cue Point Cue-Punkt - - + + Hotcues Hotcues - + Intro Intro - + Outro Outro - + Key Tonart - + ReplayGain ReplayGain - + Waveform Wellenform - + Comment Kommentar - + All Alle - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPM sperren - + Unlock BPM BPM entsperren - + Double BPM BPM verdoppeln - + Halve BPM BPM halbieren - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze Neu analysieren - + Reanalyze (constant BPM) Neu analysieren (konstante BPM) - + Reanalyze (variable BPM) Neu analysieren (variable BPM) - + Update ReplayGain from Deck Gain Aktualisiere ReplayGain von Deck-Verstärkung - + Deck %1 Deck %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: Ein unbekannter Fehler ist beim Erstellen der Wiedergabeliste 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 - + Undo BPM/beats change of %n track(s) Rückgängig machen der BPM/Beats-Änderungen von %n TrackRückgängig machen der BPM/Beats-Änderungen 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 rating of %n track(s) Setzen der Bewertung von %n TrackSetzen der Bewertung 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 - + Clearing comment of %n track(s) Löschen des Kommentars von %n TrackLöschen des Kommentars 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 - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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 - + Move these files to the trash bin? Diese Dateien in den Papierkorb verschieben? - + Permanently delete these files from disk? Diese Dateien dauerhaft von der Festplatte löschen? - - + + This can not be undone! Dies kann nicht rückgängig gemacht werden! - + Cancel Abbrechen - + Delete Files Dateien löschen - + Okay OK - + Move Track File(s) to Trash? Track-Datei(en) in den Papierkorb verschieben? - + Track Files Deleted Track-Dateien gelöscht - + Track Files Moved To Trash Track-Dateien in den Papierkorb verschoben - + %1 track files were moved to trash and purged from the Mixxx database. %1 Track-Dateien wurden in den Papierkorb verschoben und aus der Mixxx-Datenbank entfernt. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 Track-Dateien wurden von der Festplatte gelöscht und aus der Mixxx-Datenbank entfernt. - + Track File Deleted Track-Datei gelöscht - + Track file was deleted from disk and purged from the Mixxx database. Track-Datei wurde von der Festplatte gelöscht und aus der Mixxx-Datenbank entfernt. - + The following %1 file(s) could not be deleted from disk Die folgenden %1 Datei(en) konnten nicht von der Festplatte gelöscht werden. - + This track file could not be deleted from disk Diese Track-Datei konnte nicht von der Festplatte gelöscht werden - + Remaining Track File(s) Verbleibende Track-Datei(en) - + Close Schließen - + Clear Reset metadata in right click track context menu in library Löschen - + Loops Loops - + Clear BPM and Beatgrid BPM und Beatgrid löschen - + Undo last BPM/beats change Letzte BPM-/Beats-Änderung rückgängig machen - + Move this track file to the trash bin? Diese Track-Datei in den Papierkorb verschieben? - + Permanently delete this track file from disk? Diesen Track dauerhaft von der Festplatte löschen? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Alle Decks, in denen diese Titel geladen sind, werden angehalten und die Titel werden ausgeworfen. - + All decks where this track is loaded will be stopped and the track will be ejected. Alle Decks, in denen dieser Titel geladen ist, werden angehalten und der Titel wird ausgeworfen. - + Removing %n track file(s) from disk... Entferne %n Track-Datei(en) von der Festplatte ... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Hinweis: Sind Sie in der Computer- oder Aufnahmen-Ansicht, müssen Sie erneut auf die aktuelle Ansicht klicken, um Änderungen zu sehen. - + Track File Moved To Trash Track-Datei in den Papierkorb verschoben - + Track file was moved to trash and purged from the Mixxx database. Track-Datei wurden in den Papierkorb verschoben und aus der Mixxx-Datenbank entfernt. - + Don't show again during this session - + Während dieser Sitzung nicht erneut fragen - + The following %1 file(s) could not be moved to trash Die folgenden %1 Datei(en) konnten nicht in den Papierkorb verschoben werden - + This track file could not be moved to trash Diese Track-Datei konnte nicht in den Papierkorb verschoben werden + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + 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 @@ -16972,37 +17512,37 @@ Dies kann nicht rückgängig gemacht werden! WTrackTableView - + Confirm track hide Ausblenden der Tracks bestätigen - + Are you sure you want to hide the selected tracks? Möchten Sie wirklich die gewählten Tracks ausblenden? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Möchten Sie wirklich die gewählten Tracks aus der Auto-DJ Warteschlange löschen? - + Are you sure you want to remove the selected tracks from this crate? Möchten Sie wirklich die gewählten Tracks aus dieser Plattenkiste löschen? - + Are you sure you want to remove the selected tracks from this playlist? Möchten Sie wirklich die gewählten Tracks von dieser Wiedergabeliste löschen? - + Don't ask again during this session Während dieser Sitzung nicht erneut fragen. - + Confirm track removal Entfernen der Tracks bestätigen @@ -17010,12 +17550,12 @@ Dies kann nicht rückgängig gemacht werden! WTrackTableViewHeader - + Show or hide columns. Spalten anzeigen oder verbergen. - + Shuffle Tracks @@ -17053,22 +17593,22 @@ Dies kann nicht rückgängig gemacht werden! 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. @@ -17094,12 +17634,12 @@ Zum Beenden OK drücken. Playlists - + Wiedergabelisten Selected crates/playlists - + Ausgewählte Plattenkisten/Wiedergabelisten @@ -17192,7 +17732,7 @@ Zum Beenden OK drücken. Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + %1 Track(s), %2 Plattenkiste(n) und %3 Wiedergabeliste(n) wurden exportiert. @@ -17226,6 +17766,24 @@ Zum Beenden OK drücken. Die Netzwerkanfrage wurde nicht gestartet + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17234,4 +17792,27 @@ Zum Beenden OK drücken. Kein Effekt geladen. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_el.qm b/res/translations/mixxx_el.qm index 548f555b5aa7..8723778571bc 100644 Binary files a/res/translations/mixxx_el.qm and b/res/translations/mixxx_el.qm differ diff --git a/res/translations/mixxx_el.ts b/res/translations/mixxx_el.ts index e77bf12e7a07..d9245f2fb4a8 100644 --- a/res/translations/mixxx_el.ts +++ b/res/translations/mixxx_el.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source Αφαίρεση κιβωτίου ως πηγή κομματιών - + Auto DJ Αυτόματος DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Προσθήκη κιβωτίου ως πηγή κομματιών @@ -149,28 +149,28 @@ BasePlaylistFeature - + New Playlist Νέα Λίστα Αναπαραγωγής - + Add to Auto DJ Queue (bottom) Προσθήκη στη λίστα του Αυτόματου DJ (στο τέλος) - + Create New Playlist Δημιουργία νέας λίστας αναπαραγωγής - + Add to Auto DJ Queue (top) Προσθήκη στη λίστα του Αυτόματου DJ (στην αρχή) - + Remove Αφαίρεση @@ -180,12 +180,12 @@ Μετονομασία - + Lock Κλείδωμα - + Duplicate Κλωνοποίηση @@ -206,24 +206,24 @@ Ανάλυση ολόκληρης της λίστας αναπαραγωγής - + Enter new name for playlist: Εισάγετε νέο όνομα για τη λίστα αναπαραγωγής: - + Duplicate Playlist Κλωνοποίηση λίστας αναπαραγωγής - - + + Enter name for new playlist: Εισάγετε όνομα για τη νέα λίστα αναπαραγωγής: - + Export Playlist Εξαγωγή λίστας αναπαραγωγής @@ -233,70 +233,77 @@ Προσθήκη στη λίστα του Αυτόματου DJ (Αντικατάσταση) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: Προέκυψε άγνωστο σφάλμα κατά τη δημιουργία λίστας: - + Confirm Deletion Επιβεβαίωση Διαγραφής - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +311,12 @@ BaseSqlTableModel - + # # - + Timestamp Χρονική σήμανση @@ -317,7 +324,7 @@ BaseTrackPlayerImpl - + Couldn't load track. H φόρτωση του κομματιού απέτυχε. @@ -325,137 +332,142 @@ BaseTrackTableModel - + Album Άλμπουμ - + Album Artist Καλλιτέχνης δίσκου - + Artist Καλλιτέχνης - + Bitrate Ρυθμός μετάδοσης bit - + BPM BPM - + Channels Κανάλια - + Color Χρώμα - + Comment Σχόλιο - + Composer Συνθέτης - + Cover Art Εξώφυλλο - + Date Added Ημερομηνία προσθήκης - + Last Played - + Duration Διάρκεια - + Type Τύπος - + Genre Είδος - + Grouping Ομαδοποίηση - + Key Κλειδί - + Location Θέση - + + Overview + + + + Preview Προεπισκόπηση - + Rating Αξιολόγηση - + ReplayGain ReplayGain - + Samplerate Ρυθμός δειγματοληψίας - + Played Έπαιξε - + Title Τίτλος - + Track # Αρ. κομματιού - + Year Έτος - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -543,67 +555,77 @@ BrowseFeature - + Add to Quick Links Προσθήκη στους Γρήγορους Συνδέσμους - + Remove from Quick Links Αφαίρεση από Γρήγορους Συνδέσμους - + Add to Library Προσθήκη στη Συλλογή - + Refresh directory tree - + Quick Links Γρήγοροι Σύνδεσμοι - - + + Devices Συσκευές - + Removable Devices Αφαιρούμενες συσκευές - - + + Computer Υπολογιστής - + 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 Σάρωση - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Ο "Υπολογιστής" σας επιτρέπει την πλοήγηση σε, προβολή και φόρτωση κομματιών από φακέλους στο σκληρό σας δίσκο και τις εξωτερικές σας συσκευές. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -749,87 +771,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -839,27 +861,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1041,13 +1068,13 @@ trace - Above + Profiling messages - + Set to full volume Ρύθμιση σε πλήρη ένταση - + Set to zero volume Ρύθμιση σε μηδενική ένταση @@ -1072,13 +1099,13 @@ trace - Above + Profiling messages Κουμπί αντίστροφης κύλισης (Λογοκρισία) - + Headphone listen button Κουμπί για ακρόαση ακουστικών - + Mute button Κουμπί σίγασης @@ -1089,25 +1116,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) Προσανατολισμός μείξης (π.χ. αρ., δεξ., κέντρο) - + Set mix orientation to left Ρύθμιση προσανατολισμού μείξης προς τα αριστερά - + Set mix orientation to center Ρύθμιση προσανατολισμού μείξης προς το κέντρο - + Set mix orientation to right Ρύθμιση προσανατολισμού μείξης προς τα δεξιά @@ -1148,23 +1175,23 @@ trace - Above + Profiling messages Πλήκτρο χτύπου BPM - + Toggle quantize mode Ενεργ./Απενεργ. λειτουργίας κβαντισμού - + One-time beat sync (tempo only) Άμεσος συγχρον. ρυθμού (μόνο βήμα) - + One-time beat sync (phase only) Άμεσος συγχρον. ρυθμού (μόνο φάση) - + Toggle keylock mode Ενεργ./Απενεργ. λειτουργίας κλειδώματος ύψους @@ -1174,193 +1201,193 @@ trace - Above + Profiling messages Ισοσταθμιστές - + 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 @@ -1476,20 +1503,20 @@ trace - Above + Profiling messages - - + + Volume Fader Ποτενσιόμετρο Έντασης - + Full Volume Πλήρης Ένταση - + Zero Volume Μηδενική ένταση @@ -1505,7 +1532,7 @@ trace - Above + Profiling messages - + Mute Σίγαση @@ -1516,7 +1543,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1537,25 +1564,25 @@ trace - Above + Profiling messages - + Orientation Προσανατολισμός - + Orient Left - + Orient Center - + Orient Right @@ -1625,82 +1652,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync Συγχρονισμός - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1741,451 +1768,451 @@ trace - Above + Profiling messages Χαμηλός Ισοσταθμιστής - + 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 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 εντός/εκτός λειτουργίας - + 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 @@ -2200,102 +2227,102 @@ trace - Above + Profiling messages Ενίσχυση Ακουστικού - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2447,1041 +2474,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Μικρόφωνο && Θύρα Aux Εμφάνιση/Απόκρυψη - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3596,32 +3645,32 @@ trace - Above + Profiling messages 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. @@ -3665,13 +3714,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Αφαίρεση - + Create New Crate @@ -3681,132 +3730,132 @@ trace - Above + Profiling messages Μετονομασία - - + + 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. - + Confirm Deletion Επιβεβαίωση Διαγραφής - - + + 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) - + M3U Playlist (*.m3u) Λίστα αναπαραγωγής M3U (*.m3u) - + Crates are a great way to help organize the music you want to DJ with. Τα κιβώτια ειναι ενας φοβερός τρόπος που βοηθάει την οργάνωση της μουσικής που θέλετε να αναπαράγετε - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Τα κιβώτια σας επιτρέπουν να οργανώσετε τη μουσική σας όπως σας αρέσει! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. Το όνομα ενός Κιβωτίου δε μπορεί να είναι Κενό - + A crate by that name already exists. Υπάρχει ήδη κιβώτιο με αυτό το όνομα. @@ -3901,12 +3950,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4025,72 +4074,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Παράκαμψη - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Δευτερόλεπτα - + Auto DJ Fade Modes Full Intro + Outro: @@ -4121,80 +4170,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat Επανάληψη - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Αυτόματος DJ - + Shuffle Ανακάτεμα - + 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. @@ -4417,37 +4466,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. Δεν έλαβα μηνύματα MIDI. Παρακαλώ δοκιμάστε ξανά. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Αδύνατη ανίχνευση χαρτογράφησης -- παρακαλώ δοκιμάστε ξανά. Σιγουρευτείτε ότι αγγίζετε έναν ελεγκτή τη φορά. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4486,17 +4535,17 @@ You tried to learn: %1,%2 - + Log - + Search Αναζήτηση - + Stats @@ -5149,114 +5198,114 @@ associated with each key. DlgPrefController - + Apply device settings? Να γίνει εφαρμογή των ρυθμίσεων της συσκευής; - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Πρέπει να εφαρμοσθούν οι ρυθμίσεις σας πριν εκκινήσετε τον Μάγο εκμάθησης. Να γίνει εφαρμογή ρυθμίσεων και να συνεχίσουμε; - + None Κανένα - + %1 by %2 %1 από %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5269,105 +5318,105 @@ Apply settings and continue? Όνομα Ελεγκτή - + Enabled Ενεργό - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Περιγραφή: - + Support: Υποστήριξη: - + Screens preview - + Input Mappings - - + + Search Αναζήτηση - - + + Add Προσθήκη - - + + Remove Αφαίρεση @@ -5382,22 +5431,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5407,28 +5456,28 @@ Apply settings and continue? Μάγος για τον Έλεγχο εκμάθησης (Μόνο MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Καθαρισμός Όλων - + Output Mappings @@ -5587,6 +5636,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6178,62 +6237,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Πληροφορίες - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7400,173 +7459,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Αρχική (μακρά καθυστέρηση) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled Απενεργοποιημένο - + Enabled Ενεργό - + Stereo Στεροφωνία - + Mono Μονοφωνία - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Σφάλμα ρυθμίσεων @@ -7584,131 +7642,131 @@ The loudness target is approximate and assumes track pregain and main output lev API Ήχου - + Sample Rate Ρυθμός Δειγματοληψίας - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds ms - + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine Μηχανή Κλειδώματος/Μεταβολής Τόνου - + Multi-Soundcard Synchronization Συγχρονισμός πολλών καρτών ήχου - + Output Έξοδος - + Input Είσοδος - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices Εντοπισμός Συσκευών @@ -7863,27 +7921,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available Η OpenGL δεν είναι διαθέσιμη - + dropped frames απορριφθέντα καρέ - + Cached waveforms occupy %1 MiB on disk. @@ -7896,250 +7955,256 @@ The loudness target is approximate and assumes track pregain and main output lev Επιλογές Κυματομορφής - + Frame rate Ρυθμός καρέ - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate Μέσος Ρυθμός καρέ - + Visual gain Οπτικό κέρδος - + Default zoom level Waveform zoom - + Displays the actual frame rate. Εμφανίζει πραγματικό ρυθμό ανανέωσης εικόνας (frame rate) - + Visual gain of the middle frequencies Οπτική ενίσχυση των μεσαίων συχνοτήτων - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Χαμηλά - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies Οπτική ενίσχυση των υψηλών συχνοτήτων - + Visual gain of the low frequencies Οπτική ενίσχυση των χαμηλών συχνοτήτων - + High Υψηλά - + Global visual gain Καθολική οπτική ενίσχυση - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. Συγχρονισμός επιπέδου μεγέθυνσης για όλες τις μορφές εμφάνισης κυματομορφής. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8147,47 +8212,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Υλικό Ήχου - + Controllers Ελεγκτές - + Library Βιβλιοθήκη - + Interface Διεπαφή - + Waveforms - + Mixer Μείκτης - + Auto DJ Αυτόματος DJ - + Decks - + Colors @@ -8222,47 +8287,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Εφέ - + 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> - + Vinyl Control Έλεγχος βινυλίου - + Live Broadcasting Ζωντανή Εκπομπή - + Modplug Decoder @@ -8295,22 +8360,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Έναρξη Εγγραφής - + Recording to file: - + Stop Recording Διακοπή Εγγραφής - + %1 MiB written in %2 @@ -8618,284 +8683,284 @@ This can not be undone! - + Filetype: - + BPM: BPM: - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. Θέτει το BPM στο 75% της τρέχουσας τιμής. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Θέτει το BPM στο 50% της τρέχουσας τιμής. - + Displays the BPM of the selected track. Απεικονίζει το BPM του επιλεγμένου κομματιού. - + Track # Αρ. κομματιού - + Album Artist Καλλιτέχνης δίσκου - + Composer Συνθέτης - + Title Τίτλος - + Grouping Ομαδοποίηση - + Key Κλειδί - + Year Έτος - + Artist Καλλιτέχνης - + Album Άλμπουμ - + Genre Είδος - + ReplayGain: - + Sets the BPM to 200% of the current value. Θέτει το BPM στο 200% της τρέχουσας τιμής. - + Double BPM Διπλασιασμός BPM - + Halve BPM Υποδιπλασιασμός BPM - + Clear BPM and Beatgrid Καθαρισμός BPM και πλέγματος χτύπων - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: Διάρκεια: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color Χρώμα - + Date added: - + Open in File Browser Άνοιξε το στο πρόγραμμα περιήγησης αρχείων - + Samplerate: - + Track BPM: BPM Κομματιού: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. Θέτει το BPM στο 66% της τρέχουσας τιμής. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Χτυπήστε για να θέσετε το BPM στον ρυθμό που επιθυμείτε. - + Tap to Beat Πατήστε για Ρυθμό - + Hint: Use the Library Analyze view to run BPM detection. Συμβουλή: Χρησιμοποιήστε την προβολή Ανάλυσης Βιβλιοθήκης για να τρέξετε τον εντοπισμό BPM. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Εφαρμογή - + &Cancel Ακύ&ρωση - + (no color) @@ -9052,7 +9117,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9254,27 +9319,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9418,38 +9483,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. Check the logs for details. @@ -9457,12 +9522,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9470,18 +9535,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9489,15 +9554,15 @@ 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 @@ -9508,57 +9573,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9566,62 +9631,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9631,22 +9696,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9693,27 +9758,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9773,18 +9838,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9796,208 +9861,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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; @@ -10013,13 +10119,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Κλείδωμα - - + + Playlists Λίστες Αναπαραγωγής @@ -10029,32 +10135,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Ξεκλείδωμα - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 Δημιουργία νέας λίστας αναπαραγωγής @@ -11545,7 +11677,7 @@ Fully right: end of the effect period - + Deck %1 Deck %1 @@ -11678,7 +11810,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Διέλευση @@ -11709,7 +11841,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11842,12 +11974,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11882,42 +12014,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11975,54 +12107,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12157,19 +12289,19 @@ may introduce a 'pumping' effect and/or distortion. Κλείδωμα - - + + Confirm Deletion Επιβεβαίωση Διαγραφής - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12581,7 +12713,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12763,7 +12895,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Εξώφυλλο @@ -12999,197 +13131,197 @@ may introduce a 'pumping' effect and/or distortion. Όταν χτυπηθεί, ρυθμίζει το μέσο BPM προς τα επάνω κατά μικρή δόση. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Ρυθμός και χτύπος BPM - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Αναπαραγωγή - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration Διάρκεια Ηχογράφησης @@ -13427,924 +13559,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix Μείξη - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear Εκκαθάριση - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Επόμενο - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. Εναλλαγή στο επόμενο εφέ - + Previous Προηγούμενο - + Switch to the previous effect. Εναλλαγή στο προηγούμενο εφέ - + Next or Previous Επόμενο ή Προηγούμενο - + Switch to either the next or previous effect. Εναλλαγή είτε στο επόμενο είτε στο προηγούμενο εφέ - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Παράμετρος Εφέ - + Adjusts a parameter of the effect. Ρυθμίζει την παράμετρο του εφέ - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter Παράμετρος Ισοσταθμιστή - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Αναπαραγωγή/Παύση - + Jumps to the beginning of the track. Μεταπηδάει στην αρχή του κομματιού. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Συγχρονίζει το ρυθμό (BPM) και τη φάση σε αυτή του άλλου κομματιού, εάν αμφότερα τα BPM έχουν ανιχνευθεί. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Συγχρονίζει το ρυθμό (BPM) σε αυτό του άλλου κομματιού, εάν αμφότερα τα BPM έχουν ανιχνευθεί. - + Sync and Reset Key Συγχρονισμός και Επαναφορά Κλειδιού. - + Increases the pitch by one semitone. Αυξάνει τον τόνο κατά ένα ημιτόνιο. - + Decreases the pitch by one semitone. Μειώνει τον τόνο κατά ένα ημιτόνιο. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14479,33 +14619,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Αρχίζει αναπαραγωγή από την αρχή του κομματιού. - + Jumps to the beginning of the track and stops. Μεταπηδάει στην αρχή του κομματιού και σταματάει. - - + + Plays or pauses the track. Παίζει ή παύει το κομμάτι. - + (while playing) (ενώ παίζει) @@ -14525,205 +14665,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (ενώ είναι σταματημένο) - + Cue - + Headphone Ακουστικά - + Mute Σίγαση - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Συγχρονίζει στο πρώτο κατά αριθμητική σειρά deck όπου παίζεται κομμάτι και υπάρχει BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Εάν δεν παίζει κανένα deck, συγχρονίζει στο πρώτο deck που έχει BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control Έλεγχος Ταχύτητας - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Ρύθμιση Τόνου - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix Εγγραφή μίξης - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14768,254 +14918,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind Γρήγορη Επιστροφή - + Fast rewind through the track. - + Fast Forward Γρήγορη Προώθηση - + Fast forward through the track. - + Jumps to the end of the track. Μετάβαση στο τέλος του κομματιού - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat Επανάληψη - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Αποβολή - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time Χρόνος κομματιού - + Track Duration Διάρκεια κομματιού - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist Καλλιτέχνης κομματιού - + Displays the artist of the loaded track. - + Track Title Τίτλος Κομματιού - + Displays the title of the loaded track. - + Track Album Τίτλος Δίσκου - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15023,12 +15173,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15036,47 +15186,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15248,47 +15393,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15412,407 +15557,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view - + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Εμφάνιση - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. Μεγιστοποίηση της βιλιοθήκης αρχείων ώστε να καταλαμβάνει ολόκληρο τον διαθέσιμο χώρο της οθόνης - + Space Menubar|View|Maximize Library - + &Full Screen &Πλήρης Οθόνη - + Display Mixxx using the full screen Εμφάνιση του Mixxx σε πλήρη οθόνη - + &Options &Επιλογές - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file Ηχογραφήστε την μίξη σας σε αρχείο - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences &Προτιμήσεις - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &Βοήθεια - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About &Περί - + About the application @@ -15820,25 +15996,25 @@ This can not be undone! WOverview - + 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 @@ -15847,25 +16023,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Αναζήτηση - + Clear input @@ -15876,169 +16040,163 @@ This can not be undone! Αναζήτηση - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Κλειδί - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Καλλιτέχνης - + Album Artist Καλλιτέχνης δίσκου - + Composer Συνθέτης - + Title Τίτλος - + Album Άλμπουμ - + Grouping Ομαδοποίηση - + Year Έτος - + Genre Είδος - + Directory - + &Search selected @@ -16046,599 +16204,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Προσθήκη στη Λίστα Αναπαραγωγής - + Crates Κιβώτια - + Metadata - + Update external collections - + Cover Art Εξώφυλλο - + Adjust BPM - + Select Color - - + + Analyze Ανάλυση - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) Προσθήκη στη λίστα του Αυτόματου DJ (στο τέλος) - + Add to Auto DJ Queue (top) Προσθήκη στη λίστα του Αυτόματου DJ (στην αρχή) - + Add to Auto DJ Queue (replace) Προσθήκη στη λίστα του Αυτόματου DJ (Αντικατάσταση) - + Preview Deck - + Remove Αφαίρεση - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Ιδιότητες - + Open in File Browser Άνοιξε το στο πρόγραμμα περιήγησης αρχείων - + Select in Library - + Import From File Tags Εισαγωγή Από Ετικέτες Αρχείου - + Import From MusicBrainz Εισαγωγή από MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Αξιολόγηση - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Κλειδί - + ReplayGain ReplayGain - + Waveform Κυματομορφή - + Comment Σχόλιο - + All Όλα - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Kλείδωμα BPM - + Unlock BPM Ξεκλείδωμα BPM - + Double BPM Διπλασιασμός BPM - + Halve BPM Υποδιπλασιασμός BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Άκυρο - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Κλείσιμο - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16654,37 +16838,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16692,37 +16876,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16730,60 +16914,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Εμφάνιση ή κρύψιμο στηλών + + + Shuffle Tracks + + 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. @@ -16797,67 +16986,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Περιηγηθείτε - + Export directory - + Database version - + Export Εξαγωγή - + Cancel Άκυρο - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16878,7 +17078,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16888,23 +17088,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_en_CA.qm b/res/translations/mixxx_en_CA.qm index 446e85d9c35b..5046f2cb19c1 100644 Binary files a/res/translations/mixxx_en_CA.qm and b/res/translations/mixxx_en_CA.qm differ diff --git a/res/translations/mixxx_en_CA.ts b/res/translations/mixxx_en_CA.ts index 6c07734ae43d..4008353cfe71 100644 --- a/res/translations/mixxx_en_CA.ts +++ b/res/translations/mixxx_en_CA.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Crates - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Remove Crate as Track Source - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Add Crate as Track Source @@ -149,7 +157,7 @@ BasePlaylistFeature - + New Playlist New Playlist @@ -160,7 +168,7 @@ - + Create New Playlist Create New Playlist @@ -190,113 +198,120 @@ 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) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Timestamp @@ -317,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Couldn't load track. @@ -325,137 +340,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Album Artist - + Artist Artist - + Bitrate Bitrate - + BPM BPM - + Channels Channels - + Color Color - + Comment Comment - + Composer Composer - + Cover Art Show Cover Art - + Date Added Date Added - + Last Played - + Duration Duration - + Type Type - + Genre Genre - + Grouping Grouping - + Key Key - + Location Location - + + Overview + + + + Preview Preview - + Rating Rating - + ReplayGain ReplayGain - + Samplerate Samplerate - + Played Played - + Title Title - + Track # Track # - + Year Year - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -477,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. Secure password retrieval unsuccessful: keychain access failed. - + Settings error Settings error - + <b>Error with settings for '%1':</b><br> <b>Error with settings for '%1':</b><br> @@ -543,67 +563,77 @@ BrowseFeature - + Add to Quick Links Add to Quick Links - + Remove from Quick Links Remove from Quick Links - + Add to Library Add to Library - + Refresh directory tree - + Quick Links Quick Links - - + + Devices Devices - + Removable Devices Removable Devices - - + + Computer Computer - + 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 - + "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. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -713,12 +743,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. @@ -749,87 +779,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -839,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -957,2547 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Headphone Output - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Preview Deck %1 - + Microphone %1 Microphone %1 - + Auxiliary %1 Auxiliary %1 - + Reset to default Reset to default - + Effect Rack %1 Effect Rack %1 - + Parameter %1 Parameter %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Headphone mix (pre/main) - + Toggle headphone split cueing Toggle headphone split cueing - + Headphone delay Headphone delay - + Transport Transport - + Strip-search through track Strip-search through track - + Play button Play button - - + + Set to full volume Set to full volume - - + + Set to zero volume Set to zero volume - + Stop button Stop button - + Jump to start of track and play Jump to start of track and play - + Jump to end of track Jump to end of track - + Reverse roll (Censor) button Reverse roll (Censor) button - + Headphone listen button Headphone listen button - - + + Mute button Mute button - + Toggle repeat mode Toggle repeat mode - - + + 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 - + Toggle slip mode Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 Increase BPM by 1 - + Decrease BPM by 1 Decrease BPM by 1 - + Increase BPM by 0.1 Increase BPM by 0.1 - + Decrease BPM by 0.1 Decrease BPM by 0.1 - + BPM tap button BPM tap button - + Toggle quantize mode Toggle quantize mode - + One-time beat sync (tempo only) One-time beat sync (tempo only) - + One-time beat sync (phase only) One-time beat sync (phase only) - + Toggle keylock mode Toggle keylock mode - + Equalizers 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 - + Slot %1 Slot %1 - + Headphone Mix Headphone Mix - + Headphone Split Cue Headphone Split Cue - + Headphone Delay Headphone Delay - + Play Play - + Fast Rewind Fast Rewind - + Fast Rewind button Fast Rewind button - + Fast Forward Fast Forward - + Fast Forward button Fast Forward button - + Strip Search Strip Search - + Play Reverse Play Reverse - + Play Reverse button Play Reverse button - + Reverse Roll (Censor) Reverse Roll (Censor) - + Jump To Start Jump To Start - + Jumps to start of track Jumps to start of track - + Play From Start Play From Start - + Stop Stop - + Stop And Jump To Start Stop And Jump To Start - + Stop playback and jump to start of track Stop playback and jump to start of track - + Jump To End Jump To End - + Volume Volume - - - + + + Volume Fader Volume Fader - - + + Full Volume Full Volume - - + + Zero Volume Zero Volume - + Track Gain Track Gain - + Track Gain knob Track Gain knob - - + + Mute Mute - + Eject Eject - - + + Headphone Listen Headphone Listen - + Headphone listen (pfl) button Headphone listen (pfl) button - + Repeat Mode Repeat Mode - + Slip Mode Slip Mode - - + + Orientation Orientation - - + + Orient Left Orient Left - - + + Orient Center Orient Center - - + + Orient Right Orient Right - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM Tap - + Adjust Beatgrid Faster +.01 Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier Move Beatgrid Earlier - + Adjust the beatgrid to the left Adjust the beatgrid to the left - + Move Beatgrid Later Move Beatgrid Later - + Adjust the beatgrid to the right Adjust the beatgrid to the right - + Adjust Beatgrid Adjust Beatgrid - + Align beatgrid to current position Align beatgrid to current position - + Adjust Beatgrid - Match Alignment Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. Adjust beatgrid to match another playing deck. - + Quantize Mode Quantize Mode - + Sync Sync - + Beat Sync One-Shot Beat Sync One-Shot - + Sync Tempo One-Shot Sync Tempo One-Shot - + Sync Phase One-Shot 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 - + High EQ High EQ - + Mid EQ Mid EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 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 - + 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) Cover Art Show/Hide (Library) - + Show/hide cover art in the 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 - + Headphone Gain Headphone Gain - + Headphone gain Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Skin - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Kill %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 Speed - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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) 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 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 @@ -3510,6 +3583,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3612,32 +3838,32 @@ trace - Above + Profiling messages 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. @@ -3645,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + 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: @@ -3698,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Lock @@ -3728,7 +3954,7 @@ trace - Above + Profiling messages Auto DJ Track Source - + Enter new name for crate: Enter new name for crate: @@ -3745,59 +3971,53 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) @@ -3806,23 +4026,29 @@ trace - Above + Profiling messages 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. + + + + Export to Engine DJ + + Crates let you organize your music however you'd like! Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3917,12 +4143,12 @@ trace - Above + Profiling messages Past Contributors - + Official Website - + Donate @@ -4445,37 +4671,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 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. - + Didn't get any midi messages. Please try again. Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: Successfully mapped control: - + <i>Ready to learn %1</i> <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4514,17 +4740,17 @@ You tried to learn: %1,%2 Dump to csv - + Log Log - + Search Search - + Stats Stats @@ -4720,122 +4946,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic Automatic - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Action failed - + You can't create more than %1 source connections. You can't create more than %1 source connections. - + Source connection %1 Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + 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 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Renaming '%1' Renaming '%1' - + 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 @@ -4848,27 +5091,27 @@ Two source connections to the same server that have the same mountpoint can not Live Broadcasting Preferences - + Mixxx Icecast Testing Mixxx Icecast Testing - + Public stream Public stream - + http://www.mixxx.org http://www.mixxx.org - + Stream name Stream name - + 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. 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. @@ -4908,67 +5151,72 @@ Two source connections to the same server that have the same mountpoint can not Settings for %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Dynamically update Ogg Vorbis metadata. - + ICQ ICQ - + AIM AIM - + Website Website - + Live mix Live mix - + IRC IRC - + Select a source connection above to edit its settings here Select a source connection above to edit its settings here - + Password storage Password storage - + Plain text Plain text - + Secure storage (OS keychain) Secure storage (OS keychain) - + Genre Genre - + Use UTF-8 encoding for metadata. Use UTF-8 encoding for metadata. - + Description Description @@ -4994,42 +5242,42 @@ Two source connections to the same server that have the same mountpoint can not Channels - + Server connection Server connection - + Type Type - + Host Host - + Login Login - + Mount Mount - + Port Port - + Password Password - + Stream info Stream info @@ -5039,17 +5287,17 @@ Two source connections to the same server that have the same mountpoint can not Metadata - + Use static artist and title. Use static artist and title. - + Static title Static title - + Static artist Static artist @@ -5108,13 +5356,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number By hotcue number - + Color Color @@ -5159,17 +5408,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5177,114 +5431,114 @@ associated with each key. DlgPrefController - + Apply device settings? Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None None - + %1 by %2 %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? Do you want to save the changes? - + Troubleshooting Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Clear Input Mappings - + Are you sure you want to clear all input mappings? Are you sure you want to clear all input mappings? - + Clear Output Mappings Clear Output Mappings - + Are you sure you want to clear all output mappings? Are you sure you want to clear all output mappings? @@ -5302,100 +5556,105 @@ Apply settings and continue? Enabled - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Description: - + Support: Support: - + Screens preview - + Input Mappings Input Mappings - - + + Search Search - - + + Add Add - - + + Remove Remove @@ -5415,17 +5674,17 @@ Apply settings and continue? - + Mapping Info - + Author: Author: - + Name: Name: @@ -5435,28 +5694,28 @@ Apply settings and continue? Learning Wizard (MIDI Only) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Clear All - + Output Mappings Output Mappings @@ -5471,21 +5730,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5615,6 +5874,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5644,137 +5913,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx mode - + Mixxx mode (no blinking) Mixxx mode (no blinking) - + Pioneer mode Pioneer mode - + Denon mode Denon mode - + Numark mode Numark mode - + CUP mode CUP mode - + 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 hotcue - + First sound (skip silence) First sound (skip silence) - + Beginning of track Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semitone) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6229,62 +6498,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes This skin does not support color schemes - + Information Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6511,67 +6780,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Select Library Font @@ -6620,262 +6919,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Audio File Formats - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Library Row Height: - + Use relative paths for playlist export if possible Use relative paths for playlist export if possible - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track Edit metadata after clicking selected track - + Search-as-you-type timeout: Search-as-you-type timeout: - + ms ms - + Load track to next available deck Load track to next available deck - + External Libraries External Libraries - + You will need to restart Mixxx for these settings to take effect. You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Show Banshee Library - + Show iTunes Library Show iTunes Library - + Show Traktor Library Show Traktor Library - + Show Rekordbox Library Show Rekordbox Library - + Show Serato Library Show Serato Library - + All external libraries shown are write protected. All external libraries shown are write protected. @@ -7220,33 +7524,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7264,43 +7568,55 @@ and allows you to pitch adjust them for harmonic mixing. Browse... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Quality - + Tags Tags - + Title Title - + Author Author - + Album Album - + Output File Format Output File Format - + Compression Compression - + Lossy Lossy @@ -7315,12 +7631,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Compression Level - + Lossless Lossless @@ -7451,173 +7767,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Default (long delay) - + Experimental (no delay) Experimental (no delay) - + Disabled (short delay) Disabled (short delay) - + Soundcard Clock Soundcard Clock - + Network Clock Network Clock - + Direct monitor (recording and broadcasting only) Direct monitor (recording and broadcasting only) - + Disabled Disabled - + Enabled Enabled - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Realtime scheduling is enabled. Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Configuration error @@ -7635,131 +7955,136 @@ The loudness target is approximate and assumes track pregain and main output lev Sound API - + Sample Rate Sample Rate - + Audio Buffer Audio Buffer - + 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 Output Mode - + Microphone Monitor Mode Microphone Monitor Mode - + Microphone Latency Compensation Microphone Latency Compensation - - - - + + + + ms milliseconds ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization Multi-Soundcard Synchronization - + Output Output - + Input Input - + System Reported Latency System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices Query Devices @@ -7801,7 +8126,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinyl Configuration - + Show Signal Quality in Skin Show Signal Quality in Skin @@ -7837,46 +8162,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Signal Quality - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Powered by xwax - + Hints Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7884,58 +8214,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtered - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL not available - + dropped frames dropped frames - + Cached waveforms occupy %1 MiB on disk. Cached waveforms occupy %1 MiB on disk. @@ -7953,22 +8283,17 @@ The loudness target is approximate and assumes track pregain and main output lev Frame rate - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Displays which OpenGL version is supported by the current platform. - - Normalize waveform overview - Normalize waveform overview - - - + Average frame rate Average frame rate @@ -7984,7 +8309,7 @@ The loudness target is approximate and assumes track pregain and main output lev Default zoom level - + Displays the actual frame rate. Displays the actual frame rate. @@ -8019,7 +8344,7 @@ The loudness target is approximate and assumes track pregain and main output lev Low - + Show minute markers on waveform overview @@ -8064,7 +8389,7 @@ The loudness target is approximate and assumes track pregain and main output lev Global visual gain - + 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. @@ -8133,22 +8458,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching Caching - + 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 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. - + Enable waveform caching Enable waveform caching - + Generate waveforms when analyzing library Generate waveforms when analysing library @@ -8164,7 +8489,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8194,12 +8519,58 @@ Select from different types of displays for the waveform, which differ primarily Moves the play marker position on the waveforms to the left, right or center (default). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Clear Cached Waveforms @@ -8207,47 +8578,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Sound Hardware - + Controllers Controllers - + Library Library - + Interface Interface - + Waveforms Waveforms - + Mixer Mixer - + Auto DJ Auto DJ - + Decks Decks - + Colors Colors @@ -8282,47 +8653,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Effects - + 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> - + Vinyl Control Vinyl Control - + Live Broadcasting Live Broadcasting - + Modplug Decoder Modplug Decoder @@ -8678,284 +9049,289 @@ This can not be undone! Summary - + Filetype: Filetype: - + BPM: BPM: - + Location: Location: - + Bitrate: Bitrate: - + Comments Comments - + BPM BPM - + Sets the BPM to 75% of the current value. Sets the BPM to 75% of the current value. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. Displays the BPM of the selected track. - + Track # Track # - + Album Artist Album Artist - + Composer Composer - + Title Title - + Grouping Grouping - + Key Key - + Year Year - + Artist Artist - + Album Album - + Genre Genre - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Sets the BPM to 200% of the current value. - + Double BPM Double BPM - + Halve BPM Halve BPM - + Clear BPM and Beatgrid Clear BPM and Beatgrid - + Move to the previous item. "Previous" button Move to the previous item. - + &Previous &Previous - + Move to the next item. "Next" button Move to the next item. - + &Next &Next - + Duration: Duration: - + Import Metadata from MusicBrainz Import Metadata from MusicBrainz - + Re-Import Metadata from file Re-Import Metadata from file - + Color Color - + Date added: Date added: - + Open in File Browser Open in File Browser - + Samplerate: - + + Filesize: + + + + Track BPM: Track BPM: - + 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 analyser 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. - + Assume constant tempo Assume constant tempo - + Sets the BPM to 66% of the current value. Sets the BPM to 66% of the current value. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Sets the BPM to 150% of the current value. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Sets the BPM to 133% of the current value. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. Hint: Use the Library Analyse view to run BPM detection. - + Save changes and close the window. "OK" button Save changes and close the window. - + &OK &OK - + Discard changes and close the window. "Cancel" button Discard changes and close the window. - + Save changes and keep the window open. "Apply" button Save changes and keep the window open. - + &Apply &Apply - + &Cancel &Cancel - + (no color) @@ -9112,7 +9488,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9314,27 +9690,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (faster) - + Rubberband (better) Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9549,15 +9925,15 @@ 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 @@ -9569,57 +9945,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9627,62 +10003,62 @@ support. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9692,22 +10068,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9757,27 +10133,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9838,22 +10214,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Missing Tracks - + Hidden Tracks Hidden Tracks - - Export to Engine Prime + + Export to Engine DJ - + Tracks Tracks @@ -9861,212 +10237,253 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10082,13 +10499,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lock - - + + Playlists Playlists @@ -10098,32 +10515,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Unlock - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -10222,59 +10670,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 @@ -10388,69 +10836,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier Headphones - + Left Bus + Audio path indetifier Left Bus - + Center Bus + Audio path indetifier Center Bus - + Right Bus + Audio path indetifier Right Bus - + Invalid Bus + Audio path indetifier Invalid Bus - + Deck + Audio path indetifier Deck - + Record/Broadcast + Audio path indetifier Record/Broadcast - + Vinyl Control + Audio path indetifier Vinyl Control - + Microphone + Audio path indetifier Microphone - + Auxiliary + Audio path indetifier Auxiliary - + Unknown path type %1 + Audio path Unknown path type %1 @@ -10785,47 +11246,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Width - + Metronome Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound Set the beats per minute value of the click sound - + Sync Sync - + Synchronizes the BPM with the track if it can be retrieved Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11629,19 +12092,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Deck %1 @@ -11774,7 +12237,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Passthrough @@ -11805,7 +12268,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11837,18 +12300,89 @@ and the processed output signal as close as possible in perceived loudness - - On + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11879,6 +12413,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11889,11 +12424,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11905,11 +12442,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11938,12 +12477,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11978,42 +12517,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12071,54 +12610,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12274,193 +12813,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx encountered a problem - + Could not allocate shout_t Could not allocate shout_t - + Could not allocate shout_metadata_t Could not allocate shout_metadata_t - + Error setting non-blocking mode: Error setting non-blocking mode: - + Error setting tls mode: Error setting tls mode: - + Error setting hostname! Error setting hostname! - + Error setting port! Error setting port! - + Error setting password! Error setting password! - + Error setting mount! Error setting mount! - + Error setting username! Error setting username! - + Error setting stream name! Error setting stream name! - + Error setting stream description! Error setting stream description! - + Error setting stream genre! Error setting stream genre! - + Error setting stream url! Error setting stream url! - + Error setting stream IRC! Error setting stream IRC! - + Error setting stream AIM! Error setting stream AIM! - + Error setting stream ICQ! Error setting stream ICQ! - + Error setting stream public! Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate Unsupported sample rate - + Error setting bitrate Error setting bitrate - + Error: unknown server protocol! Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Error setting protocol! - + Network cache overflow Network cache overflow - + 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> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. Lost connection to streaming server. - + Please check your connection to the Internet. Please check your connection to the Internet. - + Can't connect to streaming server Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. Please check your connection to the Internet and verify that your username and password are correct. @@ -12468,7 +13007,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtered @@ -12476,23 +13015,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device a device - + An unknown error occurred An unknown error occurred - + Two outputs cannot share channels on "%1" Two outputs cannot share channels on "%1" - + Error opening "%1" Error opening "%1" @@ -12677,7 +13216,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Spinning Vinyl @@ -12859,7 +13398,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Show Cover Art @@ -13049,243 +13588,243 @@ may introduce a 'pumping' effect and/or distortion. Holds the gain of the low EQ to zero while active. - + Displays the tempo of the loaded track in BPM (beats per minute). Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo Tempo - + Key The musical key of a track Key - + BPM Tap BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Tempo and BPM Tap - + Show/hide the spinning vinyl section. Show/hide the spinning vinyl section. - + Keylock Keylock - + Toggling keylock during playback may result in a momentary audio glitch. Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. Seeks the track to the cue point and stops. - + Play Play - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input Select and configure a hardware device for this input - + Recording Duration Recording Duration @@ -13508,943 +14047,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + 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. - + If the track has no beats the unit is seconds. - + Beatloop Size Beatloop Size - + 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. - + Start a loop over the set number of beats. Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + 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. - + Displays the elapsed and/or remaining time of the track loaded. Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. If marker is set, jumps to the marker. - - - - + + + + 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. - - - - + + + + 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 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin Settings Menu - + Show/hide skin settings menu Show/hide skin settings menu - + Save Sampler Bank Save Sampler Bank - + Save the collection of samples loaded in the samplers. Save the collection of samples loaded in the samplers. - + Load Sampler Bank Load Sampler Bank - + Load a previously saved collection of samples into the samplers. Load a previously saved collection of samples into the samplers. - + Show Effect Parameters Show Effect Parameters - + Enable Effect Enable Effect - + Meta Knob Link Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Super Knob - + Next Chain Next Chain - + Previous Chain Previous Chain - + Next/Previous Chain Next/Previous Chain - + Clear Clear - + Clear the current effect. Clear the current effect. - + Toggle Toggle - + Toggle the current effect. Toggle the current effect. - + Next Next - + Clear Unit Clear Unit - + Clear effect unit. Clear effect unit. - + Show/hide parameters for effects in this unit. Show/hide parameters for effects in this unit. - + Toggle Unit Toggle Unit - + 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. - - - - - - - - - + + + + + + + + + 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. - + Switch to the next effect. Switch to the next effect. - + Previous Previous - + Switch to the previous effect. Switch to the previous effect. - + Next or Previous Next or Previous - + Switch to either the next or previous effect. Switch to either the next or previous effect. - + Meta Knob Meta Knob - + Controls linked parameters of this effect Controls linked parameters of this effect - + Effect Focus Button Effect Focus Button - + Focuses this effect. Focuses this effect. - + Unfocuses this effect. Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Effect Parameter - + Adjusts a parameter of the effect. Adjusts a parameter of the effect. - + 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 - - + + Equalizer Parameter Kill Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter Equalizer Parameter - + Adjusts the gain of the EQ filter. Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. If quantize is enabled, snaps to the nearest beat. - + Quantize Quantize - + Toggles quantization. Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse Reverse - + Reverses track playback during regular playback. Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Play/Pause - + Jumps to the beginning of the track. Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key Sync and Reset Key - + Increases the pitch by one semitone. Increases the pitch by one semitone. - + Decreases the pitch by one semitone. Decreases the pitch by one semitone. - + Enable Vinyl Control Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. When enabled, the track responds to external vinyl control. - + Enable Passthrough Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. Displays options for editing cover artwork. - + Star Rating Star Rating - + Assign ratings to individual tracks by clicking the stars. Assign ratings to individual tracks by clicking the stars. @@ -14579,33 +15159,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Microphone Talkover Ducking Strength - + Prevents the pitch from changing when the rate changes. Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. Plays or pauses the track. - + (while playing) (while playing) @@ -14625,215 +15205,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (while stopped) - + Cue Cue - + Headphone Headphone - + Mute Mute - + Old Synchronize Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. If no deck is playing, syncs to the first deck that has a BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Hold for at least a second to enable sync lock for this 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 with sync locked will all play at the same tempo, and decks that also have quantize enabled will always have their beats lined up. - + Resets the key to the original track key. Resets the key to the original track key. - + Speed Control Speed Control - - - + + + Changes the track pitch independent of the tempo. Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. Decreases the pitch by 10 cents. - + Pitch Adjust Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Record Mix - + Toggle mix recording. Toggle mix recording. - + Enable Live Broadcasting Enable Live Broadcasting - + Stream your mix over the Internet. Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit Loop Exit - + Turns the current loop off. Turns the current loop off. - + Slip Mode Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track Track Key - + Displays the musical key of the loaded track. Displays the musical key of the loaded track. - + Clock Clock - + Displays the current time. Displays the current time. - + Audio Latency Usage Meter Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator Audio Latency Overload Indicator @@ -14873,259 +15453,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activate Vinyl Control from the Menu -> Options. - + Displays the current musical key of the loaded track after pitch shifting. Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Fast Rewind - + Fast rewind through the track. Fast rewind through the track. - + Fast Forward Fast Forward - + Fast forward through the track. Fast forward through the track. - + Jumps to the end of the track. Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Pitch Control - + Pitch Rate Pitch Rate - + Displays the current playback rate of the track. Displays the current playback rate of the track. - + Repeat Repeat - + When active the track will repeat if you go past the end or reverse before the start. When active the track will repeat if you go past the end or reverse before the start. - + Eject Eject - + Ejects track from the player. Ejects track from the player. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status Vinyl Status - + Provides visual feedback for vinyl control status: Provides visual feedback for vinyl control status: - + Green for control enabled. Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker Loop-In Marker - + Loop-Out Marker Loop-Out Marker - + Loop Halve Loop Halve - + Halves the current loop's length by moving the end marker. Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. Deck immediately loops if past the new endpoint. - + Loop Double Loop Double - + Doubles the current loop's length by moving the end marker. Doubles the current loop's length by moving the end marker. - + Beatloop Beatloop - + Toggles the current loop on or off. Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time Track Time - + Track Duration Track Duration - + Displays the duration of the loaded track. Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. Information is loaded from the track's metadata tags. - + Track Artist Track Artist - + Displays the artist of the loaded track. Displays the artist of the loaded track. - + Track Title Track Title - + Displays the title of the loaded track. Displays the title of the loaded track. - + Track Album Track Album - + Displays the album name of the loaded track. Displays the album name of the loaded track. - + Track Artist/Title Track Artist/Title - + Displays the artist and title of the loaded track. Displays the artist and title of the loaded track. @@ -15133,12 +15713,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15353,47 +15933,75 @@ This can not be undone! WCueMenuPopup - + Cue number Cue number - + Cue position Cue position - + Edit cue label Edit cue label - + Label... Label... - + Delete this cue Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 Hotcue #%1 @@ -15518,323 +16126,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Create &New Playlist - + Create a new playlist Create a new playlist - + Ctrl+n Ctrl+n - + Create New &Crate Create New &Crate - + Create a new crate Create a new crate - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. May not be supported on all skins. - + 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 - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Show Microphone Section - + Show the microphone section of the Mixxx interface. Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Show Preview Deck - + Show the preview deck in the Mixxx interface. Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Show Cover Art - + Show cover art in the Mixxx interface. Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximize Library - + Maximize the track library to take up all the available screen space. Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library Space - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Full Screen - + Display Mixxx using the full screen Display Mixxx using the full screen - + &Options &Options - + &Vinyl Control &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 Enable Vinyl Control &%1 - + &Record Mix &Record Mix - + Record your mix to a file Record your mix to a file - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off Toggles keyboard shortcuts on or off - + Ctrl+` Ctrl+` - + &Preferences &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer &Developer - + &Reload Skin &Reload Skin - + Reload the skin Reload the skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Developer &Tools - + Opens the developer tools dialog Opens the developer tools dialog - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Deb&ugger Enabled - + Enables the debugger during skin parsing Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Help - + Show Keywheel menu title @@ -15851,74 +16499,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Community Support - + Get help with Mixxx Get help with Mixxx - + &User Manual &User Manual - + Read the Mixxx user manual. Read the Mixxx user manual. - + &Keyboard Shortcuts &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Translate This Application - + Help translate this application into your language. Help translate this application into your language. - + &About &About - + About the application About the application @@ -15926,25 +16574,25 @@ This can not be undone! WOverview - + Passthrough 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 @@ -15953,25 +16601,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Clear input - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Search - + Clear input Clear input @@ -15982,169 +16618,163 @@ This can not be undone! Search... - + Clear the search bar input field Clear the search bar input field - - Enter a string to search for - Enter a string to search for + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Shortcut + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Focus + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Exit search + + Delete query from history + WSearchRelatedTracksMenu - + Search related Tracks - + Key Key - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artist - + Album Artist Album Artist - + Composer Composer - + Title Title - + Album Album - + Grouping Grouping - + Year Year - + Genre Genre - + Directory - + &Search selected @@ -16152,620 +16782,640 @@ This can not be undone! WTrackMenu - + Load to Load to - + Deck Deck - + Sampler Sampler - + Add to Playlist Add to Playlist - + Crates Crates - + Metadata Metadata - + Update external collections Update external collections - + Cover Art Show Cover Art - + Adjust BPM Adjust BPM - + Select Color Select Color - - + + Analyze Analyse - - + + Delete Track Files - + 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) - + Preview Deck Preview Deck - + Remove Remove - + Remove from Playlist Remove from Playlist - + Remove from Crate Remove from Crate - + Hide from Library Hide from Library - + Unhide from Library Unhide from Library - + Purge from Library Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Properties - + Open in File Browser Open in File Browser - + Select in Library - + Import From File Tags Import From File Tags - + Import From MusicBrainz Import From MusicBrainz - + Export To File Tags Export To File Tags - + BPM and Beatgrid BPM and Beatgrid - + Play Count Play Count - + Rating Rating - + Cue Point Cue Point - - + + Hotcues Hotcues - + Intro Intro - + Outro Outro - + Key Key - + ReplayGain ReplayGain - + Waveform Waveform - + Comment Comment - + All All - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Lock BPM - + Unlock BPM Unlock BPM - + Double BPM Double BPM - + Halve BPM Halve BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + 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) @@ -16781,37 +17431,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16819,37 +17469,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16857,12 +17507,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Show or hide columns. - + Shuffle Tracks @@ -16870,52 +17520,52 @@ This can not be undone! 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. @@ -16929,68 +17579,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Browse - + Export directory - + Database version - + Export Export - + Cancel Cancel - + Export Library to Engine DJ "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -17011,7 +17671,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -17021,23 +17681,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -17062,6 +17722,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17070,4 +17748,27 @@ Click OK to exit. No effect loaded. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_en_GB.qm b/res/translations/mixxx_en_GB.qm index 939708fbf4da..2dc0df90c499 100644 Binary files a/res/translations/mixxx_en_GB.qm and b/res/translations/mixxx_en_GB.qm differ diff --git a/res/translations/mixxx_en_GB.ts b/res/translations/mixxx_en_GB.ts index 736756f0c5fe..908ca02afed4 100644 --- a/res/translations/mixxx_en_GB.ts +++ b/res/translations/mixxx_en_GB.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Crates - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Remove Crate as Track Source - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Add Crate as Track Source @@ -149,7 +157,7 @@ BasePlaylistFeature - + New Playlist New Playlist @@ -160,7 +168,7 @@ - + Create New Playlist Create New Playlist @@ -190,113 +198,120 @@ 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) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Timestamp @@ -317,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Couldn't load track. @@ -325,137 +340,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Album Artist - + Artist Artist - + Bitrate Bitrate - + BPM BPM - + Channels Channels - + Color Color - + Comment Comment - + Composer Composer - + Cover Art Cover Art - + Date Added Date Added - + Last Played - + Duration Duration - + Type Type - + Genre Genre - + Grouping Grouping - + Key Key - + Location Location - + + Overview + + + + Preview Preview - + Rating Rating - + ReplayGain ReplayGain - + Samplerate Samplerate - + Played Played - + Title Title - + Track # Track # - + Year Year - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -477,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. Secure password retrieval unsuccessful: keychain access failed. - + Settings error Settings error - + <b>Error with settings for '%1':</b><br> <b>Error with settings for '%1':</b><br> @@ -543,67 +563,77 @@ BrowseFeature - + Add to Quick Links Add to Quick Links - + Remove from Quick Links Remove from Quick Links - + Add to Library Add to Library - + Refresh directory tree - + Quick Links Quick Links - - + + Devices Devices - + Removable Devices Removable Devices - - + + Computer Computer - + 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 - + "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. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -713,12 +743,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. @@ -749,87 +779,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -839,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -957,2547 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Headphone Output - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Preview Deck %1 - + Microphone %1 Microphone %1 - + Auxiliary %1 Auxiliary %1 - + Reset to default Reset to default - + Effect Rack %1 Effect Rack %1 - + Parameter %1 Parameter %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Headphone mix (pre/main) - + Toggle headphone split cueing Toggle headphone split cueing - + Headphone delay Headphone delay - + Transport Transport - + Strip-search through track Strip-search through track - + Play button Play button - - + + Set to full volume Set to full volume - - + + Set to zero volume Set to zero volume - + Stop button Stop button - + Jump to start of track and play Jump to start of track and play - + Jump to end of track Jump to end of track - + Reverse roll (Censor) button Reverse roll (Censor) button - + Headphone listen button Headphone listen button - - + + Mute button Mute button - + Toggle repeat mode Toggle repeat mode - - + + 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 - + Toggle slip mode Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 Increase BPM by 1 - + Decrease BPM by 1 Decrease BPM by 1 - + Increase BPM by 0.1 Increase BPM by 0.1 - + Decrease BPM by 0.1 Decrease BPM by 0.1 - + BPM tap button BPM tap button - + Toggle quantize mode Toggle quantize mode - + One-time beat sync (tempo only) One-time beat sync (tempo only) - + One-time beat sync (phase only) One-time beat sync (phase only) - + Toggle keylock mode Toggle keylock mode - + Equalizers 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 - + Slot %1 Slot %1 - + Headphone Mix Headphone Mix - + Headphone Split Cue Headphone Split Cue - + Headphone Delay Headphone Delay - + Play Play - + Fast Rewind Fast Rewind - + Fast Rewind button Fast Rewind button - + Fast Forward Fast Forward - + Fast Forward button Fast Forward button - + Strip Search Strip Search - + Play Reverse Play Reverse - + Play Reverse button Play Reverse button - + Reverse Roll (Censor) Reverse Roll (Censor) - + Jump To Start Jump To Start - + Jumps to start of track Jumps to start of track - + Play From Start Play From Start - + Stop Stop - + Stop And Jump To Start Stop And Jump To Start - + Stop playback and jump to start of track Stop playback and jump to start of track - + Jump To End Jump To End - + Volume Volume - - - + + + Volume Fader Volume Fader - - + + Full Volume Full Volume - - + + Zero Volume Zero Volume - + Track Gain Track Gain - + Track Gain knob Track Gain knob - - + + Mute Mute - + Eject Eject - - + + Headphone Listen Headphone Listen - + Headphone listen (pfl) button Headphone listen (pfl) button - + Repeat Mode Repeat Mode - + Slip Mode Slip Mode - - + + Orientation Orientation - - + + Orient Left Orient Left - - + + Orient Center Orient Center - - + + Orient Right Orient Right - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM Tap - + Adjust Beatgrid Faster +.01 Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier Move Beatgrid Earlier - + Adjust the beatgrid to the left Adjust the beatgrid to the left - + Move Beatgrid Later Move Beatgrid Later - + Adjust the beatgrid to the right Adjust the beatgrid to the right - + Adjust Beatgrid Adjust Beatgrid - + Align beatgrid to current position Align beatgrid to current position - + Adjust Beatgrid - Match Alignment Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. Adjust beatgrid to match another playing deck. - + Quantize Mode Quantize Mode - + Sync Sync - + Beat Sync One-Shot Beat Sync One-Shot - + Sync Tempo One-Shot Sync Tempo One-Shot - + Sync Phase One-Shot 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 - + High EQ High EQ - + Mid EQ Mid EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 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 - + 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) Cover Art Show/Hide (Library) - + Show/hide cover art in the 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 - + Headphone Gain Headphone Gain - + Headphone gain Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Skin - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Kill %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 Speed - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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) 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 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 @@ -3510,6 +3583,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3612,32 +3838,32 @@ trace - Above + Profiling messages 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. @@ -3645,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + 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: @@ -3698,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Lock @@ -3728,7 +3954,7 @@ trace - Above + Profiling messages Auto DJ Track Source - + Enter new name for crate: Enter new name for crate: @@ -3745,59 +3971,53 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U Playlist (*.m3u) @@ -3806,23 +4026,29 @@ trace - Above + Profiling messages 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. + + + + Export to Engine DJ + + Crates let you organize your music however you'd like! Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3917,12 +4143,12 @@ trace - Above + Profiling messages Past Contributors - + Official Website - + Donate @@ -4445,37 +4671,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 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. - + Didn't get any midi messages. Please try again. Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: Successfully mapped control: - + <i>Ready to learn %1</i> <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4514,17 +4740,17 @@ You tried to learn: %1,%2 Dump to csv - + Log Log - + Search Search - + Stats Stats @@ -4720,122 +4946,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic Automatic - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Action failed - + You can't create more than %1 source connections. You can't create more than %1 source connections. - + Source connection %1 Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + 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 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Renaming '%1' Renaming '%1' - + 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 @@ -4848,27 +5091,27 @@ Two source connections to the same server that have the same mountpoint can not Live Broadcasting Preferences - + Mixxx Icecast Testing Mixxx Icecast Testing - + Public stream Public stream - + http://www.mixxx.org http://www.mixxx.org - + Stream name Stream name - + 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. 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. @@ -4908,67 +5151,72 @@ Two source connections to the same server that have the same mountpoint can not Settings for %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Dynamically update Ogg Vorbis metadata. - + ICQ ICQ - + AIM AIM - + Website Website - + Live mix Live mix - + IRC IRC - + Select a source connection above to edit its settings here Select a source connection above to edit its settings here - + Password storage Password storage - + Plain text Plain text - + Secure storage (OS keychain) Secure storage (OS keychain) - + Genre Genre - + Use UTF-8 encoding for metadata. Use UTF-8 encoding for metadata. - + Description Description @@ -4994,42 +5242,42 @@ Two source connections to the same server that have the same mountpoint can not Channels - + Server connection Server connection - + Type Type - + Host Host - + Login Login - + Mount Mount - + Port Port - + Password Password - + Stream info Stream info @@ -5039,17 +5287,17 @@ Two source connections to the same server that have the same mountpoint can not Metadata - + Use static artist and title. Use static artist and title. - + Static title Static title - + Static artist Static artist @@ -5108,13 +5356,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number By hotcue number - + Color Color @@ -5159,17 +5408,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5177,114 +5431,114 @@ associated with each key. DlgPrefController - + Apply device settings? Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None None - + %1 by %2 %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? Do you want to save the changes? - + Troubleshooting Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Clear Input Mappings - + Are you sure you want to clear all input mappings? Are you sure you want to clear all input mappings? - + Clear Output Mappings Clear Output Mappings - + Are you sure you want to clear all output mappings? Are you sure you want to clear all output mappings? @@ -5302,100 +5556,105 @@ Apply settings and continue? Enabled - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Description: - + Support: Support: - + Screens preview - + Input Mappings Input Mappings - - + + Search Search - - + + Add Add - - + + Remove Remove @@ -5415,17 +5674,17 @@ Apply settings and continue? - + Mapping Info - + Author: Author: - + Name: Name: @@ -5435,28 +5694,28 @@ Apply settings and continue? Learning Wizard (MIDI Only) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Clear All - + Output Mappings Output Mappings @@ -5471,21 +5730,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5615,6 +5874,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5644,137 +5913,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx mode - + Mixxx mode (no blinking) Mixxx mode (no blinking) - + Pioneer mode Pioneer mode - + Denon mode Denon mode - + Numark mode Numark mode - + CUP mode CUP mode - + 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 hotcue - + First sound (skip silence) First sound (skip silence) - + Beginning of track Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semitone) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6229,62 +6498,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes This skin does not support color schemes - + Information Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6511,67 +6780,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Select Library Font @@ -6620,262 +6919,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Audio File Formats - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Library Row Height: - + Use relative paths for playlist export if possible Use relative paths for playlist export if possible - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track Edit metadata after clicking selected track - + Search-as-you-type timeout: Search-as-you-type timeout: - + ms ms - + Load track to next available deck Load track to next available deck - + External Libraries External Libraries - + You will need to restart Mixxx for these settings to take effect. You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Show Banshee Library - + Show iTunes Library Show iTunes Library - + Show Traktor Library Show Traktor Library - + Show Rekordbox Library Show Rekordbox Library - + Show Serato Library Show Serato Library - + All external libraries shown are write protected. All external libraries shown are write protected. @@ -7220,33 +7524,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7264,43 +7568,55 @@ and allows you to pitch adjust them for harmonic mixing. Browse... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Quality - + Tags Tags - + Title Title - + Author Author - + Album Album - + Output File Format Output File Format - + Compression Compression - + Lossy Lossy @@ -7315,12 +7631,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Compression Level - + Lossless Lossless @@ -7451,173 +7767,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Default (long delay) - + Experimental (no delay) Experimental (no delay) - + Disabled (short delay) Disabled (short delay) - + Soundcard Clock Soundcard Clock - + Network Clock Network Clock - + Direct monitor (recording and broadcasting only) Direct monitor (recording and broadcasting only) - + Disabled Disabled - + Enabled Enabled - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Realtime scheduling is enabled. Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Configuration error @@ -7635,131 +7955,136 @@ The loudness target is approximate and assumes track pregain and main output lev Sound API - + Sample Rate Sample Rate - + Audio Buffer Audio Buffer - + 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 Output Mode - + Microphone Monitor Mode Microphone Monitor Mode - + Microphone Latency Compensation Microphone Latency Compensation - - - - + + + + ms milliseconds ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization Multi-Soundcard Synchronization - + Output Output - + Input Input - + System Reported Latency System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices Query Devices @@ -7801,7 +8126,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinyl Configuration - + Show Signal Quality in Skin Show Signal Quality in Skin @@ -7837,46 +8162,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Signal Quality - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Powered by xwax - + Hints Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7884,58 +8214,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtered - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL not available - + dropped frames dropped frames - + Cached waveforms occupy %1 MiB on disk. Cached waveforms occupy %1 MiB on disk. @@ -7953,22 +8283,17 @@ The loudness target is approximate and assumes track pregain and main output lev Frame rate - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Displays which OpenGL version is supported by the current platform. - - Normalize waveform overview - Normalize waveform overview - - - + Average frame rate Average frame rate @@ -7984,7 +8309,7 @@ The loudness target is approximate and assumes track pregain and main output lev Default zoom level - + Displays the actual frame rate. Displays the actual frame rate. @@ -8019,7 +8344,7 @@ The loudness target is approximate and assumes track pregain and main output lev Low - + Show minute markers on waveform overview @@ -8064,7 +8389,7 @@ The loudness target is approximate and assumes track pregain and main output lev Global visual gain - + 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. @@ -8133,22 +8458,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching Caching - + 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 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. - + Enable waveform caching Enable waveform caching - + Generate waveforms when analyzing library Generate waveforms when analysing library @@ -8164,7 +8489,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8194,12 +8519,58 @@ Select from different types of displays for the waveform, which differ primarily Moves the play marker position on the waveforms to the left, right or center (default). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Clear Cached Waveforms @@ -8207,47 +8578,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Sound Hardware - + Controllers Controllers - + Library Library - + Interface Interface - + Waveforms Waveforms - + Mixer Mixer - + Auto DJ Auto DJ - + Decks Decks - + Colors Colors @@ -8282,47 +8653,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Effects - + 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> - + Vinyl Control Vinyl Control - + Live Broadcasting Live Broadcasting - + Modplug Decoder Modplug Decoder @@ -8678,284 +9049,289 @@ This can not be undone! Summary - + Filetype: Filetype: - + BPM: BPM: - + Location: Location: - + Bitrate: Bitrate: - + Comments Comments - + BPM BPM - + Sets the BPM to 75% of the current value. Sets the BPM to 75% of the current value. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. Displays the BPM of the selected track. - + Track # Track # - + Album Artist Album Artist - + Composer Composer - + Title Title - + Grouping Grouping - + Key Key - + Year Year - + Artist Artist - + Album Album - + Genre Genre - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Sets the BPM to 200% of the current value. - + Double BPM Double BPM - + Halve BPM Halve BPM - + Clear BPM and Beatgrid Clear BPM and Beatgrid - + Move to the previous item. "Previous" button Move to the previous item. - + &Previous &Previous - + Move to the next item. "Next" button Move to the next item. - + &Next &Next - + Duration: Duration: - + Import Metadata from MusicBrainz Import Metadata from MusicBrainz - + Re-Import Metadata from file Re-Import Metadata from file - + Color Color - + Date added: Date added: - + Open in File Browser Open in File Browser - + Samplerate: - + + Filesize: + + + + Track BPM: Track BPM: - + 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 analyser 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. - + Assume constant tempo Assume constant tempo - + Sets the BPM to 66% of the current value. Sets the BPM to 66% of the current value. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Sets the BPM to 150% of the current value. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Sets the BPM to 133% of the current value. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. Hint: Use the Library Analyse view to run BPM detection. - + Save changes and close the window. "OK" button Save changes and close the window. - + &OK &OK - + Discard changes and close the window. "Cancel" button Discard changes and close the window. - + Save changes and keep the window open. "Apply" button Save changes and keep the window open. - + &Apply &Apply - + &Cancel &Cancel - + (no color) @@ -9112,7 +9488,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9314,27 +9690,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (faster) - + Rubberband (better) Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9549,15 +9925,15 @@ 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 @@ -9569,57 +9945,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9627,62 +10003,62 @@ support. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9692,22 +10068,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9757,27 +10133,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9838,22 +10214,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Missing Tracks - + Hidden Tracks Hidden Tracks - - Export to Engine Prime + + Export to Engine DJ - + Tracks Tracks @@ -9861,212 +10237,253 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10082,13 +10499,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lock - - + + Playlists Playlists @@ -10098,32 +10515,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Unlock - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -10222,59 +10670,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 @@ -10388,69 +10836,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier Headphones - + Left Bus + Audio path indetifier Left Bus - + Center Bus + Audio path indetifier Center Bus - + Right Bus + Audio path indetifier Right Bus - + Invalid Bus + Audio path indetifier Invalid Bus - + Deck + Audio path indetifier Deck - + Record/Broadcast + Audio path indetifier Record/Broadcast - + Vinyl Control + Audio path indetifier Vinyl Control - + Microphone + Audio path indetifier Microphone - + Auxiliary + Audio path indetifier Auxiliary - + Unknown path type %1 + Audio path Unknown path type %1 @@ -10785,47 +11246,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Width - + Metronome Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound Set the beats per minute value of the click sound - + Sync Sync - + Synchronizes the BPM with the track if it can be retrieved Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11629,19 +12092,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Deck %1 @@ -11774,7 +12237,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Passthrough @@ -11805,7 +12268,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11837,18 +12300,89 @@ and the processed output signal as close as possible in perceived loudness - - On + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11879,6 +12413,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11889,11 +12424,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11905,11 +12442,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11938,12 +12477,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11978,42 +12517,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12071,54 +12610,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12274,193 +12813,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx encountered a problem - + Could not allocate shout_t Could not allocate shout_t - + Could not allocate shout_metadata_t Could not allocate shout_metadata_t - + Error setting non-blocking mode: Error setting non-blocking mode: - + Error setting tls mode: Error setting tls mode: - + Error setting hostname! Error setting hostname! - + Error setting port! Error setting port! - + Error setting password! Error setting password! - + Error setting mount! Error setting mount! - + Error setting username! Error setting username! - + Error setting stream name! Error setting stream name! - + Error setting stream description! Error setting stream description! - + Error setting stream genre! Error setting stream genre! - + Error setting stream url! Error setting stream url! - + Error setting stream IRC! Error setting stream IRC! - + Error setting stream AIM! Error setting stream AIM! - + Error setting stream ICQ! Error setting stream ICQ! - + Error setting stream public! Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate Unsupported sample rate - + Error setting bitrate Error setting bitrate - + Error: unknown server protocol! Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Error setting protocol! - + Network cache overflow Network cache overflow - + 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> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. Lost connection to streaming server. - + Please check your connection to the Internet. Please check your connection to the Internet. - + Can't connect to streaming server Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. Please check your connection to the Internet and verify that your username and password are correct. @@ -12468,7 +13007,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtered @@ -12476,23 +13015,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device a device - + An unknown error occurred An unknown error occurred - + Two outputs cannot share channels on "%1" Two outputs cannot share channels on "%1" - + Error opening "%1" Error opening "%1" @@ -12677,7 +13216,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Spinning Vinyl @@ -12859,7 +13398,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Cover Art @@ -13049,243 +13588,243 @@ may introduce a 'pumping' effect and/or distortion. Holds the gain of the low EQ to zero while active. - + Displays the tempo of the loaded track in BPM (beats per minute). Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo Tempo - + Key The musical key of a track Key - + BPM Tap BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Tempo and BPM Tap - + Show/hide the spinning vinyl section. Show/hide the spinning vinyl section. - + Keylock Keylock - + Toggling keylock during playback may result in a momentary audio glitch. Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. Seeks the track to the cue point and stops. - + Play Play - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input Select and configure a hardware device for this input - + Recording Duration Recording Duration @@ -13508,943 +14047,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + 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. - + If the track has no beats the unit is seconds. - + Beatloop Size Beatloop Size - + 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. - + Start a loop over the set number of beats. Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + 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. - + Displays the elapsed and/or remaining time of the track loaded. Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. If marker is set, jumps to the marker. - - - - + + + + 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. - - - - + + + + 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 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin Settings Menu - + Show/hide skin settings menu Show/hide skin settings menu - + Save Sampler Bank Save Sampler Bank - + Save the collection of samples loaded in the samplers. Save the collection of samples loaded in the samplers. - + Load Sampler Bank Load Sampler Bank - + Load a previously saved collection of samples into the samplers. Load a previously saved collection of samples into the samplers. - + Show Effect Parameters Show Effect Parameters - + Enable Effect Enable Effect - + Meta Knob Link Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Super Knob - + Next Chain Next Chain - + Previous Chain Previous Chain - + Next/Previous Chain Next/Previous Chain - + Clear Clear - + Clear the current effect. Clear the current effect. - + Toggle Toggle - + Toggle the current effect. Toggle the current effect. - + Next Next - + Clear Unit Clear Unit - + Clear effect unit. Clear effect unit. - + Show/hide parameters for effects in this unit. Show/hide parameters for effects in this unit. - + Toggle Unit Toggle Unit - + 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. - - - - - - - - - + + + + + + + + + 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. - + Switch to the next effect. Switch to the next effect. - + Previous Previous - + Switch to the previous effect. Switch to the previous effect. - + Next or Previous Next or Previous - + Switch to either the next or previous effect. Switch to either the next or previous effect. - + Meta Knob Meta Knob - + Controls linked parameters of this effect Controls linked parameters of this effect - + Effect Focus Button Effect Focus Button - + Focuses this effect. Focuses this effect. - + Unfocuses this effect. Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Effect Parameter - + Adjusts a parameter of the effect. Adjusts a parameter of the effect. - + 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 - - + + Equalizer Parameter Kill Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter Equalizer Parameter - + Adjusts the gain of the EQ filter. Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. If quantize is enabled, snaps to the nearest beat. - + Quantize Quantize - + Toggles quantization. Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse Reverse - + Reverses track playback during regular playback. Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Play/Pause - + Jumps to the beginning of the track. Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key Sync and Reset Key - + Increases the pitch by one semitone. Increases the pitch by one semitone. - + Decreases the pitch by one semitone. Decreases the pitch by one semitone. - + Enable Vinyl Control Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. When enabled, the track responds to external vinyl control. - + Enable Passthrough Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. Displays options for editing cover artwork. - + Star Rating Star Rating - + Assign ratings to individual tracks by clicking the stars. Assign ratings to individual tracks by clicking the stars. @@ -14579,33 +15159,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Microphone Talkover Ducking Strength - + Prevents the pitch from changing when the rate changes. Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. Plays or pauses the track. - + (while playing) (while playing) @@ -14625,215 +15205,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (while stopped) - + Cue Cue - + Headphone Headphone - + Mute Mute - + Old Synchronize Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. If no deck is playing, syncs to the first deck that has a BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Hold for at least a second to enable sync lock for this 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 with sync locked will all play at the same tempo, and decks that also have quantize enabled will always have their beats lined up. - + Resets the key to the original track key. Resets the key to the original track key. - + Speed Control Speed Control - - - + + + Changes the track pitch independent of the tempo. Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. Decreases the pitch by 10 cents. - + Pitch Adjust Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Record Mix - + Toggle mix recording. Toggle mix recording. - + Enable Live Broadcasting Enable Live Broadcasting - + Stream your mix over the Internet. Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit Loop Exit - + Turns the current loop off. Turns the current loop off. - + Slip Mode Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track Track Key - + Displays the musical key of the loaded track. Displays the musical key of the loaded track. - + Clock Clock - + Displays the current time. Displays the current time. - + Audio Latency Usage Meter Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator Audio Latency Overload Indicator @@ -14873,259 +15453,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activate Vinyl Control from the Menu -> Options. - + Displays the current musical key of the loaded track after pitch shifting. Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Fast Rewind - + Fast rewind through the track. Fast rewind through the track. - + Fast Forward Fast Forward - + Fast forward through the track. Fast forward through the track. - + Jumps to the end of the track. Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Pitch Control - + Pitch Rate Pitch Rate - + Displays the current playback rate of the track. Displays the current playback rate of the track. - + Repeat Repeat - + When active the track will repeat if you go past the end or reverse before the start. When active the track will repeat if you go past the end or reverse before the start. - + Eject Eject - + Ejects track from the player. Ejects track from the player. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status Vinyl Status - + Provides visual feedback for vinyl control status: Provides visual feedback for vinyl control status: - + Green for control enabled. Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker Loop-In Marker - + Loop-Out Marker Loop-Out Marker - + Loop Halve Loop Halve - + Halves the current loop's length by moving the end marker. Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. Deck immediately loops if past the new endpoint. - + Loop Double Loop Double - + Doubles the current loop's length by moving the end marker. Doubles the current loop's length by moving the end marker. - + Beatloop Beatloop - + Toggles the current loop on or off. Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time Track Time - + Track Duration Track Duration - + Displays the duration of the loaded track. Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. Information is loaded from the track's metadata tags. - + Track Artist Track Artist - + Displays the artist of the loaded track. Displays the artist of the loaded track. - + Track Title Track Title - + Displays the title of the loaded track. Displays the title of the loaded track. - + Track Album Track Album - + Displays the album name of the loaded track. Displays the album name of the loaded track. - + Track Artist/Title Track Artist/Title - + Displays the artist and title of the loaded track. Displays the artist and title of the loaded track. @@ -15133,12 +15713,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15353,47 +15933,75 @@ This can not be undone! WCueMenuPopup - + Cue number Cue number - + Cue position Cue position - + Edit cue label Edit cue label - + Label... Label... - + Delete this cue Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 Hotcue #%1 @@ -15518,323 +16126,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Create &New Playlist - + Create a new playlist Create a new playlist - + Ctrl+n Ctrl+n - + Create New &Crate Create New &Crate - + Create a new crate Create a new crate - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. May not be supported on all skins. - + 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 - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Show Microphone Section - + Show the microphone section of the Mixxx interface. Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Show Preview Deck - + Show the preview deck in the Mixxx interface. Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Show Cover Art - + Show cover art in the Mixxx interface. Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximize Library - + Maximize the track library to take up all the available screen space. Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library Space - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Full Screen - + Display Mixxx using the full screen Display Mixxx using the full screen - + &Options &Options - + &Vinyl Control &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 Enable Vinyl Control &%1 - + &Record Mix &Record Mix - + Record your mix to a file Record your mix to a file - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off Toggles keyboard shortcuts on or off - + Ctrl+` Ctrl+` - + &Preferences &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer &Developer - + &Reload Skin &Reload Skin - + Reload the skin Reload the skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Developer &Tools - + Opens the developer tools dialog Opens the developer tools dialog - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Deb&ugger Enabled - + Enables the debugger during skin parsing Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Help - + Show Keywheel menu title @@ -15851,74 +16499,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Community Support - + Get help with Mixxx Get help with Mixxx - + &User Manual &User Manual - + Read the Mixxx user manual. Read the Mixxx user manual. - + &Keyboard Shortcuts &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Translate This Application - + Help translate this application into your language. Help translate this application into your language. - + &About &About - + About the application About the application @@ -15926,25 +16574,25 @@ This can not be undone! WOverview - + Passthrough 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 @@ -15953,25 +16601,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Clear input - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Search - + Clear input Clear input @@ -15982,169 +16618,163 @@ This can not be undone! Search... - + Clear the search bar input field Clear the search bar input field - - Enter a string to search for - Enter a string to search for + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Shortcut + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Focus + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Exit search + + Delete query from history + WSearchRelatedTracksMenu - + Search related Tracks - + Key Key - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artist - + Album Artist Album Artist - + Composer Composer - + Title Title - + Album Album - + Grouping Grouping - + Year Year - + Genre Genre - + Directory - + &Search selected @@ -16152,620 +16782,640 @@ This can not be undone! WTrackMenu - + Load to Load to - + Deck Deck - + Sampler Sampler - + Add to Playlist Add to Playlist - + Crates Crates - + Metadata Metadata - + Update external collections Update external collections - + Cover Art Cover Art - + Adjust BPM Adjust BPM - + Select Color Select Color - - + + Analyze Analyse - - + + Delete Track Files - + 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) - + Preview Deck Preview Deck - + Remove Remove - + Remove from Playlist Remove from Playlist - + Remove from Crate Remove from Crate - + Hide from Library Hide from Library - + Unhide from Library Unhide from Library - + Purge from Library Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Properties - + Open in File Browser Open in File Browser - + Select in Library - + Import From File Tags Import From File Tags - + Import From MusicBrainz Import From MusicBrainz - + Export To File Tags Export To File Tags - + BPM and Beatgrid BPM and Beatgrid - + Play Count Play Count - + Rating Rating - + Cue Point Cue Point - - + + Hotcues Hotcues - + Intro Intro - + Outro Outro - + Key Key - + ReplayGain ReplayGain - + Waveform Waveform - + Comment Comment - + All All - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Lock BPM - + Unlock BPM Unlock BPM - + Double BPM Double BPM - + Halve BPM Halve BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + 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) @@ -16781,37 +17431,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16819,37 +17469,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16857,12 +17507,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Show or hide columns. - + Shuffle Tracks @@ -16870,52 +17520,52 @@ This can not be undone! 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. @@ -16929,68 +17579,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Browse - + Export directory - + Database version - + Export Export - + Cancel Cancel - + Export Library to Engine DJ "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -17011,7 +17671,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -17021,23 +17681,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -17062,6 +17722,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17070,4 +17748,27 @@ Click OK to exit. No effect loaded. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_es.qm b/res/translations/mixxx_es.qm index dda504444cb9..267b5ff4d9e5 100644 Binary files a/res/translations/mixxx_es.qm and b/res/translations/mixxx_es.qm differ diff --git a/res/translations/mixxx_es.ts b/res/translations/mixxx_es.ts index 2ce2ef3a8dee..96340636fb9e 100644 --- a/res/translations/mixxx_es.ts +++ b/res/translations/mixxx_es.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Cajas - + Enable Auto DJ Activar Auto DJ - + Disable Auto DJ Desactivar Auto DJ - + Clear Auto DJ Queue Limpiar la cola de Auto DJ - + Remove Crate as Track Source Eliminar la caja como fuente de pista - + Auto DJ Auto DJ - + Confirmation Clear Confirmación limpiada - + Do you really want to remove all tracks from the Auto DJ queue? Realmente quieres eliminar todas las pistas de la cola de Auto DJ? - + This can not be undone. ¡Esto no puede ser revertido! - + Add Crate as Track Source Añadir caja como fuente de pista @@ -223,7 +231,7 @@ - + Export Playlist Exportar lista de reproducción @@ -277,13 +285,13 @@ - + 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: @@ -298,12 +306,12 @@ ¿Desea realmente eliminar la lista de reproducción<b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca de tiempo @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -362,7 +370,7 @@ Canales - + Color Color @@ -377,7 +385,7 @@ Compositor - + Cover Art Carátula @@ -387,7 +395,7 @@ Fecha añadida - + Last Played Última reproducción @@ -417,7 +425,7 @@ Clave - + Location Ubicación @@ -427,7 +435,7 @@ Resumen - + Preview Preescucha @@ -467,7 +475,7 @@ Año - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recuperando imagen... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No se puede usar el almacen de contraseñas seguro: el acceso al almacen ha fallado. - + Secure password retrieval unsuccessful: keychain access failed. No se ha podido obtener la contraseña: El acceso al almacen de claves a fallado. - + Settings error Error de configuración - + <b>Error with settings for '%1':</b><br> <b>Error con las opciones para '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Equipo @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx es un software de DJ de código abierto. Para más información, ver: - + Starts Mixxx in full-screen mode Iniciar Mixxx en modo pantalla completa - + Use a custom locale for loading translations. (e.g 'fr') Utiliza un locale personalizado para cargar traducciones. (ej. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directorio de nivel superior donde Mixxx debería buscar sus archivos de recursos tales como mapeos MIDI, anulando la ubicación de instalación predeterminada. - + Path the debug statistics time line is written to Ruta a donde las estadísticas de depuración de la línea de tiempo son escritas. - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Causa que Mixxx muestre/registre todos los datos del controlador que recibe y las funciones en script que cargue - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! El mapeo del controlador generará advertencias y errores más agresivos cuando detecte un mal uso de las APIs del controlador. Los nuevos mapeos de controladores deben desarrollarse con esta opción activada. - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Activa el modo Desarrollador. Incluye información adicional en el registros, estadísticas de rendimiento, y un menú de Herramientas para Desarrolladores. - + Top-level directory where Mixxx should look for settings. Default is: Directorio de nivel superior en donde Mixxx debería buscar por sus parámetros. Por defecto es : - + Starts Auto DJ when Mixxx is launched. Arranca Auto DJ cuando se inicia Mixxx - + Rescans the library when Mixxx is launched. Re escanea la librería cuando se inicia Mixxx - + Use legacy vu meter Utilizar el vúmetro antiguo - + Use legacy spinny Usar diseño de plato antiguo - - Loads experimental QML GUI instead of legacy QWidget skin - Carga la Interfaz de Usuario QML experimental, en lugar de la skin de legado QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Activa el modo seguro. Desactiva las formas de onda OpenGL y los widgets giratorios de vinilos. Pruebe esta opción si Mixxx no inicia correctamente. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utiliza colores en la salida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ depurar - Arriba + Mensajes de Depuración/Desarrollador rastrear - Arriba + Perfilar mensajes - + 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. Establece el nivel del registro en el cual el búfer de registro es descargado el registro de mixxx. <level> es uno de los valores definidos en --nivel de bitácora de arriba. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Configura el tamaño máximo del archivo mixxx.log en bytes. Usa -1 para ilimitado. Por defecto es 100 MB, como en 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrumpe Mixxx (SIGINT), si un DEBUG_ASSERT evalúa como falso. En un depurador puedes continuar después. - + Overrides the default application GUI style. Possible values: %1 - Anula el estilo por defecto de la GUI de la aplicación. Valores posibles: %1 + Anula el estilo por defecto de la interfaz de usuario de la aplicación. Valores posibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carga el/los archivo(s) de música especificados al inicio. Cada archivo que especifiques se cargará en el siguiente Plato virtual. - + Preview rendered controller screens in the Setting windows. Previsualizar pantallas renderizadas del controlador en las ventanas de Ajustes @@ -984,2557 +997,2585 @@ rastrear - Arriba + Perfilar mensajes ControlPickerMenu - + Headphone Output Salida de auriculares - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Plato %1 - + Sampler %1 Reproductor de muestras %1 - + Preview Deck %1 Deck de preescucha %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restaurar al valor predeterminado - + Effect Rack %1 Unidad de efectos %1 - + Parameter %1 Parámetro %1 - + Mixer Mezclador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mezcla de los auriculares (pre/maestro) - + Toggle headphone split cueing Conmutar la salida dividida de auriculares - + Headphone delay Latencia de auriculares - + Transport Transporte - + Strip-search through track Navegación por toda la pista - + Play button Botón de reproducción - - + + Set to full volume Establecer a volumen máximo - - + + Set to zero volume Establecer a volumen cero - + Stop button Botón de parada - + Jump to start of track and play Ir al comienzo de la pista i reproducir - + Jump to end of track Ir al final de la pista - + Reverse roll (Censor) button Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha por Auriculares - - + + Mute button Botón de silencio - + Toggle repeat mode Conmutar modo repetición - - + + 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 - + Toggle slip mode Conmutar el modo deslizante - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Disminuir BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Disminuir BPM en 0,1 - + BPM tap button Botón de BPM manual - + Toggle quantize mode Conmutar el modo de cuantización - + One-time beat sync (tempo only) Sincronizar por unica vez (sólo el tempo) - + One-time beat sync (phase only) Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal - + Equalizers 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 - + Slot %1 Ranura %1 - + Headphone Mix Mezcla de Auriculares - + Headphone Split Cue Salida partida por auriculares - + Headphone Delay Retardo de auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de Retroceso Rápido - + Fast Forward Avance Rápido - + Fast Forward button Botón de Avance Rápido - + Strip Search Navegación de pista - + Play Reverse Reproducir hacia atrás - + Play Reverse button Botón de Reproducción hacia atrás - + Reverse Roll (Censor) Reproducción hacia atrás (Censura) - + Jump To Start Saltar al Inicio - + Jumps to start of track Saltar al inicio de la pista - + Play From Start Reproducir Desde el Comienzo - + Stop Detener - + Stop And Jump To Start Detener y Saltar al Principio - + Stop playback and jump to start of track Detener reproducción y saltar al inicio de la pista - + Jump To End Saltar al final - + Volume Volumen - - - + + + Volume Fader Deslizador de Volumen - - + + Full Volume Volumen máximo - - + + Zero Volume Volumen cero - + Track Gain Ganancia de pista - + Track Gain knob Rueda de ganancia de pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escuchar por auriculares - + Headphone listen (pfl) button Botón de escucha con auriculares (pfl) - + Repeat Mode Modo de repetición - + Slip Mode Modo Slip - - + + Orientation Orientación - - + + Orient Left Orientar a la izquierda - - + + Orient Center Orientar al centro - - + + Orient Right Orientar a la derecha - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Golpeo de BPM - + Adjust Beatgrid Faster +.01 Acelerar la cuadrícula de tempo en +,01 - + Increase track's average BPM by 0.01 Incrementa el BPM promedio de la pista en 0,01 - + Adjust Beatgrid Slower -.01 Ralentizar la cuadrícula de tempo en -,01 - + Decrease track's average BPM by 0.01 Disminuye el BPM promedio de la pista en 0,01 - + Move Beatgrid Earlier Mover la cuadrícula de tempo antes en el tiempo - + Adjust the beatgrid to the left Ajusta la cuadrícula de tempo hacia la izquierda - + Move Beatgrid Later Mover la cuadrícula de tempo después en el tiempo - + Adjust the beatgrid to the right Ajusta la cuadrícula de tempo hacia la derecha - + Adjust Beatgrid Ajustar cuadrícula de tempo - + Align beatgrid to current position Alinea la cuadrícula de tempo a la posición actual - + Adjust Beatgrid - Match Alignment Ajustar la cuadrícula de tempo - Concidir alineación - + Adjust beatgrid to match another playing deck. Ajusta la rejilla para que coincida con otro deck en reproducción. - + Quantize Mode Modo Cuantizado - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar pulsaciones al momento - + Sync Tempo One-Shot Sincronizar tempo al momento - + Sync Phase One-Shot 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 - + High EQ Ecualización de Agudos - + Mid EQ Ecualización de Medios - - + + Main Output Salida Principal - + Main Output Balance Balance Salida Principal - + Main Output Delay Retardo Salida Principal - + Main Output Gain Ganancia de la Salida principal - + Low EQ 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 deck en control de vinilo - + Single deck mode - Switch vinyl control to next deck Modo de un solo deck - Cambia el control de vinilo al siguiente deck - + 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 deck %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 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 - + Show/hide the microphone & auxiliary section Muestra/oculta la sección del micrófono y el auxiliar - + 4 Effect Units Show/Hide Mostrar/ocultar las 4 Unidades de Efectos - + Switches between showing 2 and 4 effect units Cambia entre mostrar 2 y 4 unidades de efectos - + Mixer Show/Hide Mostrar/Ocultar Mezclador - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Mostrar/Ocultar Portadas (Biblioteca) - + Show/hide cover art in the library Muestra/oculta las portadas en la biblioteca - + 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 - + Headphone Gain Ganancia del auricular - + Headphone gain Ganancia de auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync toca para sincronizar el tempo (y fase con cuantización habilitada) mantenga para sincronizar permanentemente - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unidad de Efectos %1 - + Button Parameter %1 Parámetro %1 del botón. - + Skin Apariencia - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientación - + Main Output gain Ganancia Salida Principal - + Main Output balance Balance Salida Principal - + Main Output delay Retardo (delay) de la Salida principal - + Headphone Auriculares - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprime %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o recupera la pista, es decir, carga la última pista expulsada (de cualquier deck).<br>Pulsa dos veces para cargar la última pista sustituida. En decks vacíos carga la penúltima pista expulsada. - + BPM / Beatgrid BPM / Grilla de tiempo - + Halve BPM Reducir a la mitad los BPM - + Multiply current BPM by 0.5 Multiplica los BPM por 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplica el BPM actual por 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplica el BPM actual por 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplica el BPM actual por 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplica el BPM actual por 1.5 - + Double BPM Dobla los BPM - + Multiply current BPM by 2 Multiplica el BPM actual por 2 - + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Tempo tap button Botón del Tempo Tap - + Move Beatgrid Desplaza la grilla de tiempo - + Adjust the beatgrid to the left or right Ajusta la grilla de tiempo a la izquierda o a la derecha - + Move Beatgrid Half a Beat Desplaza la cuadricula de tiempo medio pulso - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/grilla de tiempo para la pista cargada - + Sync / Sync Lock Sincronizar / Bloqueo Sincronización - + Internal Sync Leader Sincronización Líder Interno - + Toggle Internal Sync Leader Conmutar el modo Sincronización Líder Interno - - + + Internal Leader BPM BPM Líder Interno - + Internal Leader BPM +1 BPM Líder Interno +1 - + Increase internal Leader BPM by 1 Incrementar BPM líder interno en 1 - + Internal Leader BPM -1 BPM Líder Interno -1 - + Decrease internal Leader BPM by 1 Disminuir BPM líder interno en 1 - + Internal Leader BPM +0.1 BPM Líder Interno +0.1 - + Increase internal Leader BPM by 0.1 Incrementar BPM líder interno en 0.1 - + Internal Leader BPM -0.1 BPM Líder Interno -0.1 - + Decrease internal Leader BPM by 0.1 Disminuir BPM Líder Interno en 0.1 - + Sync Leader Líder de Sicronización - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modo de Sicronización 3-State Toggle / Indicador (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Decrease Speed (Fine) Reducir velocidad (fino) - + Pitch (Musical Key) Tono (Clave Musical) - + Increase Pitch Incrementar Tono - + Increases the pitch by one semitone Incrementar el tono por un semitono - + Increase Pitch (Fine) Incrementar Tono (Fino) - + Increases the pitch by 10 cents Incrementa el tono por 10 céntimos - + Decrease Pitch Decrementar Tono - + Decreases the pitch by one semitone Decrementa el tono por un semitono - + Decrease Pitch (Fine) Decrementar Tono (Fino) - + Decreases the pitch by 10 cents Decrementa el tono por 10 céntimos - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Cambiar puntos cue antes - + Shift cue points 10 milliseconds earlier Cambiar puntos marcado 10 milisegundos antes - + Shift cue points earlier (fine) Desplaza el punto cue hacia atrás (fino) - + Shift cue points 1 millisecond earlier Desplaza los puntos cue 1 milisegundo atrás - + Shift cue points later Cambiar puntos marcado después - + Shift cue points 10 milliseconds later Cambiar puntos marcado 10 milisegundos después - + Shift cue points later (fine) Cambiar puntos marcado después (fino) - + Shift cue points 1 millisecond later Cambiar puntos marcado 1 milisegundo después - - + + Sort hotcues by position Ordenar hotcues por posición - - + + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Hotcues %1-%2 Accesos Directos %1-%2 - + Intro / Outro Markers Marcadores de Entrada / Salida - + Intro Start Marker Marcador Inicial de Entrada - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + intro start marker marcador inicial de entrada - + intro end marker Marcador final de entrada - + outro start marker marcador inicial de salida - + outro end marker marcador final de salida - + Activate %1 [intro/outro marker Activa %1 - + Jump to or set the %1 [intro/outro marker Saltar a o poner el %1 - + Set %1 [intro/outro marker Poner %1 - + Set or jump to the %1 [intro/outro marker Establecer o saltar a %1 - + Clear %1 [intro/outro marker Limpiar %1 - + Clear the %1 [intro/outro marker Limpiar el %1 - + if the track has no beats the unit is seconds si la pista no tiene pulsaciones la unidad es segundos - + 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 %1 Beats set from its end point Bucle de %1 pulsaciones desde su punto final - + Loop Roll %1 Beats set from its end point Definir serie de bucles de %1 pulsaciones desde su punto final - + Create %1-beat loop with the current play position as loop end Crea un bucle de 1%-beat con la posición de reproducción actual como final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Crea un redoble de bucle temporal de %1-pulsos con la posición de reproducción actual como final del bucle - + Loop Beats Bucle de pulsos - + Loop Roll Beats Redoble de bucle de pulsos - + Go To Loop In Ir al Loop de entrada - + Go to Loop In button Ir al botón Loop de entrada - + Go To Loop Out Ir al Loop de salida - + Go to Loop Out button Ir al botón Loop de salida - + 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 Salto de pulso - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica qué marcadores de bucle permanecen estáticos al ajustar el tamaño o es ajustado según la posición actual - + Beat Jump / Loop Move Forward Salto de pulso / Bucle hacia adelante - + Beat Jump / Loop Move Backward Salto de pulso / Bucle hacia atrás - + Loop Move Forward Bucle hacia adelante - + Loop Move Backward Bucle en reversa - + Remove Temporary Loop Remueve el bucle temporal - + Remove the temporary loop Remueve el bucle temporal - + 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. - + Sort focused column Ordenar columna enfocada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la celda que está enfocada, equivale a hacer click en su encabezado - + 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 Cargar Pista y Reproducir - + 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 Selecciona el siguiente historial de búsqueda - + Selects the next search history entry Selecciona la siguiente entrada del historial de búsqueda - + Select previous search history Selecciona el historial de búsqueda anterior - + Selects the previous search history entry Selecciona la entrada previa del historial de búsqueda - + Move selected search entry Mover entrada de búsqueda seleccionada - + Moves the selected search history item into given direction and steps Mueve el elemento de la búsqueda histórica seleccionado en la dirección dada y pasa - + Clear search Eliminar búsqueda - + Clears the search query Limpia la búsqueda - - + + Select Next Color Available Selecciona el próximo color disponible - + Select the next color in the color palette for the first selected track Selecciona el próximo color en la paleta de colores para la primera pista seleccionada - - + + Select Previous Color Available Selecciona el anterior color disponible - + Select the previous color in the color palette for the first selected track Selecciona el color anterior en la paleta de colores para la primera pista seleccionada - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Asignación de la Unidad de Efectos - + 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 Valor del parámetro del botón - + 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 Añade una pista aleatoria al Auto DJ - + Add a random track to the Auto DJ queue Añade una pista aleatoria a la fila del Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostrar/Ocultar Micrófono y Auxiliar - + Waveform Zoom Reset To Default Reestablece el zoom de la forma de onda - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restablece el nivel de zoom de la forma de onda al valor por defecto seleccionado en Preferencias > Formas de onda - + Select the next color in the color palette for the loaded track. Selecciona el próximo color en la paleta de colores para la pista cargada. - + Select previous color in the color palette for the loaded track. Selecciona el color anterior en la paleta de colores para la pista cargada. - + Navigate Through Track Colors Navegar a través de los colores de las pistas - + Select either next or previous color in the palette for the loaded track. Selecciona cualquiera de los colores siguientes o anteriores en la paleta de colores para la pista cargada. - + Start/Stop Live Broadcasting Inicia/Detiene Transmisión En Vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Inicia/Detiene la grabación de tu mezcla. - - + + + Deck %1 Stems + + + + + Samplers Muestreadores / 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) Mostrar/ocultar carátulas (en Platos) - + Show/hide cover art in the main decks Mostrar/ocultar carátulas en los platos principales. - + 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) Mostrar/ocultar los vinilos giratorios (todos los platos) - + Show/Hide all spinnies Mostrar/ocultar todos los giradores - + Toggle Waveforms Alternar formas de onda - + Show/hide the scrolling waveforms. Mostrar/ocultar las formas de onda deslizantes - + 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 Agregar una estrella - + Increase the track rating by one star Incrementa la puntuación de la pista en una estrella - + Star Rating Down Quitar una estrella - + Decrease the track rating by one star Reduce la puntuación de la pista en una estrella @@ -3547,6 +3588,159 @@ rastrear - Arriba + Perfilar mensajes Desconocido + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ rastrear - Arriba + Perfilar mensajes ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + You can ignore this error for this session but you may experience erratic behavior. Puedes ignorar este error durante esta sesión, pero podrías experimentar problemas impredecibles. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Error del mapa de controlador - + The mapping for your controller "%1" is not working properly. El mapa de tu controlador "%1" no funciona correctamente. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3682,27 +3876,27 @@ rastrear - Arriba + Perfilar mensajes ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema del archivo del mapa de controlador - + The mapping for controller "%1" cannot be opened. El mapa del controlador "%1" no puede ser abierto. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + File: Archivo: - + Error: Error: @@ -3735,7 +3929,7 @@ rastrear - Arriba + Perfilar mensajes - + Lock Bloquear @@ -3765,7 +3959,7 @@ rastrear - Arriba + Perfilar mensajes Fuente de pistas para Auto DJ - + Enter new name for crate: Introduce un nuevo nombre para la caja: @@ -3782,22 +3976,22 @@ rastrear - Arriba + Perfilar mensajes Importar caja - + Export Crate Exportar caja - + Unlock Desbloquear - + An unknown error occurred while creating crate: Se ha producido un error desconocido al crear la caja: - + Rename Crate Renombrar caja @@ -3807,28 +4001,28 @@ rastrear - Arriba + Perfilar mensajes Haz una caja para tu próximo concierto, para tus temas electrohouse favoritos o para tus temas más solicitados. - + Confirm Deletion Confirmar Borrado - - + + Renaming Crate Failed Fallo al renombrar la caja - + Crate Creation Failed Fallo al crear la caja - + 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) - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) @@ -3849,17 +4043,17 @@ rastrear - Arriba + Perfilar mensajes ¡Las cajas te permiten organizar tu música como quieras! - + Do you really want to delete crate <b>%1</b>? ¿Quieres eliminar la caja <b>%1</b>? - + A crate cannot have a blank name. Una caja no puede tener un nombre en blanco. - + A crate by that name already exists. Ya existe una caja con ese nombre. @@ -3954,12 +4148,12 @@ rastrear - Arriba + Perfilar mensajes Contribuyentes anteriores - + Official Website Sitio web oficial - + Donate Donar @@ -4788,123 +4982,140 @@ Esto podría deberse a que estás usando una skin antigua y este control ya no e DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acción fallida - + You can't create more than %1 source connections. No se pueden crear más de %1 fuentes de emisión en vivo. - + Source connection %1 Fuente de emisión %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Se requiere almenos una fuente de emisión. - + Are you sure you want to disconnect every active source connection? ¿Seguro que deseas desconectar todas las fuentes de emisión activas? - - + + Confirmation required Se necesita confirmación - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' tiene el mismo punto de montaje Icecast que '%2'. No se puede establecer dos conexiones simultáneas al mismo servidor, con el mismo punto de montaje. - + Are you sure you want to delete '%1'? ¿Deseas realmente borrar '%1'? - + Renaming '%1' Renombrando '%1' - + New name for '%1': Nuevo nombre para '%1': - + Can't rename '%1' to '%2': name already in use No se puede renombrar '%1' a '%2': el nombre está en uso @@ -4917,27 +5128,27 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Preferencias de Transmision en Vivo - + Mixxx Icecast Testing Prueba de «Icecast» de Mixxx - + Public stream Transmisión pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nombre de la emisión - + 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. Debido a errores en algunos clientes de transmisión, actualizar dinámicamente los metadatos Ogg Vorbis puede causar interferencias y desconexiones a los oyentes. Marque esta casilla para actualizar los metadatos de todos modos. @@ -4977,67 +5188,72 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Opciones para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinámicamente los metadatos Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Sitio web - + Live mix Mezcla en vivo - + IRC IRC - + Select a source connection above to edit its settings here Selecciona en la lista la fuente de emisión que desees editar - + Password storage Guardado de contraseñas - + Plain text Texto simple - + Secure storage (OS keychain) Almacen seguro (almacen de llaves del SO) - + Genre Género - + Use UTF-8 encoding for metadata. Usar codificación UTF-8 para los metadatos. - + Description Descripción @@ -5063,42 +5279,42 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Canales - + Server connection Conexión al servidor - + Type Tipo - + Host Servidor - + Login Identificación - + Mount Montar - + Port Puerto - + Password Contraseña - + Stream info Información de la emisión @@ -5108,17 +5324,17 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Metadatos - + Use static artist and title. Usar texto de artista y título fijos - + Static title Titulo fijo - + Static artist Artista fijo @@ -5177,13 +5393,14 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis DlgPrefColors - - + + + By hotcue number Por número de hotcue - + Color Color @@ -5228,17 +5445,22 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Cuando se han habilitado los colores de nota, Mixxx mostrará una pista de color asociada con cada nota. - + Enable Key Colors Activar colores de nota - + Key palette Paleta de notas @@ -5246,114 +5468,114 @@ associated with each key. DlgPrefController - + Apply device settings? ¿Aplicar la configuración del dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? La configuración debe ser aplicada antes de iniciar el asistente de aprendizaje. ¿Aplicar la configuración y continuar? - + None Ningún - + %1 by %2 %1 por %2 - + Mapping has been edited Se ha editado el mapeo - + Always overwrite during this session Siempre sobreescribir durante esta sesión - + Save As Guardar como - + Overwrite Sobreescribir - + Save user mapping Guardar mapeo del usuario - + Enter the name for saving the mapping to the user folder. Ingresar el nombre del archivo de mapeo para guardarlo en la carpeta de usuario. - + Saving mapping failed Ha fallado el guardado del mapeo - + A mapping cannot have a blank name and may not contain special characters. El nombre del mapeo no puede estar en blanco, ni contener caracteres especiales. - + A mapping file with that name already exists. Ya existe un archivo de mapeo con el mismo nombre. - + Do you want to save the changes? Quieres guardar los cambios? - + Troubleshooting Solución de problemas - + <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>Si usas este mapeo, tu controlador podría no funcionar correctamente. Por favor selecciona otro mapeo o deshabilita el controlador. </b></font><br><br>Este mapeo fue diseñado para un nuevo Motor de Controladores de Mixxx, y no puede ser usado con tu instalación actual.<br>Tu instalación de Mixxx posee la version del Motor de Controladores %1. Este mapeo requiere una versión del Motor de controladores >=%2.<br><br>Para más información visita la wiki de <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versiones del Motor de Controladores</a>. - + Mapping already exists. El mapeo ya existe. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ya existe en la carpeta de mapeos de usuario. <br>¿Deseas sobreescribir o guardar con otro nombre? - + Clear Input Mappings Limpiar mapeos de Entrada - + Are you sure you want to clear all input mappings? Está seguro de querer eliminar todos los mapeos de entrada? - + Clear Output Mappings Limpiar mapeos de Salida - + Are you sure you want to clear all output mappings? Está seguro de querer eliminar todos los mapeos de salida? @@ -5371,100 +5593,105 @@ Apply settings and continue? Activado - + + Refresh mapping list + + + + Device Info Información del dispositivo - + Physical Interface: Interfase física - + Vendor name: Nombre del fabricante: - + Product name: Nombre del producto: - + Vendor ID ID del proveedor - + VID: VID: - + Product ID ID del producto - + PID: PID: - + Serial number: Número de serie: - + USB interface number: - Número de interfaz USB: + Número de interfaz USB - + HID Usage-Page: - Página de uso HID: + Página de uso HID - + HID Usage: Uso de HID: - + Description: Descripción: - + Support: Soporte: - + Screens preview Previsualizar pantallas - + Input Mappings Mapeos de Entrada - - + + Search Buscar - - + + Add Añadir - - + + Remove Quitar @@ -5484,17 +5711,17 @@ Apply settings and continue? Cargar Mapeo: - + Mapping Info Información de mapeo - + Author: Autor: - + Name: Nombre: @@ -5504,28 +5731,28 @@ Apply settings and continue? Asistente de aprendizaje (sólo MIDI) - + Data protocol: Protocolo de datos: - + Mapping Files: Archivos de mapeo - + Mapping Settings Configuración de mapeo - - + + Clear All Limpiar todo - + Output Mappings Mapeos de Salida @@ -5540,21 +5767,21 @@ 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 utiliza "mapeos" para conectar mensajes desde tu controlador a los controles en Mixxx. Si no ves un mapeo de tu controlador en el menu "Cargar Mapeo" cuando hagas click en tu controlador en la barra deslizable izquierda, pudieras descargar uno en línea desde %1. Coloca los archivos XML (.xml) y Javascript (.js) en la "Carpeta de Mapeo del Usuario" luego reinicia Mixxx. Si descargaste un mapeo en un archivo ZIP, extrae los archivos XML y Javascript del archivo ZIP a tu "Carpeta de Mapeo del Usuario" y luego reinicia 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guía de Hardware de DJ de Mixxx - + MIDI Mapping File Format Formato de archivo de mapeos MIDI - + MIDI Scripting with Javascript Programación de Scripts MIDI con Javascript @@ -5684,6 +5911,16 @@ Apply settings and continue? Multi-Sampling Multi-Muestreo + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5713,137 +5950,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sin parpadeo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (grueso) - + s%1zz - Seconds s%1zz - Segundos - + sss%1zz - Seconds (Long) sss%1zz - Segundos (Duración) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosegundos - + Intro start Inicio de la entrada - + Main cue Marcador principal - + First hotcue Primera hotcue - + First sound (skip silence) Primer sonido (saltar silencio) - + Beginning of track Principio de la pista - + Reject Rechazar - + Allow, but stop deck Permitir, pero detener deck - + Allow, play from load point Permitir, reproducir desde el punto de carga - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6298,62 +6535,62 @@ Siempre puedes arrastrar y tirar pistas en la pantalla para clonar una plataform 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 - + Disabled Desactivado - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx debe ser reiniciado para que el nuevo ajuste de locale, escalado o multi-muestreo tenga efecto. @@ -6581,67 +6818,97 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Ver el manual para más detalles - + 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 - + Item is not a directory or directory is missing El ítem no es un directorio, o el directorio no ha sido encontrado - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6690,262 +6957,267 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Re-escanear directorios al inicio - + Audio File Formats Formatos de archivo de sonido - + Track Table View Vista Tabla de Pistas - + Track Double-Click Action: Acción doble-click de Pista: - + BPM display precision: Precisión al mostrar los BPM: - + Session History Historia de la sesión - + Track duplicate distance Duplicar Distancia de Pista - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Cuando reproduces una pista de nuevo, anéxala al historial de la sesión sólo si más de N otras pistas han sido reproducidas mientras tanto. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Historial de lista de reproducciones con menos de N pistas serán borradas<br/><br/>Nota: la limpieza será realizada durante el inicio y el cierre de Mixxx. - + Delete history playlist with less than N tracks Borrar historial de listado de pistas con menos de N pistas - + Library Font: Fuente para Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks Oscurecer pistas ya tocadas - + Track Search Buscar una pista - + Enable search completions Permitir completar búsquedas - + Enable search history keyboard shortcuts Activar los atajos de teclado del historial de búsqueda - + Percentage of pitch slider range for 'fuzzy' BPM search: Porcentaje del rango del deslizador de pitch para búsqueda de BPM "difuso-variable". - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Este rango será utilizado para buscar BPM "difuso-variable" (~bpm:) en la caja de búsqueda, además de la búsqueda de BPM en el menú contextual Pista > Buscar pistas relacionadas - + Preferred Cover Art Fetcher Resolution Resolución preferida del buscador de carátulas - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Obtén carátulas de coverartarchive.com mediante Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" puede referirse a carátulas muy grandes. - + >1200 px (if available) >1200 px (si está disponible) - + 1200 px (if available) 1200 px (si está disponible) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Directorio de configuración - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. El directorio de configuración de Mixxx contiene la base de datos de la biblioteca, varios archivos de configuración, archivos de bitácoras, datos de análisis de pistas, así como mapeos de controladores personalizados. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Edita estos archivos solo si sabes lo que estás haciendo, y solo cuando Mixxx no esté siendo ejecutado. - + Open Mixxx Settings Folder Abrir carpeta de ajustes de Mixxx - + Library Row Height: Alto de la Fila en Biblioteca: - + Use relative paths for playlist export if possible Usar rutas relativas al exportar lista de reproducción cuando sea posible - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincroniza los metadatos de la librería de pistas desde/hacia las etiquetas de archivos - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automáticamente escribe metadatos de las pistas modificadas desde la biblioteca a las etiquetas del archivo y reimporta metadatos desde las etiquetas actualizadas del archivo a la biblioteca - + Synchronize Serato track metadata from/to file tags (experimental) Sincroniza metadatos de la pista de Serato desde/hacia las etiquetas de archivo (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene el color de la pista, la cuadrícula del ritmo, bloqueo de bpm, puntos de marcado, y bucles sincronizados con las etiquetas de archivo SERATO_MARKERS/MARKERS2.<br/><br/>ADVERTENCIA: Habilitando esta opción también habilita la reimportación de metadatos de Serato después de que los archivos han sido modificados afuera de Mixxx. Al reimportar metadatos existentes en Mixxx se remplaza con los metadatos encontrados en las etiquetas de archivos. Los Metadatos personalizados no incluidos en las etiquetas de archivos como los colores de los bucles se perderán. - + Edit metadata after clicking selected track Editar metadatos al clicar en una pista seleccionada - + Search-as-you-type timeout: Tiempo de espera de búsqueda mientras escribe: - + ms ms - + Load track to next available deck Carga la pista en el siguiente plato disponible - + External Libraries Bibliotecas externas - + You will need to restart Mixxx for these settings to take effect. Usted tendrá que reiniciar Mixxx para que esta configuración surta efecto. - + Show Rhythmbox Library Mostrar la librería de Rhythmbox - + Track Metadata Synchronization / Playlists Metadatos de sincronización de pistas / Listas de reproducción - + Add track to Auto DJ queue (bottom) Añadir pista a la cola de Auto DJ (al final) - + Add track to Auto DJ queue (top) Añadir pista a la cola de Auto DJ (al comienzo) - + Ignore Ignorar - + Show Banshee Library Mostrar la bibiloteca de Banshee - + Show iTunes Library Mostrar la librería de ITunes - + Show Traktor Library Mostrar la librería de Traktor - + Show Rekordbox Library Mostrar la Librería de Rekordbox - + Show Serato Library Mostrar la Librería de Serato - + All external libraries shown are write protected. Todas las bibliotecas mostradas estan protegidas frente a escritura. @@ -7290,33 +7562,33 @@ y te permite ajustar su pitch para lograr mezclas armónicas. DlgPrefRecord - + Choose recordings directory Elegir la carpeta para las grabaciones - - + + Recordings directory invalid Directorio de grabaciones inválido - + Recordings directory must be set to an existing directory. El directorio de Grabaciones debe configurarse a un directorio existente. - + Recordings directory must be set to a directory. El directorio de Grabaciones debe configurarse a un directorio. - + Recordings directory not writable Directorio de Grabaciones no escribible - + You do not have write access to %1. Choose a recordings directory you have write access to. No tienes acceso de escritura en %1. Escoge un directorio de grabación en el que tengas acceso de escritura. @@ -7334,43 +7606,55 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Examinar… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidad - + Tags Etiquetas - + Title Título - + Author Autor - + Album Álbum - + Output File Format Formato de fichero de salida - + Compression Compresión - + Lossy Con pérdidas @@ -7385,12 +7669,12 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Directorio: - + Compression Level Nivel de compresión - + Lossless Sin pérdidas @@ -7523,172 +7807,177 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Por Defecto (mas retardo) - + Experimental (no delay) Experimental (sin retardo) - + Disabled (short delay) Desactivado (poco retardo) - + Soundcard Clock Reloj de la tarjeta de sonido - + Network Clock Reloj de red - + Direct monitor (recording and broadcasting only) Monitorización directa (solo grabación y emisión en vivo) - + Disabled Desactivado - + Enabled Activado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Para activar el Planificador en tiempo real (actualmente desactivado), mira %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 muestra una lista de tarjetas de sonido y controladores que podrías considerar para utilizar con Mixxx - + Mixxx DJ Hardware Guide Guía de Hardware DJ de Mixxx - + + Find details in the Mixxx user manual + + + + Information Información - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx debe ser reiniciado para que el cambio de ajuste de RubberBand multi-hilo tenga efecto. - + auto (<= 1024 frames/period) auto (<= 1024 fotogramas/período) - + 2048 frames/period 2048 fotogramas/período - + 4096 frames/period 4096 fotogramas/período - + Are you sure? ¿Estás seguro(a)? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Distribuir los canales estéreo en canales mono para su procesamiento en paralelo podría resultar en la pérdida de la compatibilidad mono y una imagen estéreo difusa. No se recomienda al transmitir en vivo o al grabar. - + Are you sure you wish to proceed? ¿Realmente deseas continuar? - + No No - + Yes, I know what I am doing Sí, se lo que estoy haciendo - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. La entrada de micrófono está desincronizada respecto la grabación y emisión comparado con la señal que se oye. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mide la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Refer to the Mixxx User Manual for details. Para más detalles, lea el manual de usuario de Mixxx. - + Configured latency has changed. La latencia configurada ha cambiado. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Vuelve a medir la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Realtime scheduling is enabled. La planificación en Tiempo Real está activada. - + Main output only Solo Salida principal - + Main and booth outputs Salidas principal y de cabina - + %1 ms %1 ms - + Configuration error Error de configuración @@ -7755,17 +8044,22 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de vaciado del búfer - + 0 0 @@ -7790,12 +8084,12 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Entrada - + System Reported Latency Latencia reportada por el sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente su búfer de audio si el contador de desbordamiento está aumentando o escuchas chasquidos durante la reproducción. @@ -7825,7 +8119,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Diagnóstico y sugerencias - + Downsize your audio buffer to improve Mixxx's responsiveness. Disminuya su búfer de audio para mejorar la velocidad de respuesta de Mixxx. @@ -7872,7 +8166,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Configuración de Vinilo - + Show Signal Quality in Skin Mostrar Calidad de Señal en la apariencia @@ -7908,46 +8202,51 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y + Pitch estimator + + + + Deck 1 Plato 1 - + Deck 2 Plato 2 - + Deck 3 Plato 3 - + Deck 4 Plato 4 - + Signal Quality Calidad de Señal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Con tecnología de xwax - + Hints Sugerencias - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione los dispositivos de sonico para el Control por Vinilo en el Panel de Hardware de Sonido. @@ -7955,58 +8254,58 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + Top Arriba - + Center Centrado - + Bottom Abajo - + 1/3 of waveform viewer options for "Text height limit" 1/3 de visualización de forma de onda - + Entire waveform viewer Visor de forma de onda completa - + 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. @@ -8024,22 +8323,17 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Tasa de fotograma - + OpenGL Status Estado de OpenGL - + Displays which OpenGL version is supported by the current platform. Muestra qué versión de OpenGL es soportada por la plataforma actual. - - Normalize waveform overview - Normalizar vista de forma de onda - - - + Average frame rate Refresco de pantalla promedio @@ -8055,7 +8349,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Nivel de zoom por defecto - + Displays the actual frame rate. Muestra la tasa de refresco actual. @@ -8090,7 +8384,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Graves - + Show minute markers on waveform overview Mostrar marcadores de minutos en la vista de forma de onda @@ -8135,7 +8429,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Ganancia visual global - + 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. La vista general de forma de onda muestra la forma de onda de la pista entera. @@ -8204,22 +8498,22 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se pt - + Caching Almacenamiento en caché - + 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 almacena en caché las formas de onda de las pistas en el disco la primera vez que se carga una pista. Esto reduce el uso de la CPU cuando se está jugando en vivo, pero requiere espacio en disco adicional. - + Enable waveform caching Habilitar el almacenamiento en caché de forma de onda - + Generate waveforms when analyzing library Generar formas de onda cuando se analiza la biblioteca @@ -8235,7 +8529,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se - + Type Tipo @@ -8265,12 +8559,58 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Mover the marcador de posición en la pista a la izquierda, derecha o centro (Defabrica). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Visualizar formas de onda - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Las formas de onda claras en caché @@ -8762,7 +9102,7 @@ Carpeta: %2 BPM: - + Location: Ubicación: @@ -8777,27 +9117,27 @@ Carpeta: %2 Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Ajusta el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ajusta el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostrar los BPMs de la pista seleccionada. @@ -8852,49 +9192,49 @@ Carpeta: %2 Género - + ReplayGain: Ganancia de repetición: - + Sets the BPM to 200% of the current value. Ajusta el BPM al 200% del valor actual. - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + Clear BPM and Beatgrid Borrar el BPM y la cuadrícula de tempo - + Move to the previous item. "Previous" button Mover al elemento anterior. - + &Previous &Previo - + Move to the next item. "Next" button Mover al siguiente elemento. - + &Next &Siguiente @@ -8919,12 +9259,12 @@ Carpeta: %2 Color - + Date added: Fecha de adición: - + Open in File Browser Abrir en el explorador de archivos @@ -8934,12 +9274,17 @@ Carpeta: %2 Tasa de muestreo: - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8948,90 +9293,90 @@ Utiliza este ajuste si tus pistas tienen un tempo constante (ej. la mayoría de A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en pistas que tienen cambios de tempo. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Ajusta el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Incrementa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Incrementa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee siguiendo el ritmo para establecer el BPM. - + Tap to Beat Pulse siguiendo el ritmo - + Hint: Use the Library Analyze view to run BPM detection. Truco: Use la vista de análisis en la biblioteca para ejecutar la detección de BPM. - + Save changes and close the window. "OK" button Guardar cambios y cerrar la ventana. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar cambios y cerrar. - + Save changes and keep the window open. "Apply" button Guardar cambios y mantener abierta la ventana. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) (sin color) @@ -9188,7 +9533,7 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en &OK - + (no color) (sin color) @@ -9390,27 +9735,27 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Rubberband R3 (near-hi-fi quality) Banda elástica R3 (calidad casi alta fidelidad) - + Unknown, using Rubberband (better) Desconocido, utilizando Banda elástica (mejor) - + Unknown, using Soundtouch Desconocido, usando Soundtouch @@ -9625,15 +9970,15 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en 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 @@ -9645,57 +9990,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9703,37 +10048,37 @@ de OpenGL. Library - + This or a parent directory is already in your library. Este directorio o su superior ya se encuentra en tu biblioteca. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Este directorio o el indicado no existe o es inaccesible. Cancelando la operación para evitar inconsistencias de biblioteca. - - + + This directory can not be read. Este directorio no puede ser leído. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ha ocurrido un error desconocido. Cancelando la operación para evitar inconsistencias de biblioteca - + Can't add Directory to Library No se pudo agregar el directorio a la biblioteca - + Could not add <b>%1</b> to your library. %2 @@ -9742,27 +10087,27 @@ Cancelando la operación para evitar inconsistencias de biblioteca %2 - + Can't remove Directory from Library No se pudo remover el directorio de la biblioteca. - + An unknown error occurred. Ha ocurrido un error desconocido. - + This directory does not exist or is inaccessible. Este directorio no existe o es inaccesible. - + Relink Directory Reenlazar directorio - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9774,22 +10119,22 @@ Cancelando la operación para evitar inconsistencias de biblioteca 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. @@ -9927,12 +10272,12 @@ Do you really want to overwrite it? Pistas Ocultas - + Export to Engine DJ Exportar a Engine DJ - + Tracks Pistas @@ -9940,37 +10285,37 @@ 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 @@ -9980,213 +10325,213 @@ Do you really want to overwrite it? apariencia - + Allow Mixxx to hide the menu bar? ¿Permitir a Mixxx ocultar la barra de menú? - + Hide Always show the menu bar? Ocultar - + Always show Mostrar siempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra de menú de Mixxx ha sido ocultada y se puede alternar presionando la tecla <b>Alt</b>. <br><br>Haz clic en <b>%1</b> para aceptar. <br><br>Haz clic en <b>%2</b> para desactivarlo, por ejemplo si usas Mixxx sin un teclado. <br><br>Puedes cambiar este ajuste en cualquier momento en Preferencias -> Interfaz. <br> - + Ask me again Pregúntame de nuevo - - + + 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? No se ha seleccionado un dispositivo de Entrada para este micrófono. ¿Deseas escoger uno ahora? - + There is no input device selected for this auxiliary. Do you want to select an input device? No se ha seleccionado un dispositivo de entrada para este Auxiliar. ¿Deseas escoger uno ahora? - + Scan took %1 El escaneo tomo %1 - + No changes detected. No se han detectado cambios - + %1 tracks in total %1 pistas en total - + %1 new tracks found Encontradas %1 pistas nuevas - + %1 moved tracks detected %1 pistas movidas detectadas - + %1 tracks are missing (%2 total) %1 pistas perdidas (%2 en total) - + %1 tracks have been rediscovered %1 pistas han sido reencontradas - + Library scan finished Escaneo de la biblioteca terminado - + 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 Renderizado directo 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. 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><b>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? @@ -10202,13 +10547,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reproducción @@ -10218,58 +10563,63 @@ Do you want to select an input device? Aleatorizar lista de reproducción - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Las listas de reproducción son listar ordenadas de pistas que te permiten planificar tus sesiones de DJ. - + 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. Podría ser necesario saltar algunas pistas en tu lista de reproducción planificada, o añadir algunas pistas diferentes, con el fin de mantener la energía de tu audiencia. - + 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 @@ -10297,12 +10647,12 @@ Do you want to select an input device? Rekordbox COLD1 Hotcue Colors - Colores de hotcues COLD1 de Rekordbox + Colores de hotcues de Rekordbox COLD1 Rekordbox COLD2 Hotcue Colors - Colores de hotcues COLD2 de Rekordbox + Colores de hotcues de Rekordbox COLD2 @@ -10368,59 +10718,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 guardadas. - + 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 @@ -10534,69 +10884,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabina - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier Bus izquierdo - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus derecho - + Invalid Bus + Audio path indetifier Bus inválido - + Deck + Audio path indetifier Plato - + Record/Broadcast + Audio path indetifier Grabación / Emisión en vivo - + Vinyl Control + Audio path indetifier Control de vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de ruta %1 desconocida @@ -10939,47 +11302,49 @@ Si la amplitud es cero, este parámetro permite mover la posición manualmente p Ancho - + Metronome Metrónomo - + + The Mixxx Team Equipo de Mixxx - + Adds a metronome click sound to the stream Añade el sonido de tic tac de un metrónomo a la señal de salida - + BPM BPM - + Set the beats per minute value of the click sound Define las pulsaciones por minuto del tic tac - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved Sincroniza el BPM con el de la pista, si se puede obtener - + + Gain Ganancia - + Set the gain of metronome click sound Configura la ganancia del sonido del metrónomo @@ -11783,14 +12148,14 @@ Todo a la derecha: final del período La grabación OGG no está soportada. La librería OGG/Vorbis podría no inicializarse. - - + + encoder failure falla del codificador - - + + Failed to apply the selected settings. Fallo al aplicar los ajustes seleccionados. @@ -11930,7 +12295,7 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"La cantidad de amplificación aplicada a la señal de audio. A niveles más altos, el audio estará más distorsionado. - + Passthrough Paso @@ -11977,36 +12342,107 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"Ganancia compensatoria automática - - Makeup - Compensación / Makeup + + Makeup + Compensación / Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + El botón Auto Makeup activa la ganancia compensatoria automática +para mantener la señal entrante y saliente tan sonoras como sea posible. + + + + Off + Apagado + + + + On + Encendido + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Límite (Threshold, dBFS) + + + + + Threshold + Límite + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - El botón Auto Makeup activa la ganancia compensatoria automática -para mantener la señal entrante y saliente tan sonoras como sea posible. + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Apagado + + Knee (dB) + - - On - Encendido + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Límite (Threshold, dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Límite + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12038,6 +12474,7 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e Knee (dBFS) + Knee Knee @@ -12048,11 +12485,13 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e La perilla de Knee es utilizada para lograr una curva de compresión redondeada. + Attack (ms) Ataque (ms) + Attack Ataque @@ -12065,11 +12504,13 @@ will set in once the signal exceeds the threshold la compresión una vez que la señal supere el Límite + Release (ms) Liberación (Release, ms) + Release Release @@ -12100,12 +12541,12 @@ pueden introducir un efecto de "bombeo" y/o distorsión. varios - + built-in nativo - + missing no encontrado @@ -12140,42 +12581,42 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Stem #%1 - + Empty Vacío - + Simple Simple - + Filtered Filtrado - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Agrupado - + Unknown Desconocido @@ -12436,193 +12877,193 @@ pueden introducir un efecto de "bombeo" y/o distorsión. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontró un problema - + Could not allocate shout_t No se pudo asignar shout_t - + Could not allocate shout_metadata_t No se pudo asignar shout_metadata_t - + Error setting non-blocking mode: Error al establecer el modo "sin bloqueo": - + Error setting tls mode: Error de configuracion del "Modo TLS" - + Error setting hostname! ¡Error al establecer el nombre de host! - + Error setting port! ¡Error al establecer el puerto! - + Error setting password! ¡Error al establecer la contraseña! - + Error setting mount! ¡Error al establecer el punto de montaje! - + Error setting username! ¡Error al establecer el nombre de usuario! - + Error setting stream name! ¡Error al establecer el nombre de la emisión! - + Error setting stream description! ¡Error al establecer la descripción de la emisión! - + Error setting stream genre! ¡Error al establecer el género de la emisión! - + Error setting stream url! ¡Error al establecer la URL de la emisión! - + Error setting stream IRC! ¡Error al configurar el flujo IRC! - + Error setting stream AIM! ¡Error al configurar el flujo AIM! - + Error setting stream ICQ! ¡Error al configurar el flujo ICQ! - + Error setting stream public! Error al iniciar la emisión pública! - + Unknown stream encoding format! ¡Formato de codificación de transmisión desconocido! - + Use a libshout version with %1 enabled Usar una versión de libshout con %1 activado - + Error setting stream encoding format! Error ajuste formato de codificación en emisión! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Transmitir a 96 kHz con Ogg Vorbis no está soportado actualmente. Por favor intente una frecuencia de muestreo diferente o cambie a una codificación diferente. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Consulta https://github.com/mixxxdj/mixxx/issues/5701 para más información. - + Unsupported sample rate Tasa de muestreo no soportada - + Error setting bitrate Error al establecer la tasa de bits - + Error: unknown server protocol! ¡Error: protocolo del servidor desconocido! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast solo soporta codificadores MP3 y AAC - + Error setting protocol! ¡Error al establecer el protocolo! - + Network cache overflow Caché de red excedido - + Connection error Error de connexión - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de las fuentes de emisión en vivo ha lanzado este error:<br><b>Error con la fuente '%1':</b><br> - + Connection message Mensaje de conexión - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensaje de la fuente de emisión en vivo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Se ha perdido la conexión al servidor de emisión y han fallado %1 intentos de reconexión. - + Lost connection to streaming server. Se ha perdido la conexión al servidor de emisión - + Please check your connection to the Internet. Comprueba tu conexión a internet. - + Can't connect to streaming server No se puede conectar al servidor de emisión - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12630,7 +13071,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoftwareWaveformWidget - + Filtered Filtrada @@ -12638,23 +13079,23 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoundManager - - + + a device un dispositivo - + An unknown error occurred Ocurrió un error desconocido - + Two outputs cannot share channels on "%1" Dos salidas no pueden usar los mismos canales de %1 - + Error opening "%1" Error al abrir "%1" @@ -12722,7 +13163,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Reading track for fingerprinting failed. - Ha fallado la lectura de la pista para fingerprinting. + Ha fallado la lectura de la pista para fingerprinting @@ -12839,7 +13280,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Spinning Vinyl Vinilo virtual @@ -13021,7 +13462,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Cover Art Carátula @@ -13211,243 +13652,243 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la ganancia del filtro de graves en cero, mientras está activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Muestra el tempo de la pista cargada, en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Clave - + BPM Tap Golpeo de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el BPM para que coincida con las pulsaciones realizadas. - + Adjust BPM Down Reduce el BPM - + When tapped, adjusts the average BPM down by a small amount. Cuando se pulsa, reduce el BPM promedio un poco. - + Adjust BPM Up Aumenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Cuando se pulsa, aumenta el BPM promedio un poco. - + Adjust Beats Earlier Mueve la cuadrícula un poco antes - + When tapped, moves the beatgrid left by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la izquierda. - + Adjust Beats Later Mueve la cuadrícula un poco después - + When tapped, moves the beatgrid right by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la derecha. - + Tempo and BPM Tap Golpeo de Tempo y BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar la sección de vinilo giratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. Alternar el bloqueo tonal durante la reproducción puede producir una pequeña distorsión de audio. - + Toggle visibility of Loop Controls Cambia la visibilidad de los Controles de Bucles - + Toggle visibility of Beatjump Controls Cambia la visibilidad de los Controles de Salto de Ritmo - + Toggle visibility of Rate Control Alternar visibilidad del control de velocidad - + Toggle visibility of Key Controls Cambia la visibilidad de los Controles de Clave - + (while previewing) (mientras se previsualiza) - + Places a cue point at the current position on the waveform. Coloca un punto de Cue en la posición actual de la forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Detiene la pista en el punto cue, O BIEN va al punto cue y reproduce en soltar (modo CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Establece el punto Cue (Modo Pioneer/Mixxx/Numark), establece el punto Cue y reproduce en soltar (modo CUP) O BIEN hace una preescuha del mismo (Modo Denon). - + Is latching the playing state. Está reteniendo el estado de reproducción. - + Seeks the track to the cue point and stops. Lleva la pista al punto de Cue y para. - + Play Reproducir - + Plays track from the cue point. Reproduce la pista desde el punto Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envía el audio del canal seleccionado a la salida de auriculares, seleccionada en Preferencias -> Hardware de Sonido - + (This skin should be updated to use Sync Lock!) (Esta carátula debería actualizarse para utilizar Bloqueo de Sincronización!) - + Enable Sync Lock Habilitar Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. Pulse para sincronizar el tiempo con otras pistas en reproducción o líder de sincronización. - + Enable Sync Leader Habilitar Sync Lock - + When enabled, this device will serve as the sync leader for all other decks. Cuando está habilitado, este dispositivo servirá como líder de sicronización para todas las otros platos. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Es relevante cuando una pista con tempo dinámico es cargada a un deck líder de sincronización. En ese caso, otros dispositivos sincronizados adoptarán el tempo cambiante. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Cambia la velocidad de reproducción de la pista (afecta tanto el tempo como el tono). Si está habilitado el bloqueo, únicamente afecta al tempo. - + Tempo Range Display Visualizador del rango de tempo - + Displays the current range of the tempo slider. Muestra el rango actual del deslizador de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Se recupera la pista expulsada cuando no hay ninguna pista cargada, es decir, vuelve a cargar la pista que se expulsó en último lugar (de cualquier deck). - + Delete selected hotcue. Elimina la hotcue seleccionada. - + Track Comment Comentario de la pista - + Displays the comment tag of the loaded track. Muestra la etiqueta de comentario de la pista cargada. - + Opens separate artwork viewer. Abre el visualizador separado de carátulas. - + Effect Chain Preset Settings Configuraciones de Preconfiguración de Cadena de Efectos - + Show the effect chain settings menu for this unit. Muestra el menú de las configuraciones de las cadenas de efectos para esta unidad. - + Select and configure a hardware device for this input Selecciona y configura un dispositivo de hardware para esta entrada - + Recording Duration Duración de la grabación @@ -13509,7 +13950,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Shows the current volume for the left channel of the main output. - Muestra el volumen actual para el canal izquierdo de la salida principal. + Muestra el volumen actual para el canal izquierdo en la salida principal. @@ -13670,948 +14111,983 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la velocidad de reproducción baja (pequeña cantidad) cuando se activa. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el tempo para coincidir con la frecuencia de pulsaciones. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Rate Tap and BPM Tap Frecuencia de pulsaciones y de BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en -pistas con tempo constante. +pistas con tempo constante - + Revert last BPM/Beatgrid Change - Revertir el último cambio de BPM/cuadrícula de tiempo + Revierte el último cambio de BPM/cuadrícula de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/Cuadrícula de tiempo para la pista cargada. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/cuadrícula de tiempo - + Tempo and Rate Tap Toques de Tempo y Frecuencia - + Tempo, Rate Tap and BPM Tap Toques de Tempo, Frecuencia y BPM - + Shift cues earlier Cambia marcas antes - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Cambia marcas importadas desde Serato o Rekordbox si están ligeramente desfazadas. - + Left click: shift 10 milliseconds earlier Clic izquierdo: adelantar 10 milisegundos - + Right click: shift 1 millisecond earlier Clic derecho: adelantar 1 milisegundo - + Shift cues later Retrasar cues - + Left click: shift 10 milliseconds later Clic izquierdo: retrasar 10 milisegundos - + Right click: shift 1 millisecond later Clic derecho: retrasar 1 milisegundo - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Arrastra un botón de Hotcue aquí para continuar reproduciendo después de soltar la hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Sugerencia: cambie el modo por defecto de las cues en Preferencias -> Platos. - + Mutes the selected channel's audio in the main output. Silencia el audio del canal seleccionado en la salida principal. - + Main mix enable Activador de mezcla principal - + Hold or short click for latching to mix this input into the main output. Clic sostenido o corto para enganchar, para mezclar esta entrada con la salida principal. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si la hotcue es una cue de bucle, activa el bucle y salta hacia él si se encuentra detrás de la posición de reproducción. - + If the play position is inside an active loop, stores the loop as loop cue. Si la posición de reproducción se encuentra dentro de un bucle activo, almacena el bucle como una hotcue de bucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Arrastrar este botón dentro de otro botón de hotcue para moverlo hacia este (cambiando su número). Si la otra hotcue ya se encuentra definida, las dos son intercambiadas. - + Expand/Collapse Samplers Expandir/contraer samplers - + Toggle expanded samplers view. Alternar la vista expandida de los samplers. - + Displays the duration of the running recording. Muestra la duración de la grabación en curso. - + Auto DJ is active Auto DJ se encuentra activo - + Red for when needle skip has been detected. Rojo cuando se detecta un salto de aguja. - + Hot Cue - Track will seek to nearest previous hotcue point. Acceso Directo - La pista buscará el punto anterior más cercano del acceso directo. - + Sets the track Loop-In Marker to the current play position. Establece la marca de inicio de bucle a la posición actual - + Press and hold to move Loop-In Marker. Mantener presionado para mover la marca de inicio de bucle. - + Jump to Loop-In Marker. Ir a la marca de inicio de bucle. - + Sets the track Loop-Out Marker to the current play position. Establece la marca de fin de bucle a la posición actual. - + Press and hold to move Loop-Out Marker. Mantener presionado para mover la marca de fin de bucle. - + Jump to Loop-Out Marker. Ir a la marca de fin de bucle. - + If the track has no beats the unit is seconds. Si la pista no tiene pulsaciones, la unidad es segundos. - + Beatloop Size Pulsaciones del bucle - + Select the size of the loop in beats to set with the Beatloop button. Define el tamaño del bucle en pulsaciones a usar cuando se pulse el botón de bucle de pulsaciones. - + Changing this resizes the loop if the loop already matches this size. Al cambiar este valor, cambiará el tamaño del bucle existente, si tenía el tamaño anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduce a la mitad el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Dobla el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Start a loop over the set number of beats. Activa un bucle con la cantidad definida de pulsaciones. - + Temporarily enable a rolling loop over the set number of beats. Activa temporalmente un bucle de continuación con la cantidad de pulsaciones definidas. - + Beatloop Anchor Ancla del bucle de pulsaciones - + Define whether the loop is created and adjusted from its staring point or ending point. Define si el bucle es creado y ajustado desde su punto de inicio o de final. - + Beatjump/Loop Move Size Tamaño del salto de pulsaciones/Desplazamiento del bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la cantidad de pulsaciones a saltar o a mover el bucle con los botones de avance/retroceso. - + Beatjump Forward Avanzar en pulsaciones - + Jump forward by the set number of beats. Avanza la pista la cantidad definida de pulsaciones. - + Move the loop forward by the set number of beats. Avanza el bucle en la cantidad definida de pulsaciones. - + Jump forward by 1 beat. Avanza 1 pulsación. - + Move the loop forward by 1 beat. Avanza el bucle 1 pulsación. - + Beatjump Backward Retrocede en pulsaciones - + Jump backward by the set number of beats. Retrocede la cantidad de pulsaciones definida. - + Move the loop backward by the set number of beats. Retrocede el bucle la cantidad de pulsaciones definida. - + Jump backward by 1 beat. Retrocede 1 pulsación. - + Move the loop backward by 1 beat. Retrocede el bucle 1 pulsación. - + Reloop Repite el bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle está por delante de la posición actual, este no se activará hasta que se llege a él. - + Works only if Loop-In and Loop-Out Marker are set. Solo funciona si las marcas de inicio y fin de bucle estan definidas. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, va a la posición de inicio de bucle y se detiene. - + Displays the elapsed and/or remaining time of the track loaded. Muestra el tiempo transcurrido y/o restante de la pista cargada. - + Click to toggle between time elapsed/remaining time/both. Pulsar para cambiar entre tiempo transcurrido/restante/ambos - + Hint: Change the time format in Preferences -> Decks. Sugerencia: cambie el formato de tiempo en Preferencias -> Platos. - + Show/hide intro & outro markers and associated buttons. Mostrar/ocultar marcadores de intro y outro, y sus botones asociados. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador Inicial de Entrada - - - - + + + + If marker is set, jumps to the marker. Si el marcador se encuentra definido, salta al marcador. - - - - + + + + If marker is not set, sets the marker to the current play position. Si el marcador no se encuentra definido, lo configura a la posición de reproducción actual. - - - - + + + + If marker is set, clears the marker. Si el marcador se encuentra definido, lo elimina. - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste la mezcla de la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + D/W mode: Crossfade between dry and wet Modo D/W: fundido cruzado entre seco y húmedo - + D+W mode: Add wet to dry Modo D+W: agregue húmedo a seco - + Mix Mode Modo Mix - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste cómo se mezcla la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + 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 seco / húmedo (líneas cruzadas): Mezcle los fundidos cruzados de la perilla entre seco y húmedo. Use esto para cambiar el sonido de la pista con EQ y efectos de 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 seco + húmedo (línea seca plana): la perilla de mezcla agrega húmedo a seco. Use esto para cambiar solo la señal efectuada (húmeda) con EQ y efectos de filtro. - + Route the main mix through this effect unit. Enruta la mezcla principal a través de esta unidad de efectos. - + Route the left crossfader bus through this effect unit. Redirige el bus izquierdo del crossfader a través de esta unidad de efectos. - + Route the right crossfader bus through this effect unit. Redirige el bus derecho del crossfader a través de esta unidad de efectos. - + Right side active: parameter moves with right half of Meta Knob turn Derecha activo: el parámetro se mueve al mover la mitad derecha del control Meta. - + Stem Label Etiqueta de stem - + Name of the stem stored in the stem file Nombre del stem almacenado en el archivo de stem - + Text is displayed in the stem color stored in the stem file El texto es presentado con el color del stem almacenado en el archivo de stem - + this stem color is also used for the waveform of this stem este color de stem también es usado en la forma de onda de este stem - + Stem Mute Silenciar stem - + Toggle the stem mute/unmuted Alterna el silencio del stem - + Stem Volume Knob Perilla de volumen del stem - + Adjusts the volume of the stem Ajusta el volumen del stem - + Skin Settings Menu Menú de las opciones de la Apariencia - + Show/hide skin settings menu Muestra/esconde el menú de opciones de la Apariencia - + Save Sampler Bank Guardar banco de muestras - + Save the collection of samples loaded in the samplers. Guarda la colección de muestras cargadas en los reproductores de muestras. - + Load Sampler Bank Cargar banco de muestras - + Load a previously saved collection of samples into the samplers. Carga en los reproductores de muestras una colección de muestras guardada en anterioridad. - + Show Effect Parameters Mostrar parámetros de efectos - + Enable Effect Activar efecto - + Meta Knob Link Enlace de la rueda Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura cómo le afecta a este parámetro la rueda Meta. - + Meta Knob Link Inversion Inversión del enlaze de la rueda Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invierte la dirección en la que se mueve el parámetro al mover la rueda Meta. - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Previous Chain Cadena anterior - + Next/Previous Chain Cadena siguiente/anterior - + Clear Borrar - + Clear the current effect. Borra el efecto actual. - + Toggle Conmutar - + Toggle the current effect. Conmuta el efecto actual. - + Next Siguente - + Clear Unit Limpiar unidad - + Clear effect unit. limpiar la unidad de efectos. - + Show/hide parameters for effects in this unit. Muestra/esconde los parámetros de los efectos de esta unidad. - + Toggle Unit Conmutar la unidad - + Enable or disable this whole effect unit. Activa o desactiva la unidad de efectos. - + Controls the Meta Knob of all effects in this unit together. Controla a la vez las ruedas Meta de todos los efectos asociados a esta unidad. - + Load next effect chain preset into this effect unit. Carga el siguiente preajuste de efectos en esta unidad de efectos. - + Load previous effect chain preset into this effect unit. Carga el anterior preajuste de efectos en esta unidad de efectos. - + Load next or previous effect chain preset into this effect unit. Carga el siguiente o anterior preajuste de efectos en esta unidad de efectos. - - - - - - - - - + + + + + + + + + Assign Effect Unit Asignar la unidad de efectos - + Assign this effect unit to the channel output. Asigna esta unidad de efectos a la salida del canal. - + Route the headphone channel through this effect unit. Redirige la salida de auriculares a través de la unidad de efectos. - + Route this deck through the indicated effect unit. Redirige este plato a través de la unidad de efectos indicada. - + Route this sampler through the indicated effect unit. Redirige este reproductor a través de la unidad de efectos indicada. - + Route this microphone through the indicated effect unit. Redirige este micrófono a través de la unidad de efectos indicada. - + Route this auxiliary input through the indicated effect unit. Redirige la entrada auxiliar a través de la unidad de efectos indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. La unidad de efectos debe estar asignada a un plato o otra fuente de sonido para oír el efecto. - + Switch to the next effect. Pasa al siguiente efecto. - + Previous Anterior - + Switch to the previous effect. Pasa al efecto anterior. - + Next or Previous Siguiente o Anterior - + Switch to either the next or previous effect. Pasa al siguiente o anterior efecto. - + Meta Knob Rueda Meta - + Controls linked parameters of this effect Controla los parámetros enlazados del efecto - + Effect Focus Button Botón de foco de efecto - + Focuses this effect. Pone el foco en el efecto. - + Unfocuses this effect. Quita el foco del efecto. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulta la página web de tu controlador en la wiki del Mixxx para más información - + Effect Parameter parámetro de efecto - + Adjusts a parameter of the effect. Ajusta un parámetro del efecto. - + Inactive: parameter not linked Inactivo: parámetro no enlazado - + Active: parameter moves with Meta Knob Activo: el parámetro se mueve con la rueda Meta - + Left side active: parameter moves with left half of Meta Knob turn Izquierda activo: el parámetro se mueve con la primera mitad de la rueda Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Izquierda y derecha activo: el parámetro recorre todo el rango con la primera mitad de la rueda Meta, y vueve atrás con la segunda mitad - - + + Equalizer Parameter Kill Parámetro de supresión del ecualizador - - + + Holds the gain of the EQ to zero while active. Mantiene la ganáncia de EQ a cero mientras está activo. - + Quick Effect Super Knob Rueda Súper de efecto rápido - + Quick Effect Super Knob (control linked effect parameters). Rueda Súper de efecto rápido (controla los parámetros de efecto asociados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Nota: Puedes cambiar el efecto rápido por defecto en Preferéncias > Ecualizadores. - + Equalizer Parameter ecualizador paramétrico - + Adjusts the gain of the EQ filter. Ajusta la ganáncia del filtro de EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Nota: Se puede cambiar el modo de EQ por defecto en Preferencias > Ecualizadores. - - + + Adjust Beatgrid Ajustar cuadrícula de tempo - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la cuadrícula de tempo para que el golpe más cercano se alinee con la posición actual de reproducción. - - + + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + If quantize is enabled, snaps to the nearest beat. Si la cuantización está activada, se acerca al compás más cercano. - + Quantize Cuantizar - + Toggles quantization. Conmutar la cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Cuando está activada, los bucles y cue se alinean con el compás más cercano. - + Reverse Reversa - + Reverses track playback during regular playback. Reproduce en reversa, durante reproducción normal. - + Puts a track into reverse while being held (Censor). Pone la pista en reversa mientras se mantiene presionado. - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducción se continuará en el punto al que habría llegado la pista si no hubiese puesto en reversa. - - - + + + Play/Pause Reproducir/Pausar - + Jumps to the beginning of the track. Salta al principio de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) y la fase de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Sync and Reset Key Sincroniza y resetea la tonalidad - + Increases the pitch by one semitone. Incrementa el tono en una seminota. - + Decreases the pitch by one semitone. Decrementa el tono en una seminota. - + Enable Vinyl Control Activar vinilo de control - + When disabled, the track is controlled by Mixxx playback controls. Si está desactivado, los controles de reproducción del Mixxx controlan la pista. - + When enabled, the track responds to external vinyl control. Si está activado, el control de vinilo externo controla la pista. - + Enable Passthrough Activa el paso de audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer de audio es demasiado pequeño para llevar a cabo todo el procesamiento de audio. - + Displays cover artwork of the loaded track. Muestra la carátula de la pista cargada. - + Displays options for editing cover artwork. Muestra las opciones de edición de carátula. - + Star Rating Puntuación - + Assign ratings to individual tracks by clicking the stars. Asigna la puntuación de cada pista pulsando en las estrellas. @@ -14638,7 +15114,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Right click hotcues to edit their labels and colors. - Clic derecho en hotcues para editar sus etiquetas y colores. + Click derecho en los accesos directos para editar sus etiquetas y colores. @@ -14746,33 +15222,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Intensidad de atenuación al usar el Micrófono - + Prevents the pitch from changing when the rate changes. Evita que el tono cambie al cambiar la velocidad. - + Changes the number of hotcue buttons displayed in the deck Cambia el número de botones de acceso directo que se muestran en la cubierta - + Starts playing from the beginning of the track. Comienza la reproducción desde el principio de la pista. - + Jumps to the beginning of the track and stops. Salta al principio de la pista y se detiene. - - + + Plays or pauses the track. Reproduce o pausa la pista. - + (while playing) (estando en reproducción) @@ -14792,215 +15268,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Medidor de volumen del canal principal R - + (while stopped) (mientras está parado) - + Cue Cue - + Headphone Auriculares - + Mute Silenciar - + Old Synchronize Sincronización antígua - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Se sincroniza con la primera pista (en orden numérico) que está sonando y tiene BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hay pistas en reprodución, se sincroniza con la primera pista que tenga BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Mantener pulsado durante un segundo para activar la sincronización fija para este plato. - + 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. Los platos con la sincronización bloqueada reproducirán todos al mismo tempo, y si además tienen la quantización activada, también se alinearán los compases. - + Resets the key to the original track key. Resetea la clave musical a la original de la pista. - + Speed Control Control de velocidad - - - + + + Changes the track pitch independent of the tempo. Cambia el tono de la pista independientemente del tempo. - + Increases the pitch by 10 cents. Aumenta el tono 10 centésimas. - + Decreases the pitch by 10 cents. Reduce el tono 10 centésimas. - + Pitch Adjust Ajuste de velocidad - + Adjust the pitch in addition to the speed slider pitch. Ajusta la velocidad añadiendo al cambio del deslizador de velocidad. - + Opens a menu to clear hotcues or edit their labels and colors. Abre un menú para limpiar los accesos directos o editar sus etiquetas y colores. - + Drag this button onto a Play button while previewing to continue playback after release. - Arrastre este botón a un botón de Play durante la preescucha para continuar la reproducción tras soltarlo. + Arrastre este botón a un boton de Play durante la preescucha para continuar la reproducción tras soltarlo. - + Dragging with Shift key pressed will not start previewing the hotcue. Arrastrar mientras presiona la tecla Shift no iniciará la preescucha de la hotcue. - + Record Mix Grabar mezcla - + Toggle mix recording. Conmutar la grabación de la mezcla. - + Enable Live Broadcasting Activar la emisión en vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Provides visual feedback for Live Broadcasting status: Da una indicación acerca del estado de la emisión en vivo: - + disabled, connecting, connected, failure. desactivado, conectando, conectado, fallo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Cuando está activado, el plato reproduce directamente el audio que recibe por la entrada de vinilo. - + Playback will resume where the track would have been if it had not entered the loop. La reproducción se reanudará en el punto al que habría llegado la pista si no hubiese entrado en el bucle. - + Loop Exit Salida del bucle - + Turns the current loop off. Desactiva el bucle actual. - + Slip Mode Modo Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cuando está activado, la reproducción continúa en silencio mientras dura el bucle, la reproducción hacia atrás, scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Una vez desactivado, la reproducción (audible) seguirá donde la pista habría estado. - + Track Key The musical key of a track Tonalidad de la pista - + Displays the musical key of the loaded track. Muestra la clave musical de la pista cargada. - + Clock Reloj - + Displays the current time. Muestra la hora actual. - + Audio Latency Usage Meter Medidor de Latencia de Audio - + Displays the fraction of latency used for audio processing. Muestra la parte de latencia usada para el proceso de audio. - + A high value indicates that audible glitches are likely. Un valor alto indica que se pueden percibir ruidos. - + Do not enable keylock, effects or additional decks in this situation. No activar el bloqueo de tonalidad, los efectos o los platos adicionales en este caso. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latencia de Audio @@ -15040,259 +15516,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activa el control de vinilo desde el Menú -> Opciones. - + Displays the current musical key of the loaded track after pitch shifting. Muestra la clave musical actual para la pista cargada teniendo en cuenta el cambio de tonalidad. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Rebobinado rápido a través de la pista. - + Fast Forward Avance Rápido - + Fast forward through the track. Avance Rápido a través de la pista. - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Cambia la tonalidad a una clave musical que permite la transición harmónica de un plato a otro. Es necesario que se haya detectado la clave en ambos platos. - - - + + + Pitch Control Control del pitch - + Pitch Rate Ritmo de cambio de tonalidad - + Displays the current playback rate of the track. Muestra el ritmo de reproducción actual de la pista. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Estando activo la pista se repetirá si se pasa del final o si retrocede antes del comienzo. - + Eject Expulsar - + Ejects track from the player. Expulsa la pista del reproductor. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Si el hotcue está establecido, salta al hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Si el hotcue no está establecido, establece el hotcue en la actual posición de reproducción. - + Vinyl Control Mode Modo de control de vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - la posicion dentro del tema corresponde a la posicion y velocidad de la aguja. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - la velocidad del tema corresponde a la velocidad de la aguja independientemente de la posicion. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - la velocidad del tema corresponde a la ultima velocidad conocida independientemente de lo que se recibe de la aguja. - + Vinyl Status Estado del vinilo - + Provides visual feedback for vinyl control status: Provee retroalimentación visual sobre el estado del control de vinilo: - + Green for control enabled. Verde para control activo. - + Blinking yellow for when the needle reaches the end of the record. Amarillo parpadeante cuando la aguja alcanza el final de la grabación. - + Loop-In Marker Marcador de inicio de bucle - + Loop-Out Marker Marcador de fin de bucle - + Loop Halve Reducir bucle a la mitad - + Halves the current loop's length by moving the end marker. Reduce a la mitad la longitud del bucle actual, moviendo la marca de fin. - + Deck immediately loops if past the new endpoint. El plato vuelve al inicio del bucle inmediatamente si se ha superado el nuevo punto final. - + Loop Double Aumentar bucle al doble - + Doubles the current loop's length by moving the end marker. Aumenta al doble la longitud del bucle actual, moviendo la marca de fin. - + Beatloop Bucle de pulsaciones - + Toggles the current loop on or off. Activa o desactiva el bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Funciona sólo si se han definido las marcas de inicio y fin de bucle. - + Vinyl Cueing Mode Modo de Cue de Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina cómo los puntos Cue son tratados en el modo de control Relativo de Vinilos: - + Off - Cue points ignored. Off - Los puntos CUE se ignoran. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Cue - si se pone la aguja mas allá del punto cue, se irá al punto Cue de la pista. - + Track Time Tiempo de pista - + Track Duration Duración de la Pista - + Displays the duration of the loaded track. Muestra la duración de la pista cargada. - + Information is loaded from the track's metadata tags. Información cargada desde el tag de metadatos de las pistas. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Muestra el artista de la pista cargada. - + Track Title Título de la pista - + Displays the title of the loaded track. Muestra el título de la pista cargada. - + Track Album Álbum de la pista - + Displays the album name of the loaded track. Muestra el nombre del álbum de la pista cargada. - + Track Artist/Title Artista/Título de la pista - + Displays the artist and title of the loaded track. Muestra el artista y el título de la pista cargada. @@ -15523,47 +15999,75 @@ Carpeta: %2 WCueMenuPopup - + Cue number Número de cue - + Cue position Posición Marca - + Edit cue label Editar etiqueta de marca - + Label... Etiqueta... - + Delete this cue Borrar esta marca - - Toggle this cue type between normal cue and saved loop - Alterna el tipo de esta cue entre cue normal y bucle guardado + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic izquierdo: usar el tamaño anterior o el del bucle actual como el tamaño de bucle + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic derecho: usar la posición de reproducción actual como final del bucle si se encuentra después de la cue + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Acceso DIrecto #%1 @@ -15688,323 +16192,363 @@ Carpeta: %2 + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear &nueva Playlist - + Create a new playlist Crear una nueva lista de reproducción - + Ctrl+n Ctrl+N - + Create New &Crate Crear nueva &caja - + Create a new crate Crea una nueva caja - + Ctrl+Shift+N Ctrl+Mayús+N - - + + &View &Vista - + Auto-hide menu bar Auto-ocultar barra de menú - + Auto-hide the main menu bar when it's not used. Auto-ocultar la barra de menú principal cuando no es utilizada. - + May not be supported on all skins. Puede no estar disponible para todas las apariencias. - + Show Skin Settings Menu Mostrar la configuración de Temas - + Show the Skin Settings Menu of the currently selected Skin Mostrar la configuración actual del menu de tema - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar seccion del microfono - + Show the microphone section of the Mixxx interface. Muestra la sección de control de micrófono de la interfaz de Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar la Sección de Control de Vinilo - + Show the vinyl control section of the Mixxx interface. Muestra la sección de control de vinilo de la interfaz de Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar el reproductor de preescucha - + Show the preview deck in the Mixxx interface. Muestra el reproductor de preescucha en la interfaz de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Muestra carátulas - + Show cover art in the Mixxx interface. Muestra las carátulas en la interfaz de Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Space Menubar|View|Maximize Library Espacio - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Mostrar Mixxx a pantalla completa - + &Options &Opciones - + &Vinyl Control Control de &vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con codigo de tiempo en bandejas externas para controlar Mixxx - + Enable Vinyl Control &%1 Habilita el Control por Vinilo &%1 - + &Record Mix &Grabar Mezcla - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar transmisión en &vivo - + Stream your mixes to a shoutcast or icecast server Transmite tus mezclas a un servidor shoutcast o icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar Atajos de &Teclado - + Toggles keyboard shortcuts on or off Activa o desactiva los atajos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar la configuración de Mixxx (p.ej.: reproducción, MIDI, controles) - + &Developer &Desarrollador - + &Reload Skin &Recargar apariencia - + Reload the skin Recargar la apariencia - + Ctrl+Shift+R Ctrl+Mayús+R - + Developer &Tools U&tilidades de desarrollador - + Opens the developer tools dialog Abre el cuadro de diálogo de herramientas de desarrollo - + Ctrl+Shift+T Ctrl+Mayús+T - + Stats: &Experiment Bucket Estadísticas: Contadores &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el modo experimental. Recoje estadísticas en los contadores EXPERIMENT. - + Ctrl+Shift+E Ctrl+Mayús+E - + Stats: &Base Bucket Estadísticas: contadores &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el modo base. Recoje estadísticas en los contadores BASE. - + Ctrl+Shift+B Ctrl+Mayús+B - + Deb&ugger Enabled Dep&uración activada - + Enables the debugger during skin parsing Activa el depurador durante el análisis de la máscara - + Ctrl+Shift+D Ctrl+Mayús+D - + &Help Ay&uda - + Show Keywheel menu title Mostrar rueda de notas @@ -16021,74 +16565,74 @@ Carpeta: %2 Exportar biblioteca al formato Engine DJ - + Show keywheel tooltip text Mostrar rueda de notas - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Soporte &comunitario - + Get help with Mixxx Obtener ayuda con Mixxx - + &User Manual Manual de &usuario - + Read the Mixxx user manual. Lea el manual de usuario de Mixxx. - + &Keyboard Shortcuts Atajos de &Teclado - + Speed up your workflow with keyboard shortcuts. Trabaja más rápidamente usando los atajos de teclado. - + &Settings directory &Directorio de configuración - + Open the Mixxx user settings directory. Abre el directorio de configuración de usuario de Mixxx. - + &Translate This Application &Traducir esta aplicación - + Help translate this application into your language. Ayude a traducir esta aplicación a su idioma. - + &About &Acerca de - + About the application Acerca de la aplicación @@ -16096,25 +16640,25 @@ Carpeta: %2 WOverview - + Passthrough Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Listo para reproducir, analizando... - - + + Loading track... Text on waveform overview when file is cached from source Cargando pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizando... @@ -16123,25 +16667,13 @@ Carpeta: %2 WSearchLineEdit - - Clear input - Clear the search bar input field - Borrar el texto - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input Borrar el texto @@ -16152,93 +16684,87 @@ Carpeta: %2 Buscar... - + Clear the search bar input field Limpia el campo de entrada de la barra de búsqueda - - Enter a string to search for - Introducir el texto a buscar + + Return + Volver - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operadores como bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Para más información vea el Manual de Usuario> Biblioteca Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Atajo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Poner el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retroceso + + Additional Shortcuts When Focused: + - Shortcuts - Atajos + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Volver + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Activa la búsqueda antes del tiempo de espera de "búsqueda mientras escribe" o salte a la vista de pistas después + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Espacio - + Toggle search history Shows/hides the search history entries Alternar historial de búsqueda - + Delete or Backspace Borrar o Retorno - - Delete query from history - Borrar Consulta del Historial - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Salir de la busqueda + + Delete query from history + Borrar Consulta del Historial @@ -16322,625 +16848,640 @@ Carpeta: %2 WTrackMenu - + Load to Cargar en - + Deck Plato - + Sampler Reproductor de muestras - + Add to Playlist Añadir a la lista de reproducción - + Crates Cajas - + Metadata Metadatos - + Update external collections Actualizar colecciones externas - + Cover Art Carátula - + Adjust BPM Ajustar BPM - + Select Color Seleccionar color - - + + Analyze Analizar - - + + Delete Track Files Borrar Archivos de Pistas - + 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) - + Preview Deck Reproductor de preescucha - + Remove Quitar - + Remove from Playlist Quitar de la lista de reproducción - + Remove from Crate Eliminar de la caja - + Hide from Library Ocultar de la biblioteca - + Unhide from Library Volver a mostrar en la biblioteca - + Purge from Library Eliminar de la biblioteca - + Move Track File(s) to Trash Mover archivo(s) de seguimiento a la papelera - + Delete Files from Disk Borrar Archivos del Disco - + Properties Propiedades - + Open in File Browser Abrir en el explorador de archivos - + Select in Library Selecciona en Biblioteca - + Import From File Tags Importar de los metadatos del fichero - + Import From MusicBrainz Importar de MusicBrainz - + Export To File Tags Exportar a metadatos del fichero - + BPM and Beatgrid BPM y cuadrícula de tempo - + Play Count Reproducciones - + Rating Puntuación - + Cue Point Punto CUE - - + + Hotcues Hotcues - + Intro Intro - + Outro Outro - + Key Clave - + ReplayGain Ganancia de reproducción - + Waveform Forma de onda - + Comment Comentario - + All Todos - + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Sort hotcues by position Ordenar hotcues por posición - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Desplazar la cuadrícula de tiempo medio beat - + Reanalyze Reanalizar - + Reanalyze (constant BPM) Reanalizar (BPM constante) - + Reanalyze (variable BPM) Reanalizar (BPM variable) - + Update ReplayGain from Deck Gain Actualizar ReplayGain desde la Ganancia de Plato - + Deck %1 Plato %1 - + Importing metadata of %n track(s) from file tags Importación de metadatos de %n pista a partir de las etiquetas del archivoImportación de metadatos de %n pistas a partir de las etiquetas de los archivosImportación de metadatos de %n pista(s) a partir de las etiquetas del archivo - + Marking metadata of %n track(s) to be exported into file tags Haciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivos - - + + 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 Añadir a nueva caja - + Scaling BPM of %n track(s) Escalando BPM de %n pista(s)Escalando BPM de %n pista(s)Escalando BPM de %n pista(s) - + Undo BPM/beats change of %n track(s) Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s) - + Locking BPM of %n track(s) Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s) - + Unlocking BPM of %n track(s) Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s) - + Setting rating of %n track(s) Definiendo evaluación de %n pistaDefiniendo evaluación de %n pistasDefiniendo evaluación de %n pista(s) - + Setting color of %n track(s) configuración de color de %n pista(s)configuración de color de %n pista(s)configuración de color de %n pista(s) - + Resetting play count of %n track(s) Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s) - + Resetting beats of %n track(s) Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s) - + Clearing rating of %n track(s) Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s) - + Clearing comment of %n track(s) Borrando comentarios de %n pistaBorrando comentarios de %n pistasBorrando comentarios de %n pista(s) - + Removing main cue from %n track(s) Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s) - + Removing outro cue from %n track(s) Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s) - + Removing intro cue from %n track(s) Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s) - + Removing loop cues from %n track(s) Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s) - + Removing hot cues from %n track(s) Removiendo los hot cues de %n pista(s)Removiendo los hot cues de %n pista(s)Removiendo los accesos directos de %n pista(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Ordenando hotcues de %n pista por posición (removiendo desfases)Ordenando hotcues de %n pistas por posición (removiendo desfases)Ordenando hotcues de %n pistas(s) por posición (removiendo desfases) - + Sorting hotcues of %n track(s) by position Ordenando hotcues de %n pista por posiciónOrdenando hotcues de %n pistas por posiciónOrdenando hotcues de %n pista(s) por posición - + Resetting keys of %n track(s) Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s) - + Resetting replay gain of %n track(s) Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s) - + Resetting waveform of %n track(s) Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s) - + Resetting all performance metadata of %n track(s) Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s) - + Move these files to the trash bin? ¿Mover estos archivos a la papelera? - + Permanently delete these files from disk? ¿Eliminar permanentemente estos archivos del disco? - - + + This can not be undone! ¡Esto no puede ser revertido! - + Cancel Cancelar - + Delete Files Eliminar archivos - + Okay Okey - + Move Track File(s) to Trash? ¿Mover los archivos de seguimiento a la papelera? - + Track Files Deleted Pistas eliminadas - + Track Files Moved To Trash Archivos de seguimiento movidos a la papelera - + %1 track files were moved to trash and purged from the Mixxx database. %1 archivos de pista fueron movidos a la papelera y purgados de la base de datos de Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 archivos de pistas han sido eliminados y se ha purgado de la base de datos de Mixxx. - + Track File Deleted Archivo de Pista Eliminado - + Track file was deleted from disk and purged from the Mixxx database. El archivo de pista ha sido eliminado del disco y purgado de la base de datos de Mixxx - + The following %1 file(s) could not be deleted from disk No se han podido eliminar del disco los siguientes %1 archivo(s) - + This track file could not be deleted from disk Este archivo de pista no se ha podido borrar del disco - + Remaining Track File(s) Renombrando archivo(s) de pista - + Close Cerrar - + Clear Reset metadata in right click track context menu in library Climpiar - + Loops Bucles - + Clear BPM and Beatgrid Limpia las BPM y la cuadrícula de tiempo - + Undo last BPM/beats change Revertir el último cambio de BPM/pulsaciones - + Move this track file to the trash bin? ¿Mover este archivo de pista a la papelera? - + Permanently delete this track file from disk? ¿Eliminar permanentemente este archivo de pista del disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Todos los platos donde estas pistas hayan sido cargadas se detendrán, y las pistas serán expulsadas. - + All decks where this track is loaded will be stopped and the track will be ejected. Todos los platos donde esta pista haya sido cargada se detendrán, y la pista será expulsada. - + Removing %n track file(s) from disk... Removiendo %n archivo(s) de pista del disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: si estás en la vista Ordenador o Grabación tienes que volver a hacer clic en la vista actual para ver los cambios. - + Track File Moved To Trash Archivo de seguimiento movido a la papelera - + Track file was moved to trash and purged from the Mixxx database. El archivo de seguimiento se ha movido a la papelera y se ha eliminado de la base de datos de Mixxx. - + Don't show again during this session No mostrar nuevamente durante esta sesión - + The following %1 file(s) could not be moved to trash El/los siguiente(s) %1 archivo(s) no pudieron ser movidos a la papelera - + This track file could not be moved to trash Este archivo de pista no se ha podido mover a la papelera + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Setting cover art of %n track(s)Setting cover art of %n track(s)Poniendo portadas de %n pista(s) - + Reloading cover art of %n track(s) Reloading cover art of %n track(s)Reloading cover art of %n track(s)Recarga de portadas de %n pista(s) @@ -16983,7 +17524,7 @@ Carpeta: %2 Release "CTRL" to load the current selection - Suelte "Ctrl" para cargar la selección actual + Soltar "Ctrl" para cargar la selección actual @@ -16994,37 +17535,37 @@ Carpeta: %2 WTrackTableView - + Confirm track hide Confirmar ocultar pista - + Are you sure you want to hide the selected tracks? ¿Estas seguro de que quieres ocultar las pistas seleccionadas? - + Are you sure you want to remove the selected tracks from AutoDJ queue? ¿Esta seguro de que quiere eliminar las pistas seleccionadas de la cola del AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? ¿Estás seguro de que quieres eliminar las pistas seleccionadas de esta caja? - + Are you sure you want to remove the selected tracks from this playlist? ¿Esta seguro de que desea eliminar las pistas seleccionadas de la lista de reproducción? - + Don't ask again during this session No volver a preguntar durante esta sesión - + Confirm track removal Confirmar eliminación del track @@ -17032,12 +17573,12 @@ Carpeta: %2 WTrackTableViewHeader - + Show or hide columns. Mostrar u ocultar columnas. - + Shuffle Tracks Mezclar pistas @@ -17067,7 +17608,7 @@ Carpeta: %2 decks - platos + decks @@ -17075,22 +17616,22 @@ Carpeta: %2 Biblioteca - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers Controladores - + 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. @@ -17248,6 +17789,24 @@ Pulse Aceptar para salir. La solicitud de la red no ha empezado + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17256,4 +17815,27 @@ Pulse Aceptar para salir. Ningún efecto cargado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_es_419.qm b/res/translations/mixxx_es_419.qm index 33209ba360b0..7f9bcc800e93 100644 Binary files a/res/translations/mixxx_es_419.qm and b/res/translations/mixxx_es_419.qm differ diff --git a/res/translations/mixxx_es_419.ts b/res/translations/mixxx_es_419.ts index e6dd92ce1f77..9d743630e9f7 100644 --- a/res/translations/mixxx_es_419.ts +++ b/res/translations/mixxx_es_419.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Cajas - + Enable Auto DJ Activar Auto DJ - + Disable Auto DJ Desactivar Auto DJ - + Clear Auto DJ Queue Limpiar la cola de Auto DJ - + Remove Crate as Track Source Remover Crate como Fuente de Archivos - + Auto DJ DJ Automatico - + Confirmation Clear Confirmación limpiada - + Do you really want to remove all tracks from the Auto DJ queue? Realmente quieres eliminar todas las pistas de la cola de Auto DJ? - + This can not be undone. ¡Esto no puede ser revertido! - + Add Crate as Track Source Añadir Crate como Fuente de Archivos @@ -223,7 +231,7 @@ - + Export Playlist Exportar lista de reproducción @@ -277,13 +285,13 @@ - + Playlist Creation Failed Fallo la creación de lista de Reproducción - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: @@ -298,12 +306,12 @@ ¿Desea realmente eliminar la lista de reproducción<b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca de tiempo @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -362,7 +370,7 @@ Canales - + Color Color @@ -377,7 +385,7 @@ Compositor - + Cover Art Portada @@ -387,7 +395,7 @@ Fecha de Agregado - + Last Played Última reproducción @@ -417,7 +425,7 @@ Clave - + Location Ubicación @@ -427,7 +435,7 @@ Resumen - + Preview Preescucha @@ -467,7 +475,7 @@ Año - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recuperando imagen... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No se puede usar el almacen de contraseñas seguro: el acceso al almacen ha fallado. - + Secure password retrieval unsuccessful: keychain access failed. No se ha podido obtener la contraseña: El acceso al almacen de claves a fallado. - + Settings error Error de configuración - + <b>Error with settings for '%1':</b><br> <b>Error en ajuste en '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Equipo @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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 puede cargar el siguiente archivo porque este es usado por Mixxx u otra aplicación @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx es un software de DJ de código abierto. Para más información, ver: - + Starts Mixxx in full-screen mode Iniciar Mixxx en modo pantalla completa - + Use a custom locale for loading translations. (e.g 'fr') Utiliza un locale personalizado para cargar traducciones. (ej. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directorio de nivel superior donde Mixxx debería buscar sus archivos de recursos tales como mapeos MIDI, anulando la ubicación de instalación predeterminada. - + Path the debug statistics time line is written to Ruta a donde las estadísticas de depuración de la línea de tiempo son escritas. - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Causa que Mixxx muestre/registre todos los datos del controlador que recibe y las funciones en script que cargue - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! El mapeo del controlador generará advertencias y errores más agresivos cuando detecte un mal uso de las APIs del controlador. Los nuevos mapeos de controladores deben desarrollarse con esta opción activada. - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Activa el modo Desarrollador. Incluye información adicional en el registros, estadísticas de rendimiento, y un menú de Herramientas para Desarrolladores. - + Top-level directory where Mixxx should look for settings. Default is: Directorio de nivel superior en donde Mixxx debería buscar por sus parámetros. Por defecto es : - + Starts Auto DJ when Mixxx is launched. Arranca Auto DJ cuando se inicia Mixxx - + Rescans the library when Mixxx is launched. Re escanea la librería cuando se inicia Mixxx - + Use legacy vu meter Utilizar el vúmetro antiguo - + Use legacy spinny Usar diseño de plato antiguo - - Loads experimental QML GUI instead of legacy QWidget skin - Carga la Interfaz de Usuario QML experimental, en lugar de la skin de legado QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Activa el modo seguro. Desactiva las formas de onda OpenGL y los widgets giratorios de vinilos. Pruebe esta opción si Mixxx no inicia correctamente. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utiliza colores en la salida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ debug - Arriba + Mensajes de Depuración/Desarrollador trace - Arriba + Perfilar mensajes - + 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. Establece el nivel del registro en el cual el búfer de registro es descargado el registro de mixxx. <level> es uno de los valores definidos en --nivel de bitácora de arriba. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Configura el tamaño máximo del archivo mixxx.log en bytes. Usa -1 para ilimitado. Por defecto es 100 MB, como en 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrumpe Mixxx (SIGINT), si un DEBUG_ASSERT evalúa como falso. En un depurador puedes continuar después. - + Overrides the default application GUI style. Possible values: %1 Anula el estilo por defecto de la interfaz de usuario de la aplicación. Valores posibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carga los archivos de música especificados al iniciar. Cada archivo que especifiques será cargado en el siguiente deck virtual. - + Preview rendered controller screens in the Setting windows. Previsualizar pantallas renderizadas del controlador en las ventanas de Ajustes @@ -984,2557 +997,2585 @@ trace - Arriba + Perfilar mensajes ControlPickerMenu - + Headphone Output Salida de auriculares - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Vista previa Deck %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restaurar al valor predeterminado - + Effect Rack %1 Rack de Efecto %1 - + Parameter %1 Parámetro %1 - + Mixer Mezclador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mezcla en auriculares (pre/main) - + Toggle headphone split cueing Alternar preescucha dividida de auriculares - + Headphone delay Delay en auriculares - + Transport Transporte - + Strip-search through track Navegación por toda la pista - + Play button Botón de reproducción - - + + Set to full volume Ajustar volumen al máximo - - + + Set to zero volume Ajustar volumen al mínimo - + Stop button Botón de paro - + Jump to start of track and play Saltar al inicio y reproducir - + Jump to end of track Saltar al final - + Reverse roll (Censor) button Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha de auriculares - - + + Mute button Botón para silenciar MUTE - + Toggle repeat mode Conmutar modo repetición - - + + 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 - + Toggle slip mode Conmutar el modo deslizante - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Disminuir BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Disminuir BPM en 0,1 - + BPM tap button Botón de BPM manual - + Toggle quantize mode Conmutar el modo de cuantización - + One-time beat sync (tempo only) Sincronizar por unica vez (sólo el tempo) - + One-time beat sync (phase only) Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal - + Equalizers - + 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 - + Slot %1 Ranura %1 - + Headphone Mix Mezcla de Auriculares - + Headphone Split Cue Salida partida por auriculares - + Headphone Delay Retardo de auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de Retroceso Rápido - + Fast Forward Avance Rápido - + Fast Forward button Botón de Avance Rápido - + Strip Search Navegación de pista - + Play Reverse Reproducir hacia atrás - + Play Reverse button Botón de Reproducción hacia atrás - + Reverse Roll (Censor) Reproducción hacia atrás (Censura) - + Jump To Start Saltar al Inicio - + Jumps to start of track Saltar al inicio de la pista - + Play From Start Reproducir Desde el Comienzo - + Stop Detener - + Stop And Jump To Start Detener y Saltar al Principio - + Stop playback and jump to start of track Detener reproducción y saltar al inicio de la pista - + Jump To End Saltar al final - + Volume Volumen - - - + + + Volume Fader Deslizador de Volumen - - + + Full Volume Volumen máximo - - + + Zero Volume Volumen cero - + Track Gain Ganancia de pista - + Track Gain knob Rueda de ganancia de pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escuchar por auriculares - + Headphone listen (pfl) button Botón de escucha con auriculares (pfl) - + Repeat Mode Modo de repetición - + Slip Mode Modo Slip - - + + Orientation Orientación - - + + Orient Left Orientar a la izquierda - - + + Orient Center Orientar al centro - - + + Orient Right Orientar a la derecha - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Golpeo de BPM - + Adjust Beatgrid Faster +.01 Acelerar la cuadrícula de tempo en +,01 - + Increase track's average BPM by 0.01 Incrementa el BPM promedio de la pista en 0,01 - + Adjust Beatgrid Slower -.01 Ralentizar la cuadrícula de tempo en -,01 - + Decrease track's average BPM by 0.01 Disminuye el BPM promedio de la pista en 0,01 - + Move Beatgrid Earlier Mover la cuadrícula de tempo antes en el tiempo - + Adjust the beatgrid to the left Ajusta la cuadrícula de tempo hacia la izquierda - + Move Beatgrid Later Mover la cuadrícula de tempo después en el tiempo - + Adjust the beatgrid to the right Ajusta la cuadrícula de tempo hacia la derecha - + Adjust Beatgrid Ajustar cuadrícula de tempo - + Align beatgrid to current position Alinea la cuadrícula de tempo a la posición actual - + Adjust Beatgrid - Match Alignment Ajustar la cuadrícula de tempo - Concidir alineación - + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + Quantize Mode Modo Cuantizado - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar pulsaciones al momento - + Sync Tempo One-Shot Sincronizar tempo al momento - + Sync Phase One-Shot 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 - + High EQ Ecualización de Agudos - + Mid EQ Ecualización de Medios - - + + Main Output Salida Principal - + Main Output Balance Balance Salida Principal - + Main Output Delay Retardo Salida Principal - + Main Output Gain Ganancia Salida Principal - + Low EQ 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 Súper perilla de efecto rápido del plato %1 - + + Quick Effect Super Knob (control linked effect parameters) Súper perilla de efecto rápido (parámetros de efecto asociado al control) - - + + + + Quick Effect Efecto rápido - + 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 Súper Perilla - + 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 - + Show/hide the microphone & auxiliary section Muestra/oculta la sección del micrófono y el auxiliar - + 4 Effect Units Show/Hide Mostrar/ocultar las 4 Unidades de Efectos - + Switches between showing 2 and 4 effect units Cambia entre mostrar 2 y 4 unidades de efectos - + Mixer Show/Hide Mostrar/Ocultar Mezclador - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Mostrar/Ocultar Parátulas (Biblioteca) - + Show/hide cover art in the library Mostrar/ocultar carátula en la biblioteca - + 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 - + Headphone Gain Ganancia del auricular - + Headphone gain Ganancia de auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque sincronización el tempo (y la fase con la cuantización habilitada), mantenga presionado para habilitar la sincronización permanente. - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unidad de Efectos %1 - + Button Parameter %1 Parámetro %1 del botón. - + Skin Apariencia - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientación - + Main Output gain Ganancia de la Salida principal - + Main Output balance Balance de la Salida Principal - + Main Output delay Retardo (delay) de la Salida principal - + Headphone Auriculares - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprime %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o recupera la pista, es decir, carga la última pista expulsada (de cualquier deck).<br>Pulsa dos veces para cargar la última pista sustituida. En decks vacíos carga la penúltima pista expulsada. - + BPM / Beatgrid BPM / Grilla de tiempo - + Halve BPM Reducir a la mitad los BPM - + Multiply current BPM by 0.5 Multiplica los BPM por 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplica el BPM actual por 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplica el BPM actual por 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplica el BPM actual por 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplica el BPM actual por 1.5 - + Double BPM Dobla los BPM - + Multiply current BPM by 2 Multiplica el BPM actual por 2 - + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Tempo tap button Botón del Tempo Tap - + Move Beatgrid Desplaza la grilla de tiempo - + Adjust the beatgrid to the left or right Ajusta la grilla de tiempo a la izquierda o a la derecha - + Move Beatgrid Half a Beat Desplaza la cuadricula de tiempo medio pulso - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/grilla de tiempo para la pista cargada - + Sync / Sync Lock Sincronizar / Bloqueo Sincronización - + Internal Sync Leader Sincronización Líder Interno - + Toggle Internal Sync Leader Conmutar el modo Sincronización Líder Interno - - + + Internal Leader BPM BPM Líder Interno - + Internal Leader BPM +1 BPM Líder Interno +1 - + Increase internal Leader BPM by 1 Incrementar BPM líder interno en 1 - + Internal Leader BPM -1 BPM Líder Interno -1 - + Decrease internal Leader BPM by 1 Disminuir BPM líder interno en 1 - + Internal Leader BPM +0.1 BPM Líder Interno +0.1 - + Increase internal Leader BPM by 0.1 Incrementar BPM líder interno en 0.1 - + Internal Leader BPM -0.1 BPM Líder Interno -0.1 - + Decrease internal Leader BPM by 0.1 Disminuir BPM Líder Interno en 0.1 - + Sync Leader Líder de Sicronización - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modo de Sicronización 3-State Toggle / Indicador (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Decrease Speed (Fine) Reducir velocidad (fino) - + Pitch (Musical Key) Tono (Clave Musical) - + Increase Pitch Incrementar Tono - + Increases the pitch by one semitone Incrementar el tono por un semitono - + Increase Pitch (Fine) Incrementar Tono (Fino) - + Increases the pitch by 10 cents Incrementa el tono por 10 céntimos - + Decrease Pitch Decrementar Tono - + Decreases the pitch by one semitone Decrementa el tono por un semitono - + Decrease Pitch (Fine) Decrementar Tono (Fino) - + Decreases the pitch by 10 cents Decrementa el tono por 10 céntimos - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Cambiar puntos cue antes - + Shift cue points 10 milliseconds earlier Cambiar puntos cue 10 milisegundos antes - + Shift cue points earlier (fine) Desplaza el punto cue hacia atrás (fino) - + Shift cue points 1 millisecond earlier Desplaza los puntos cue 1 milisegundo atrás - + Shift cue points later Cambiar puntos cue después - + Shift cue points 10 milliseconds later Cambiar puntos cue 10 milisegundos después - + Shift cue points later (fine) Cambiar puntos cue después (fino) - + Shift cue points 1 millisecond later Cambiar puntos cue 1 milisegundo después - - + + Sort hotcues by position Ordenar hotcues por posición - - + + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Hotcues %1-%2 Accesos Directos %1-%2 - + Intro / Outro Markers Marcadores de Entrada / Salida - + Intro Start Marker Marcador Inicial de Entrada - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + intro start marker marcador inicial de entrada - + intro end marker Marcador final de entrada - + outro start marker marcador inicial de salida - + outro end marker marcador final de salida - + Activate %1 [intro/outro marker Activa %1 - + Jump to or set the %1 [intro/outro marker Saltar a o poner el %1 - + Set %1 [intro/outro marker Poner %1 - + Set or jump to the %1 [intro/outro marker Establecer o saltar a %1 - + Clear %1 [intro/outro marker Limpiar %1 - + Clear the %1 [intro/outro marker Limpiar el %1 - + if the track has no beats the unit is seconds si la pista no tiene pulsaciones la unidad es segundos - + 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 %1 Beats set from its end point Bucle de %1 pulsaciones desde su punto final - + Loop Roll %1 Beats set from its end point Definir serie de bucles de %1 pulsaciones desde su punto final - + Create %1-beat loop with the current play position as loop end Crea un bucle de 1%-beat con la posición de reproducción actual como final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Crea un redoble de bucle temporal de %1-pulsos con la posición de reproducción actual como final del bucle - + Loop Beats Bucle de pulsos - + Loop Roll Beats Redoble de bucle de pulsos - + Go To Loop In Ir al Loop de entrada - + Go to Loop In button Ir al botón Loop de entrada - + Go To Loop Out Ir al Loop de salida - + Go to Loop Out button Ir al botón Loop de salida - + 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 pulso / 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 Salto de pulso / 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 Salto de pulso / 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 Salto de pulso - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica qué marcadores de bucle permanecen estáticos al ajustar el tamaño o es ajustado según la posición actual - + Beat Jump / Loop Move Forward Salto de pulso / Movimiento del bucle - + Beat Jump / Loop Move Backward Salto de pulso / Bucle hacia atrás - + Loop Move Forward Bucle hacia adelante - + Loop Move Backward Movimiento del Bucle Atrás - + Remove Temporary Loop Remueve el bucle temporal - + Remove the temporary loop Remueve el bucle temporal - + 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. - + Sort focused column Ordenar columna enfocada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la celda que está enfocada, equivale a hacer click en su encabezado - + 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 Cargar Pista y Reproducir - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar) - + Replace Auto DJ Queue with selected tracks Reemplaza la cola de Auto DJ con las pistas seleccionadas - + Select next search history Selecciona el siguiente historial de búsqueda - + Selects the next search history entry Selecciona la siguiente entrada del historial de búsqueda - + Select previous search history Selecciona el historial de búsqueda anterior - + Selects the previous search history entry Selecciona la entrada previa del historial de búsqueda - + Move selected search entry Mover entrada de búsqueda seleccionada - + Moves the selected search history item into given direction and steps Mueve el elemento de la búsqueda histórica seleccionado en la dirección dada y pasa - + Clear search Eliminar búsqueda - + Clears the search query Limpia la búsqueda - - + + Select Next Color Available Selecciona el próximo color disponible - + Select the next color in the color palette for the first selected track Selecciona el próximo color en la paleta de colores para la primera pista seleccionada - - + + Select Previous Color Available Selecciona el anterior color disponible - + Select the previous color in the color palette for the first selected track Selecciona el color anterior en la paleta de colores para la primera pista seleccionada - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing Activar o desactivar efectos - + Super Knob (control effects' Meta Knobs) Súper Perilla (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 Asignación de la Unidad de Efectos - + 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 Valor del Parámetro del Botón - + 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 DJ Automatico - + Auto DJ Shuffle Auto DJ Aleatorio - + Auto DJ Skip Next Quitar la siguiente en Auto DJ - + Auto DJ Add Random Track Añade una pista aleatoria al Auto DJ - + Add a random track to the Auto DJ queue Añade una pista aleatoria a la fila del Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostrar/Ocultar Micrófono y Auxiliar - + Waveform Zoom Reset To Default Reestablece el zoom de la forma de onda - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restablece el nivel de zoom de la forma de onda al valor por defecto seleccionado en Preferencias > Formas de onda - + Select the next color in the color palette for the loaded track. Selecciona el próximo color en la paleta de colores para la pista cargada. - + Select previous color in the color palette for the loaded track. Selecciona el color anterior en la paleta de colores para la pista cargada. - + Navigate Through Track Colors Navegar a través de los colores de las pistas - + Select either next or previous color in the palette for the loaded track. Selecciona cualquiera de los colores siguientes o anteriores en la paleta de colores para la pista cargada. - + Start/Stop Live Broadcasting Inicia/Detiene Transmisión En Vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Inicia/Detiene la grabación de tu mezcla. - - + + + Deck %1 Stems + + + + + Samplers Muestreadores / 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) Mostrar/ocultar carátulas (en Decks) - + Show/hide cover art in the main decks Mostrar/ocultar carátulas en los platos principales. - + 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) Mostrar/ocultar los vinilos giratorios (todos los platos) - + Show/Hide all spinnies Mostrar/ocultar todos los giradores - + Toggle Waveforms Alternar formas de onda - + Show/hide the scrolling waveforms. Mostrar/ocultar las formas de onda deslizantes - + 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 Agregar una estrella - + Increase the track rating by one star Incrementa la puntuación de la pista en una estrella - + Star Rating Down Quitar una estrella - + Decrease the track rating by one star Reduce la puntuación de la pista en una estrella @@ -3547,6 +3588,159 @@ trace - Arriba + Perfilar mensajes Desconocido + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + You can ignore this error for this session but you may experience erratic behavior. Puedes ignorar este error durante esta sesión, pero podrías experimentar problemas impredecibles. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Error del mapa de controlador - + The mapping for your controller "%1" is not working properly. El mapa de tu controlador "%1" no funciona correctamente. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3682,27 +3876,27 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema del archivo del mapa de controlador - + The mapping for controller "%1" cannot be opened. El mapa del controlador "%1" no puede ser abierto. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + File: Archivo: - + Error: Error: @@ -3735,7 +3929,7 @@ trace - Arriba + Perfilar mensajes - + Lock Bloquear @@ -3765,7 +3959,7 @@ trace - Arriba + Perfilar mensajes Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: @@ -3782,22 +3976,22 @@ trace - Arriba + Perfilar mensajes 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 @@ -3807,28 +4001,28 @@ trace - Arriba + Perfilar mensajes Haz una caja para tu próximo concierto, para tus temas electrohouse favoritos o para tus temas más solicitados. - + Confirm Deletion Confirmar Borrado - - - + + + 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) - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) @@ -3849,17 +4043,17 @@ trace - Arriba + Perfilar mensajes Los cajones permiten organizar tu música como tu quieras! - + Do you really want to delete crate <b>%1</b>? ¿Quieres eliminar la caja <b>%1</b>? - + 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. @@ -3954,12 +4148,12 @@ trace - Arriba + Perfilar mensajes Antiguos colaboradores - + Official Website Sitio web oficial - + Donate Donar @@ -4788,123 +4982,140 @@ Esto podría deberse a que estás usando una skin antigua y este control ya no e DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acción fallida - + You can't create more than %1 source connections. No se pueden crear más de %1 fuentes de emisión en vivo. - + Source connection %1 Fuente de emisión %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Se requiere almenos una fuente de emisión. - + Are you sure you want to disconnect every active source connection? ¿Seguro que deseas desconectar todas las fuentes de emisión activas? - - + + Confirmation required Se necesita confirmación - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' tiene el mismo punto de montaje Icecast que '%2'. No se puede establecer dos conexiones simultáneas al mismo servidor, con el mismo punto de montaje. - + Are you sure you want to delete '%1'? ¿Deseas realmente borrar '%1'? - + Renaming '%1' Renombrando '%1' - + New name for '%1': Nuevo nombre para '%1': - + Can't rename '%1' to '%2': name already in use No se puede renombrar '%1' a '%2': el nombre está en uso @@ -4917,27 +5128,27 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Preferencias de Transmision en Vivo - + Mixxx Icecast Testing Prueba de «Icecast» de Mixxx - + Public stream Transmisión pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nombre de la emisión - + 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. Debido a errores en algunos clientes de transmisión, actualizar dinámicamente los metadatos Ogg Vorbis puede causar interferencias y desconexiones a los oyentes. Marque esta casilla para actualizar los metadatos de todos modos. @@ -4977,67 +5188,72 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Opciones para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinámicamente los metadatos Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Sitio web - + Live mix Mezcla en vivo - + IRC IRC - + Select a source connection above to edit its settings here Selecciona en la lista la fuente de emisión que desees editar - + Password storage Guardado de contraseñas - + Plain text Texto simple - + Secure storage (OS keychain) Almacen seguro (almacen de llaves del SO) - + Genre Genero - + Use UTF-8 encoding for metadata. Usar codificación UTF-8 para los metadatos. - + Description Descripción @@ -5063,42 +5279,42 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Canales - + Server connection Conexión al servidor - + Type Tipo - + Host Servidor - + Login Identificación - + Mount Montar - + Port Puerto - + Password Contraseña - + Stream info Información de la emisión @@ -5108,17 +5324,17 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Metadatos - + Use static artist and title. Usar texto de artista y título fijos - + Static title Titulo fijo - + Static artist Artista fijo @@ -5177,13 +5393,14 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis DlgPrefColors - - + + + By hotcue number Por número de hotcue - + Color Color @@ -5228,17 +5445,22 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Cuando se han habilitado los colores de nota, Mixxx mostrará una pista de color asociada con cada nota. - + Enable Key Colors Activar colores de nota - + Key palette Paleta de notas @@ -5246,114 +5468,114 @@ associated with each key. DlgPrefController - + Apply device settings? ¿Aplicar la configuración del dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? La configuración debe ser aplicada antes de iniciar el asistente de aprendizaje. ¿Aplicar la configuración y continuar? - + None Ningún - + %1 by %2 %1 por %2 - + Mapping has been edited Se ha editado el mapeo - + Always overwrite during this session Siempre sobreescribir durante esta sesión - + Save As Guardar como - + Overwrite Sobreescribir - + Save user mapping Guardar mapeo del usuario - + Enter the name for saving the mapping to the user folder. Ingresar el nombre del archivo de mapeo para guardarlo en la carpeta de usuario. - + Saving mapping failed Ha fallado el guardado del mapeo - + A mapping cannot have a blank name and may not contain special characters. El nombre del mapeo no puede estar en blanco, ni contener caracteres especiales. - + A mapping file with that name already exists. Ya existe un archivo de mapeo con el mismo nombre. - + Do you want to save the changes? Quieres guardar los cambios? - + Troubleshooting Solución de problemas - + <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>Si usas este mapeo, tu controlador podría no funcionar correctamente. Por favor selecciona otro mapeo o deshabilita el controlador. </b></font><br><br>Este mapeo fue diseñado para un nuevo Motor de Controladores de Mixxx, y no puede ser usado con tu instalación actual.<br>Tu instalación de Mixxx posee la version del Motor de Controladores %1. Este mapeo requiere una versión del Motor de controladores >=%2.<br><br>Para más información visita la wiki de <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versiones del Motor de Controladores</a>. - + Mapping already exists. El mapeo ya existe. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ya existe en la carpeta de mapeos de usuario. <br>¿Deseas sobreescribir o guardar con otro nombre? - + Clear Input Mappings Limpiar mapeos de Entrada - + Are you sure you want to clear all input mappings? Está seguro de querer eliminar todos los mapeos de entrada? - + Clear Output Mappings Limpiar mapeos de Salida - + Are you sure you want to clear all output mappings? Está seguro de querer eliminar todos los mapeos de salida? @@ -5371,100 +5593,105 @@ Apply settings and continue? Habilitado - + + Refresh mapping list + + + + Device Info Información del dispositivo - + Physical Interface: Interfase física: - + Vendor name: Nombre del fabricante: - + Product name: Nombre del producto: - + Vendor ID ID del proveedor - + VID: VID: - + Product ID ID del producto - + PID: PID: - + Serial number: Número de serie: - + USB interface number: Número de interfaz USB - + HID Usage-Page: Página de uso HID - + HID Usage: Uso de HID: - + Description: Descripción: - + Support: Soporte: - + Screens preview Previsualizar pantallas - + Input Mappings Mapeos de Entrada - - + + Search Buscar - - + + Add Añadir - - + + Remove Quitar @@ -5484,17 +5711,17 @@ Apply settings and continue? Cargar Mapeo: - + Mapping Info Información de mapeo - + Author: Autor: - + Name: Nombre: @@ -5504,28 +5731,28 @@ Apply settings and continue? Asistente de aprendizaje (sólo MIDI) - + Data protocol: Protocolo de datos: - + Mapping Files: Archivos de mapeo - + Mapping Settings Configuración de mapeo - - + + Clear All Limpiar todo - + Output Mappings Mapeos de Salida @@ -5540,21 +5767,21 @@ 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 utiliza "mapeos" para conectar mensajes desde tu controlador a los controles en Mixxx. Si no ves un mapeo de tu controlador en el menu "Cargar Mapeo" cuando hagas click en tu controlador en la barra deslizable izquierda, pudieras descargar uno en línea desde %1. Coloca los archivos XML (.xml) y Javascript (.js) en la "Carpeta de Mapeo del Usuario" luego reinicia Mixxx. Si descargaste un mapeo en un archivo ZIP, extrae los archivos XML y Javascript del archivo ZIP a tu "Carpeta de Mapeo del Usuario" y luego reinicia 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guía de Hardware de DJ de Mixxx - + MIDI Mapping File Format Formato de archivo de mapeos MIDI - + MIDI Scripting with Javascript Programación de Scripts MIDI con Javascript @@ -5684,6 +5911,16 @@ Apply settings and continue? Multi-Sampling Multi-Muestreo + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5713,137 +5950,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sin parpadeo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (grueso) - + s%1zz - Seconds s%1zz - Segundos - + sss%1zz - Seconds (Long) sss%1zz - Segundos (Duración) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosegundos - + Intro start Inicio de la entrada - + Main cue Marcador principal - + First hotcue Primera hotcue - + First sound (skip silence) Primer sonido (saltar silencio) - + Beginning of track Principio de la pista - + Reject Rechazar - + Allow, but stop deck Permitir, pero detener deck - + Allow, play from load point Permitir, reproducir desde el punto de carga - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6298,62 +6535,62 @@ Siempre puedes arrastrar y tirar pistas en la pantalla para clonar una plataform 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 - + Disabled Desactivado - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx debe ser reiniciado para que el nuevo ajuste de locale, escalado o multi-muestreo tenga efecto. @@ -6390,7 +6627,7 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Analyzer Settings - + Configuración del Analizador @@ -6581,67 +6818,97 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Ver el manual para más detalles - + 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? 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 - + Item is not a directory or directory is missing El ítem no es un directorio, o el directorio no ha sido encontrado - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6690,262 +6957,267 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Re-escanear directorios al inicio - + Audio File Formats Formatos de archivo de sonido - + Track Table View Vista Tabla de Pistas - + Track Double-Click Action: Acción doble-click de Pista: - + BPM display precision: Precisión al mostrar los BPM: - + Session History Historia de la sesión - + Track duplicate distance Duplicar Distancia de Pista - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Cuando reproduces una pista de nuevo, anéxala al historial de la sesión sólo si más de N otras pistas han sido reproducidas mientras tanto. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Historial de lista de reproducciones con menos de N pistas serán borradas<br/><br/>Nota: la limpieza será realizada durante el inicio y el cierre de Mixxx. - + Delete history playlist with less than N tracks Borrar historial de listado de pistas con menos de N pistas - + Library Font: Fuente para Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks Oscurecer pistas ya tocadas - + Track Search Buscar una pista - + Enable search completions Permitir completar búsquedas - + Enable search history keyboard shortcuts Activar los atajos de teclado del historial de búsqueda - + Percentage of pitch slider range for 'fuzzy' BPM search: Porcentaje del rango del deslizador de pitch para búsqueda de BPM "difuso-variable". - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Este rango será utilizado para buscar BPM "difuso-variable" (~bpm:) en la caja de búsqueda, además de la búsqueda de BPM en el menú contextual Pista > Buscar pistas relacionadas - + Preferred Cover Art Fetcher Resolution Resolución preferida del buscador de carátulas - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Obtén carátulas de coverartarchive.com mediante Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" puede referirse a carátulas muy grandes. - + >1200 px (if available) >1200 px (si está disponible) - + 1200 px (if available) 1200 px (si está disponible) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Directorio de configuración - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. El directorio de configuración de Mixxx contiene la base de datos de la biblioteca, varios archivos de configuración, archivos de bitácoras, datos de análisis de pistas, así como mapeos de controladores personalizados. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Edita estos archivos solo si sabes lo que estás haciendo, y solo cuando Mixxx no esté siendo ejecutado. - + Open Mixxx Settings Folder Abrir carpeta de ajustes de Mixxx - + Library Row Height: Alto de la Fila en Biblioteca: - + Use relative paths for playlist export if possible Usar rutas relativas al exportar lista de reproducción cuando sea posible - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincroniza los metadatos de la librería de pistas desde/hacia las etiquetas de archivos - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automáticamente escribe metadatos de las pistas modificadas desde la biblioteca a las etiquetas del archivo y reimporta metadatos desde las etiquetas actualizadas del archivo a la biblioteca - + Synchronize Serato track metadata from/to file tags (experimental) Sincroniza metadatos de la pista de Serato desde/hacia las etiquetas de archivo (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene el color de la pista, la cuadrícula del ritmo, bloqueo de bpm, puntos de marcado, y bucles sincronizados con las etiquetas de archivo SERATO_MARKERS/MARKERS2.<br/><br/>ADVERTENCIA: Habilitando esta opción también habilita la reimportación de metadatos de Serato después de que los archivos han sido modificados afuera de Mixxx. Al reimportar metadatos existentes en Mixxx se reemplaza con los metadatos encontrados en las etiquetas de archivos. Los Metadatos personalizados no incluidos en las etiquetas de archivos como los colores de los bucles se perderán. - + Edit metadata after clicking selected track Editar metadatos al clicar en una pista seleccionada - + Search-as-you-type timeout: Tiempo de espera de búsqueda mientras escribe: - + ms ms - + Load track to next available deck Carga la pista en el siguiente plato disponible - + External Libraries Bibliotecas externas - + You will need to restart Mixxx for these settings to take effect. Usted tendrá que reiniciar Mixxx para que esta configuración surta efecto. - + Show Rhythmbox Library Mostrar la librería de Rhythmbox - + Track Metadata Synchronization / Playlists Metadatos de sincronización de pistas / Listas de reproducción - + Add track to Auto DJ queue (bottom) Añadir pista al final de la cola de Auto DJ - + Add track to Auto DJ queue (top) Añadir pista a la cola de Auto DJ (al comienzo) - + Ignore Ignorar - + Show Banshee Library Mostrar la bibiloteca de Banshee - + Show iTunes Library Mostrar la librería de ITunes - + Show Traktor Library Mostrar la librería de Traktor - + Show Rekordbox Library Mostrar la Librería de Rekordbox - + Show Serato Library Mostrar la Librería de Serato - + All external libraries shown are write protected. Todas las bibliotecas mostradas estan protegidas frente a escritura. @@ -7290,33 +7562,33 @@ y te permite ajustar su pitch para lograr mezclas armónicas. DlgPrefRecord - + Choose recordings directory Elegir la carpeta para las grabaciones - - + + Recordings directory invalid Directorio de grabaciones inválido - + Recordings directory must be set to an existing directory. El directorio de Grabaciones debe configurarse a un directorio existente. - + Recordings directory must be set to a directory. El directorio de Grabaciones debe configurarse a un directorio. - + Recordings directory not writable Directorio de Grabaciones no escribible - + You do not have write access to %1. Choose a recordings directory you have write access to. No tienes acceso de escritura en %1. Escoge un directorio de grabación en el que tengas acceso de escritura. @@ -7334,43 +7606,55 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Examinar… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidad - + Tags Etiquetas - + Title Título - + Author Autor - + Album Album - + Output File Format Formato de fichero de salida - + Compression Compresión - + Lossy Con pérdidas @@ -7385,12 +7669,12 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Directorio: - + Compression Level Nivel de compresión - + Lossless Sin pérdidas @@ -7523,172 +7807,177 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Por Defecto (mas retardo) - + Experimental (no delay) Experimental (sin retardo) - + Disabled (short delay) Desactivado (poco retardo) - + Soundcard Clock Reloj de la tarjeta de sonido - + Network Clock Reloj de red - + Direct monitor (recording and broadcasting only) Monitorización directa (solo grabación y emisión en vivo) - + Disabled Desactivado - + Enabled Habilitado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Para activar el Planificador en tiempo real (actualmente desactivado), mira %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 muestra una lista de tarjetas de sonido y controladores que podrías considerar para utilizar con Mixxx - + Mixxx DJ Hardware Guide Guía de Hardware DJ de Mixxx - + + Find details in the Mixxx user manual + + + + Information Información - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx debe ser reiniciado para que el cambio de ajuste de RubberBand multi-hilo tenga efecto. - + auto (<= 1024 frames/period) auto (<= 1024 fotogramas/período) - + 2048 frames/period 2048 fotogramas/período - + 4096 frames/period 4096 fotogramas/período - + Are you sure? ¿Estás seguro(a)? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Distribuir los canales estéreo en canales mono para su procesamiento en paralelo podría resultar en la pérdida de la compatibilidad mono y una imagen estéreo difusa. No se recomienda al transmitir en vivo o al grabar. - + Are you sure you wish to proceed? ¿Realmente deseas continuar? - + No No - + Yes, I know what I am doing Sí, se lo que estoy haciendo - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. La entrada de micrófono está desincronizada respecto la grabación y emisión comparado con la señal que se oye. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mide la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Refer to the Mixxx User Manual for details. Para más detalles, lea el manual de usuario de Mixxx. - + Configured latency has changed. La latencia configurada ha cambiado. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Vuelve a medir la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Realtime scheduling is enabled. La planificación en Tiempo Real está activada. - + Main output only Solo Salida principal - + Main and booth outputs Salidas principal y de cabina - + %1 ms %1 ms - + Configuration error Error de configuración @@ -7755,17 +8044,22 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de vaciado del búfer - + 0 0 @@ -7790,12 +8084,12 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Entrada - + System Reported Latency Latencia reportada por el sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente su búfer de audio si el contador de desbordamiento está aumentando o escuchas chasquidos durante la reproducción. @@ -7825,7 +8119,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Diagnóstico y sugerencias - + Downsize your audio buffer to improve Mixxx's responsiveness. Disminuya su búfer de audio para mejorar la velocidad de respuesta de Mixxx. @@ -7872,7 +8166,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Configuración de Vinilo - + Show Signal Quality in Skin Mostrar Calidad de Señal en la apariencia @@ -7908,46 +8202,51 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y + Pitch estimator + + + + Deck 1 Plato 1 - + Deck 2 Plato 2 - + Deck 3 Plato 3 - + Deck 4 Plato 4 - + Signal Quality Calidad de Señal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Con tecnología de xwax - + Hints Sugerencias - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione los dispositivos de sonico para el Control por Vinilo en el Panel de Hardware de Sonido. @@ -7955,58 +8254,58 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + Top Arriba - + Center Centrado - + Bottom Abajo - + 1/3 of waveform viewer options for "Text height limit" 1/3 de visualización de forma de onda - + Entire waveform viewer Visor de forma de onda completa - + 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. @@ -8024,22 +8323,17 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Tasa de fotograma - + OpenGL Status Estado de OpenGL - + Displays which OpenGL version is supported by the current platform. Muestra qué versión de OpenGL es soportada por la plataforma actual. - - Normalize waveform overview - Normalizar vista de forma de onda - - - + Average frame rate Refresco de pantalla promedio @@ -8055,7 +8349,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Nivel de zoom por defecto - + Displays the actual frame rate. Muestra la tasa de refresco actual. @@ -8090,7 +8384,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Graves - + Show minute markers on waveform overview Mostrar marcadores de minutos en la vista de forma de onda @@ -8135,7 +8429,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Ganancia visual global - + 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. La vista general de forma de onda muestra la forma de onda de la pista entera. @@ -8204,22 +8498,22 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se pt - + Caching Almacenamiento en caché - + 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 almacena en caché las formas de onda de las pistas en el disco la primera vez que se carga una pista. Esto reduce el uso de la CPU cuando se está jugando en vivo, pero requiere espacio en disco adicional. - + Enable waveform caching Habilitar el almacenamiento en caché de forma de onda - + Generate waveforms when analyzing library Generar formas de onda cuando se analiza la biblioteca @@ -8235,7 +8529,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se - + Type Tipo @@ -8265,12 +8559,58 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Mover the marcador de posición en la pista a la izquierda, derecha o centro (Defabrica). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Visualizar formas de onda - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Las formas de onda claras en caché @@ -8762,7 +9102,7 @@ Carpeta: %2 BPM: - + Location: Ubicación: @@ -8777,27 +9117,27 @@ Carpeta: %2 Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Ajusta el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ajusta el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostrar los BPMs de la pista seleccionada. @@ -8852,49 +9192,49 @@ Carpeta: %2 Genero - + ReplayGain: Ganancia de repetición: - + Sets the BPM to 200% of the current value. Ajusta el BPM al 200% del valor actual. - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + Clear BPM and Beatgrid Borrar el BPM y la cuadrícula de tempo - + Move to the previous item. "Previous" button Mover al elemento anterior. - + &Previous &Previo - + Move to the next item. "Next" button Mover al siguiente elemento. - + &Next &Siguiente @@ -8919,12 +9259,12 @@ Carpeta: %2 Color - + Date added: Fecha de adición: - + Open in File Browser Abrir en el explorador de archivos @@ -8934,12 +9274,17 @@ Carpeta: %2 Tasa de muestreo: - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8948,90 +9293,90 @@ Usa esta configuración si tus pistas tienen un tempo constante (p. ej., la mayo Generalmente produce cuadrículas de mayor calidad, pero no funciona bien en pistas con cambios de tempo. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Ajusta el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Incrementa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Incrementa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee siguiendo el ritmo para establecer el BPM. - + Tap to Beat Pulse siguiendo el ritmo - + Hint: Use the Library Analyze view to run BPM detection. Truco: Use la vista de análisis en la biblioteca para ejecutar la detección de BPM. - + Save changes and close the window. "OK" button Guardar cambios y cerrar la ventana. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar cambios y cerrar. - + Save changes and keep the window open. "Apply" button Guardar cambios y mantener abierta la ventana. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) (sin color) @@ -9188,7 +9533,7 @@ Generalmente produce cuadrículas de mayor calidad, pero no funciona bien en pis &OK - + (no color) (sin color) @@ -9390,27 +9735,27 @@ Generalmente produce cuadrículas de mayor calidad, pero no funciona bien en pis EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Rubberband R3 (near-hi-fi quality) Banda elástica R3 (calidad casi alta fidelidad) - + Unknown, using Rubberband (better) Desconocido, utilizando Banda elástica (mejor) - + Unknown, using Soundtouch Desconocido, usando Soundtouch @@ -9625,15 +9970,15 @@ Generalmente produce cuadrículas de mayor calidad, pero no funciona bien en pis 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 @@ -9645,57 +9990,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9703,37 +10048,37 @@ de OpenGL. Library - + This or a parent directory is already in your library. Este directorio o su superior ya se encuentra en tu biblioteca. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Este directorio o el indicado no existe o es inaccesible. Cancelando la operación para evitar inconsistencias de biblioteca. - - + + This directory can not be read. Este directorio no puede ser leído. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ha ocurrido un error desconocido. Cancelando la operación para evitar inconsistencias de biblioteca - + Can't add Directory to Library No se pudo agregar el directorio a la biblioteca - + Could not add <b>%1</b> to your library. %2 @@ -9742,27 +10087,27 @@ Cancelando la operación para evitar inconsistencias de biblioteca %2 - + Can't remove Directory from Library No se pudo remover el directorio de la biblioteca. - + An unknown error occurred. Ha ocurrido un error desconocido. - + This directory does not exist or is inaccessible. Este directorio no existe o es inaccesible. - + Relink Directory Reenlazar directorio - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9774,22 +10119,22 @@ Cancelando la operación para evitar inconsistencias de biblioteca 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. @@ -9927,12 +10272,12 @@ Do you really want to overwrite it? Pistas Ocultas - + Export to Engine DJ Exportar a Engine DJ - + Tracks Pistas @@ -9940,37 +10285,37 @@ 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 @@ -9980,213 +10325,213 @@ Do you really want to overwrite it? apariencia - + Allow Mixxx to hide the menu bar? ¿Permitir a Mixxx ocultar la barra de menú? - + Hide Always show the menu bar? Ocultar - + Always show Mostrar siempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra de menú de Mixxx ha sido ocultada y se puede alternar presionando la tecla <b>Alt</b>. <br><br>Haz clic en <b>%1</b> para aceptar. <br><br>Haz clic en <b>%2</b> para desactivarlo, por ejemplo si usas Mixxx sin un teclado. <br><br>Puedes cambiar este ajuste en cualquier momento en Preferencias -> Interfaz. <br> - + Ask me again Pregúntame de nuevo - - + + 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? No se ha seleccionado un dispositivo de Entrada para este micrófono. ¿Deseas escoger uno ahora? - + There is no input device selected for this auxiliary. Do you want to select an input device? No se ha seleccionado un dispositivo de entrada para este Auxiliar. ¿Deseas escoger uno ahora? - + Scan took %1 El escaneo tomo %1 - + No changes detected. No se han detectado cambios - + %1 tracks in total %1 pistas en total - + %1 new tracks found Encontradas %1 pistas nuevas - + %1 moved tracks detected %1 pistas movidas detectadas - + %1 tracks are missing (%2 total) %1 pistas perdidas (%2 en total) - + %1 tracks have been rediscovered %1 pistas han sido reencontradas - + Library scan finished Escaneo de la biblioteca terminado - + 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 Renderizado directo 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. 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><b>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? @@ -10202,13 +10547,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reproducción @@ -10218,58 +10563,63 @@ Do you want to select an input device? Aleatorizar lista de reproducción - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Las listas de reproducción son listar ordenadas de pistas que te permiten planificar tus sesiones de DJ. - + 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. Podría ser necesario saltar algunas pistas en tu lista de reproducción planificada, o añadir algunas pistas diferentes, con el fin de mantener la energía de tu audiencia. - + 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 @@ -10368,59 +10718,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 @@ -10534,69 +10884,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabina - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier Bus izquierdo - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus derecho - + Invalid Bus + Audio path indetifier Bus inválido - + Deck + Audio path indetifier Plato - + Record/Broadcast + Audio path indetifier Grabación / Emisión en vivo - + Vinyl Control + Audio path indetifier Control de vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de ruta %1 desconocida @@ -10939,47 +11302,49 @@ Si la amplitud es cero, este parámetro permite mover la posición manualmente p Ancho - + Metronome Metrónomo - + + The Mixxx Team Equipo de Mixxx - + Adds a metronome click sound to the stream Añade el sonido de tic tac de un metrónomo a la señal de salida - + BPM BPM - + Set the beats per minute value of the click sound Define las pulsaciones por minuto del tic tac - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved Sincroniza el BPM con el de la pista, si se puede obtener - + + Gain Ganancia - + Set the gain of metronome click sound Configura la ganancia del sonido del metrónomo @@ -11783,14 +12148,14 @@ Todo a la derecha: final del período La grabación OGG no está soportada. La librería OGG/Vorbis podría no inicializarse. - - + + encoder failure falla del codificador - - + + Failed to apply the selected settings. Fallo al aplicar los ajustes seleccionados. @@ -11930,7 +12295,7 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"La cantidad de amplificación aplicada a la señal de audio. A niveles más altos, el audio estará más distorsionado. - + Passthrough Paso @@ -11977,36 +12342,107 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"Ganancia compensatoria automática - - Makeup - Compensación / Makeup + + Makeup + Compensación / Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + El botón Auto Makeup activa la ganancia compensatoria automática +para mantener la señal entrante y saliente tan sonoras como sea posible. + + + + Off + Apagado + + + + On + Encendido + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Límite (Threshold, dBFS) + + + + + Threshold + Límite + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - El botón Auto Makeup activa la ganancia compensatoria automática -para mantener la señal entrante y saliente tan sonoras como sea posible. + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Apagado + + Knee (dB) + - - On - Encendido + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Límite (Threshold, dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Límite + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12038,6 +12474,7 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e Knee (dBFS) + Knee Knee @@ -12048,11 +12485,13 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e La perilla de Knee es utilizada para lograr una curva de compresión redondeada. + Attack (ms) Ataque (ms) + Attack Ataque @@ -12065,11 +12504,13 @@ will set in once the signal exceeds the threshold la compresión una vez que la señal supere el Límite. + Release (ms) Liberación (Release, ms) + Release Release @@ -12100,12 +12541,12 @@ pueden introducir un efecto de "bombeo" y/o distorsión. varios - + built-in nativo - + missing no encontrado @@ -12140,42 +12581,42 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Stem #%1 - + Empty Vacío - + Simple Simple - + Filtered Filtrado - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Agrupado - + Unknown Desconocido @@ -12436,193 +12877,193 @@ pueden introducir un efecto de "bombeo" y/o distorsión. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontró un problema - + Could not allocate shout_t No se pudo asignar shout_t - + Could not allocate shout_metadata_t No se pudo asignar shout_metadata_t - + Error setting non-blocking mode: Error al establecer el modo "sin bloqueo": - + Error setting tls mode: Error de configuracion del "Modo TLS" - + Error setting hostname! ¡Error al establecer el nombre de host! - + Error setting port! ¡Error al establecer el puerto! - + Error setting password! ¡Error al establecer la contraseña! - + Error setting mount! ¡Error al establecer el punto de montaje! - + Error setting username! ¡Error al establecer el nombre de usuario! - + Error setting stream name! ¡Error al establecer el nombre de la emisión! - + Error setting stream description! ¡Error al establecer la descripción de la emisión! - + Error setting stream genre! ¡Error al establecer el género de la emisión! - + Error setting stream url! ¡Error al establecer la URL de la emisión! - + Error setting stream IRC! ¡Error al configurar el flujo IRC! - + Error setting stream AIM! ¡Error al configurar el flujo AIM! - + Error setting stream ICQ! ¡Error al configurar el flujo ICQ! - + Error setting stream public! Error al iniciar la emisión pública! - + Unknown stream encoding format! ¡Formato de codificación de transmisión desconocido! - + Use a libshout version with %1 enabled Usar una versión de libshout con %1 activado - + Error setting stream encoding format! Error ajuste formato de codificación en emisión! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Transmitir a 96 kHz con Ogg Vorbis no está soportado actualmente. Por favor intente una frecuencia de muestreo diferente o cambie a una codificación diferente. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Consulta https://github.com/mixxxdj/mixxx/issues/5701 para más información. - + Unsupported sample rate Tasa de muestreo no soportada - + Error setting bitrate Error al establecer la tasa de bits - + Error: unknown server protocol! ¡Error: protocolo del servidor desconocido! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast solo soporta codificadores MP3 y AAC - + Error setting protocol! ¡Error al establecer el protocolo! - + Network cache overflow Caché de red excedido - + Connection error Error de connexión - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de las fuentes de emisión en vivo ha lanzado este error:<br><b>Error con la fuente '%1':</b><br> - + Connection message Mensaje de conexión - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensaje de la fuente de emisión en vivo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Se ha perdido la conexión al servidor de emisión y han fallado %1 intentos de reconexión. - + Lost connection to streaming server. Se ha perdido la conexión al servidor de emisión - + Please check your connection to the Internet. Comprueba tu conexión a internet. - + Can't connect to streaming server No se puede conectar al servidor de emisión - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12630,7 +13071,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoftwareWaveformWidget - + Filtered Filtrada @@ -12638,23 +13079,23 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoundManager - - + + a device un dispositivo - + An unknown error occurred Ocurrió un error desconocido - + Two outputs cannot share channels on "%1" Dos salidas no pueden usar los mismos canales de %1 - + Error opening "%1" Error al abrir "%1" @@ -12839,7 +13280,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Spinning Vinyl Vinilo virtual @@ -13021,7 +13462,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Cover Art Portada @@ -13211,243 +13652,243 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la ganancia del filtro de graves en cero, mientras está activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Muestra el tempo de la pista cargada, en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Clave - + BPM Tap Golpeo de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el BPM para que coincida con las pulsaciones realizadas. - + Adjust BPM Down Reduce el BPM - + When tapped, adjusts the average BPM down by a small amount. Cuando se pulsa, reduce el BPM promedio un poco. - + Adjust BPM Up Aumenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Cuando se pulsa, aumenta el BPM promedio un poco. - + Adjust Beats Earlier Mueve la cuadrícula un poco antes - + When tapped, moves the beatgrid left by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la izquierda. - + Adjust Beats Later Mueve la cuadrícula un poco después - + When tapped, moves the beatgrid right by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la derecha. - + Tempo and BPM Tap Golpeo de Tempo y BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar la sección de vinilo giratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. Alternar el bloqueo tonal durante la reproducción puede producir una pequeña distorsión de audio. - + Toggle visibility of Loop Controls Cambia la visibilidad de los Controles de Bucles - + Toggle visibility of Beatjump Controls Cambia la visibilidad de los Controles de Salto de Ritmo - + Toggle visibility of Rate Control Alternar visibilidad del control de velocidad - + Toggle visibility of Key Controls Cambia la visibilidad de los Controles de Clave - + (while previewing) (mientras se previsualiza) - + Places a cue point at the current position on the waveform. Coloca un punto de Cue en la posición actual de la forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Detiene la pista en el punto cue, O BIEN va al punto cue y reproduce en soltar (modo CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Establece el punto Cue (Modo Pioneer/Mixxx/Numark), establece el punto Cue y reproduce en soltar (modo CUP) O BIEN hace una preescuha del mismo (Modo Denon). - + Is latching the playing state. Está reteniendo el estado de reproducción. - + Seeks the track to the cue point and stops. Lleva la pista al punto de Cue y para. - + Play Reproducir - + Plays track from the cue point. Reproduce la pista desde el punto Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envía el audio del canal seleccionado a la salida de auriculares, seleccionada en Preferencias -> Hardware de Sonido - + (This skin should be updated to use Sync Lock!) (Esta carátula debería actualizarse para utilizar Bloqueo de Sincronización!) - + Enable Sync Lock Habilitar Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. Pulse para sincronizar el tiempo con otras pistas en reproducción o líder de sincronización. - + Enable Sync Leader Habilitar Sync Lock - + When enabled, this device will serve as the sync leader for all other decks. Cuando está habilitado, este dispositivo servirá como líder de sicronización para todas las otros platos. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Es relevante cuando una pista con tempo dinámico es cargada a un deck líder de sincronización. En ese caso, otros dispositivos sincronizados adoptarán el tempo cambiante. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Cambia la velocidad de reproducción de la pista (afecta tanto el tempo como el tono). Si está habilitado el bloqueo, únicamente afecta al tempo. - + Tempo Range Display Visualizador del rango de tempo - + Displays the current range of the tempo slider. Muestra el rango actual del deslizador de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Se recupera la pista expulsada cuando no hay ninguna pista cargada, es decir, vuelve a cargar la pista que se expulsó en último lugar (de cualquier deck). - + Delete selected hotcue. Elimina la hotcue seleccionada. - + Track Comment Comentario de la pista - + Displays the comment tag of the loaded track. Muestra la etiqueta de comentario de la pista cargada. - + Opens separate artwork viewer. Abre el visualizador separado de carátulas. - + Effect Chain Preset Settings Configuraciones de Preconfiguración de Cadena de Efectos - + Show the effect chain settings menu for this unit. Muestra el menú de las configuraciones de las cadenas de efectos para esta unidad. - + Select and configure a hardware device for this input Selecciona y configura un dispositivo de hardware para esta entrada - + Recording Duration Duración de la grabación @@ -13670,948 +14111,984 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la velocidad de reproducción baja (pequeña cantidad) cuando se activa. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el tempo para coincidir con la frecuencia de pulsaciones. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Rate Tap and BPM Tap Frecuencia de pulsaciones y de BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/cuadrícula de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/Cuadrícula de tiempo para la pista cargada. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/cuadrícula de tiempo - + Tempo and Rate Tap Toques de Tempo y Frecuencia - + Tempo, Rate Tap and BPM Tap Toques de Tempo, Frecuencia y BPM - + Shift cues earlier Cambia marcas antes - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Cambia marcas importadas desde Serato o Rekordbox si están ligeramente desfazadas. - + Left click: shift 10 milliseconds earlier Clic izquierdo: adelantar 10 milisegundos - + Right click: shift 1 millisecond earlier Clic derecho: adelantar 1 milisegundo - + Shift cues later Retrasar cues - + Left click: shift 10 milliseconds later Clic izquierdo: retrasar 10 milisegundos - + Right click: shift 1 millisecond later Clic derecho: retrasar 1 milisegundo - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Arrastra un botón de Hotcue aquí para continuar reproduciendo después de soltar la hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Sugerencia: cambie el modo por defecto de las cues en Preferencias -> Platos. - + Mutes the selected channel's audio in the main output. Silencia el audio del canal seleccionado en la salida principal. - + Main mix enable Activador de mezcla principal - + Hold or short click for latching to mix this input into the main output. Clic sostenido o corto para enganchar, para mezclar esta entrada con la salida principal. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si la hotcue es una cue de bucle, activa el bucle y salta hacia él si se encuentra detrás de la posición de reproducción. - + If the play position is inside an active loop, stores the loop as loop cue. Si la posición de reproducción se encuentra dentro de un bucle activo, almacena el bucle como una hotcue de bucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Arrastrar este botón dentro de otro botón de hotcue para moverlo hacia este (cambiando su número). Si la otra hotcue ya se encuentra definida, las dos son intercambiadas. - + Expand/Collapse Samplers Expandir/contraer samplers - + Toggle expanded samplers view. Alternar la vista expandida de los samplers. - + Displays the duration of the running recording. Muestra la duración de la grabación en curso. - + Auto DJ is active Auto DJ se encuentra activo - + Red for when needle skip has been detected. Rojo cuando se detecta un salto de aguja. - + Hot Cue - Track will seek to nearest previous hotcue point. Acceso Directo - La pista buscará el punto anterior más cercano del acceso directo. - + Sets the track Loop-In Marker to the current play position. Establece la marca de inicio de bucle a la posición actual - + Press and hold to move Loop-In Marker. Mantener presionado para mover la marca de inicio de bucle. - + Jump to Loop-In Marker. Ir a la marca de inicio de bucle. - + Sets the track Loop-Out Marker to the current play position. Establece la marca de fin de bucle a la posición actual. - + Press and hold to move Loop-Out Marker. Mantener presionado para mover la marca de fin de bucle. - + Jump to Loop-Out Marker. Ir a la marca de fin de bucle. - + If the track has no beats the unit is seconds. Si la pista no tiene pulsaciones, la unidad es segundos. - + Beatloop Size Pulsaciones del bucle - + Select the size of the loop in beats to set with the Beatloop button. Define el tamaño del bucle en pulsaciones a usar cuando se pulse el botón de bucle de pulsaciones. - + Changing this resizes the loop if the loop already matches this size. Al cambiar este valor, cambiará el tamaño del bucle existente, si tenía el tamaño anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduce a la mitad el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Dobla el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Start a loop over the set number of beats. Activa un bucle con la cantidad definida de pulsaciones. - + Temporarily enable a rolling loop over the set number of beats. Activa temporalmente un bucle de continuación con la cantidad de pulsaciones definidas. - + Beatloop Anchor Ancla del bucle de pulsaciones - + Define whether the loop is created and adjusted from its staring point or ending point. Define si el bucle es creado y ajustado desde su punto de inicio o de final. - + Beatjump/Loop Move Size Tamaño del salto de pulsaciones/Desplazamiento del bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la cantidad de pulsaciones a saltar o a mover el bucle con los botones de avance/retroceso. - + Beatjump Forward Avanzar en pulsaciones - + Jump forward by the set number of beats. Avanza la pista la cantidad definida de pulsaciones. - + Move the loop forward by the set number of beats. Avanza el bucle en la cantidad definida de pulsaciones. - + Jump forward by 1 beat. Avanza 1 pulsación. - + Move the loop forward by 1 beat. Avanza el bucle 1 pulsación. - + Beatjump Backward Retrocede en pulsaciones - + Jump backward by the set number of beats. Retrocede la cantidad de pulsaciones definida. - + Move the loop backward by the set number of beats. Retrocede el bucle la cantidad de pulsaciones definida. - + Jump backward by 1 beat. Retrocede 1 pulsación. - + Move the loop backward by 1 beat. Retrocede el bucle 1 pulsación. - + Reloop Repite el bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle está por delante de la posición actual, este no se activará hasta que se llege a él. - + Works only if Loop-In and Loop-Out Marker are set. Solo funciona si las marcas de inicio y fin de bucle estan definidas. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, va a la posición de inicio de bucle y se detiene. - + Displays the elapsed and/or remaining time of the track loaded. Muestra el tiempo transcurrido y/o restante de la pista cargada. - + Click to toggle between time elapsed/remaining time/both. Pulsar para cambiar entre tiempo transcurrido/restante/ambos - + Hint: Change the time format in Preferences -> Decks. Sugerencia: cambie el formato de tiempo en Preferencias -> Platos. - + Show/hide intro & outro markers and associated buttons. Mostrar/ocultar marcadores de intro y outro, y sus botones asociados. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador Inicial de Entrada - - - - + + + + If marker is set, jumps to the marker. Si el marcador se encuentra definido, salta al marcador. - - - - + + + + If marker is not set, sets the marker to the current play position. Si el marcador no se encuentra definido, lo configura a la posición de reproducción actual. - - - - + + + + If marker is set, clears the marker. Si el marcador se encuentra definido, lo elimina. - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste la mezcla de la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + D/W mode: Crossfade between dry and wet Modo D/W: fundido cruzado entre seco y húmedo - + D+W mode: Add wet to dry Modo D+W: agregue húmedo a seco - + Mix Mode Modo mezcla - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste cómo se mezcla la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + 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 seco / húmedo (líneas cruzadas): Mezcle los fundidos cruzados de la perilla entre seco y húmedo. Use esto para cambiar el sonido de la pista con EQ y efectos de 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 seco + húmedo (línea seca plana): la perilla de mezcla agrega húmedo a seco. Use esto para cambiar solo la señal efectuada (húmeda) con EQ y efectos de filtro. + Modo Seco+Húmedo (línea seca plana): La perilla de mezcla agrega mojado a seco +Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efectos de filtrado. - + Route the main mix through this effect unit. Enruta la mezcla principal a través de esta unidad de efectos. - + Route the left crossfader bus through this effect unit. Redirige el bus izquierdo del crossfader a través de esta unidad de efectos. - + Route the right crossfader bus through this effect unit. Enruta el bus derecho del crossfader a través de la unidad de efectos - + Right side active: parameter moves with right half of Meta Knob turn Derecha activo: el parámetro se mueve al mover la mitad derecha del control Meta. - + Stem Label Etiqueta de stem - + Name of the stem stored in the stem file Nombre del stem almacenado en el archivo de stem - + Text is displayed in the stem color stored in the stem file El texto es presentado con el color del stem almacenado en el archivo de stem - + this stem color is also used for the waveform of this stem este color de stem también es usado en la forma de onda de este stem - + Stem Mute Silenciar stem - + Toggle the stem mute/unmuted Alterna el silencio del stem - + Stem Volume Knob Perilla de volumen del stem - + Adjusts the volume of the stem Ajusta el volumen del stem - + Skin Settings Menu Menú de las opciones de la Apariencia - + Show/hide skin settings menu Muestra/esconde el menú de opciones de la Apariencia - + Save Sampler Bank Guardar banco de muestras - + Save the collection of samples loaded in the samplers. Guarda la colección de muestras cargadas en los reproductores de muestras. - + Load Sampler Bank Cargar banco de muestras - + Load a previously saved collection of samples into the samplers. Carga en los reproductores de muestras una colección de muestras guardada en anterioridad. - + Show Effect Parameters Mostrar parámetros de efectos - + Enable Effect Activar efecto - + Meta Knob Link Enlace de la rueda Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura cómo le afecta a este parámetro la rueda Meta. - + Meta Knob Link Inversion Inversión del enlaze de la rueda Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invierte la dirección en la que se mueve el parámetro al mover la rueda Meta. - + Super Knob Súper Perilla - + Next Chain Siguiente cadena - + Previous Chain Cadena anterior - + Next/Previous Chain Cadena siguiente/anterior - + Clear Borrar - + Clear the current effect. Borra el efecto actual. - + Toggle Conmutar - + Toggle the current effect. Conmuta el efecto actual. - + Next Siguente - + Clear Unit Limpiar unidad - + Clear effect unit. limpiar la unidad de efectos. - + Show/hide parameters for effects in this unit. Muestra/esconde los parámetros de los efectos de esta unidad. - + Toggle Unit Conmutar la unidad - + Enable or disable this whole effect unit. Activa o desactiva la unidad de efectos. - + Controls the Meta Knob of all effects in this unit together. Controla a la vez las Perillas Meta de todos los efectos asociados a esta unidad. - + Load next effect chain preset into this effect unit. Carga el siguiente preajuste de efectos en esta unidad de efectos. - + Load previous effect chain preset into this effect unit. Carga el anterior preajuste de efectos en esta unidad de efectos. - + Load next or previous effect chain preset into this effect unit. Carga el siguiente o anterior preajuste de efectos en esta unidad de efectos. - - - - - - - - - + + + + + + + + + Assign Effect Unit Asignar la unidad de efectos - + Assign this effect unit to the channel output. Asigna esta unidad de efectos a la salida del canal. - + Route the headphone channel through this effect unit. Redirige la salida de auriculares a través de la unidad de efectos. - + Route this deck through the indicated effect unit. Redirige este plato a través de la unidad de efectos indicada. - + Route this sampler through the indicated effect unit. Redirige este reproductor a través de la unidad de efectos indicada. - + Route this microphone through the indicated effect unit. Redirige este micrófono a través de la unidad de efectos indicada. - + Route this auxiliary input through the indicated effect unit. Redirige la entrada auxiliar a través de la unidad de efectos indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. La unidad de efectos debe estar asignada a un plato o otra fuente de sonido para oír el efecto. - + Switch to the next effect. Pasa al siguiente efecto. - + Previous Anterior - + Switch to the previous effect. Pasa al efecto anterior. - + Next or Previous Siguiente o Anterior - + Switch to either the next or previous effect. Pasa al siguiente o anterior efecto. - + Meta Knob Rueda Meta - + Controls linked parameters of this effect Controla los parámetros enlazados del efecto - + Effect Focus Button Botón de foco de efecto - + Focuses this effect. Pone el foco en el efecto. - + Unfocuses this effect. Quita el foco del efecto. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulta la página web de tu controlador en la wiki del Mixxx para más información - + Effect Parameter parámetro de efecto - + Adjusts a parameter of the effect. Ajusta un parámetro del efecto. - + Inactive: parameter not linked Inactivo: parámetro no enlazado - + Active: parameter moves with Meta Knob Activo: el parámetro se mueve con la rueda Meta - + Left side active: parameter moves with left half of Meta Knob turn Izquierda activo: el parámetro se mueve con la primera mitad de la rueda Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Izquierda y derecha activo: el parámetro recorre todo el rango con la primera mitad de la rueda Meta, y vueve atrás con la segunda mitad - - + + Equalizer Parameter Kill Parámetro de supresión del ecualizador - - + + Holds the gain of the EQ to zero while active. Mantiene la ganáncia de EQ a cero mientras está activo. - + Quick Effect Super Knob Súper Perilla de Efecto Rápido - + Quick Effect Super Knob (control linked effect parameters). Súper perilla de efecto rápido (controla los parámetros de efecto asociados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Nota: Puedes cambiar el efecto rápido por defecto en Preferéncias > Ecualizadores. - + Equalizer Parameter ecualizador paramétrico - + Adjusts the gain of the EQ filter. Ajusta la ganáncia del filtro de EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Nota: Se puede cambiar el modo de EQ por defecto en Preferencias > Ecualizadores. - - + + Adjust Beatgrid Ajustar cuadrícula de tempo - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la cuadrícula de tempo para que el golpe más cercano se alinee con la posición actual de reproducción. - - + + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + If quantize is enabled, snaps to the nearest beat. Si la cuantización está activada, se acerca al compás más cercano. - + Quantize Cuantizar - + Toggles quantization. Conmutar la cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Cuando está activada, los bucles y cue se alinean con el compás más cercano. - + Reverse Reversa - + Reverses track playback during regular playback. Reproduce en reversa, durante reproducción normal. - + Puts a track into reverse while being held (Censor). Pone la pista en reversa mientras se mantiene presionado. - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducción se continuará en el punto al que habría llegado la pista si no hubiese puesto en reversa. - - - + + + Play/Pause Reproducir/Pausar - + Jumps to the beginning of the track. Salta al principio de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) y la fase de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Sync and Reset Key Sincroniza y resetea la tonalidad - + Increases the pitch by one semitone. Incrementa el tono en una seminota. - + Decreases the pitch by one semitone. Decrementa el tono en una seminota. - + Enable Vinyl Control Activar vinilo de control - + When disabled, the track is controlled by Mixxx playback controls. Si está desactivado, los controles de reproducción del Mixxx controlan la pista. - + When enabled, the track responds to external vinyl control. Si está activado, el control de vinilo externo controla la pista. - + Enable Passthrough Activa el paso de audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer de audio es demasiado pequeño para llevar a cabo todo el procesamiento de audio. - + Displays cover artwork of the loaded track. Muestra la carátula de la pista cargada. - + Displays options for editing cover artwork. Muestra las opciones de edición de carátula. - + Star Rating Puntuación - + Assign ratings to individual tracks by clicking the stars. Asigna la puntuación de cada pista pulsando en las estrellas. @@ -14638,7 +15115,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Right click hotcues to edit their labels and colors. - Clic derecho en hotcues para editar sus etiquetas y colores. + Click derecho en los accesos directos para editar sus etiquetas y colores. @@ -14746,33 +15223,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Intensidad de atenuación al usar el Micrófono - + Prevents the pitch from changing when the rate changes. Evita que el tono cambie al cambiar la velocidad. - + Changes the number of hotcue buttons displayed in the deck - Cambia el número de botones de acceso directo que se muestran en la cubierta + Cambia el número de botones de acceso directo mostrados en el deck - + Starts playing from the beginning of the track. Comienza la reproducción desde el principio de la pista. - + Jumps to the beginning of the track and stops. Salta al principio de la pista y se detiene. - - + + Plays or pauses the track. Reproduce o pausa la pista. - + (while playing) (estando en reproducción) @@ -14792,215 +15269,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Medidor de volumen del canal principal R - + (while stopped) (mientras está parado) - + Cue Cue - + Headphone Auriculares - + Mute Silenciar - + Old Synchronize Sincronización antígua - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Se sincroniza con la primera pista (en orden numérico) que está sonando y tiene BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hay pistas en reprodución, se sincroniza con la primera pista que tenga BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Mantener pulsado durante un segundo para activar la sincronización fija para este plato. - + 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. Los platos con la sincronización bloqueada reproducirán todos al mismo tempo, y si además tienen la quantización activada, también se alinearán los compases. - + Resets the key to the original track key. Resetea la clave musical a la original de la pista. - + Speed Control Control de velocidad - - - + + + Changes the track pitch independent of the tempo. Cambia el tono de la pista independientemente del tempo. - + Increases the pitch by 10 cents. Aumenta el tono 10 centésimas. - + Decreases the pitch by 10 cents. Reduce el tono 10 centésimas. - + Pitch Adjust Ajuste de velocidad - + Adjust the pitch in addition to the speed slider pitch. Ajusta la velocidad añadiendo al cambio del deslizador de velocidad. - + Opens a menu to clear hotcues or edit their labels and colors. Abre un menú para limpiar los accesos directos o editar sus etiquetas y colores. - + Drag this button onto a Play button while previewing to continue playback after release. Arrastre este botón a un boton de Play durante la preescucha para continuar la reproducción tras soltarlo. - + Dragging with Shift key pressed will not start previewing the hotcue. Arrastrar mientras presiona la tecla Shift no iniciará la preescucha de la hotcue. - + Record Mix Grabar mezcla - + Toggle mix recording. Conmutar la grabación de la mezcla. - + Enable Live Broadcasting Activar la emisión en vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Provides visual feedback for Live Broadcasting status: Da una indicación acerca del estado de la emisión en vivo: - + disabled, connecting, connected, failure. desactivado, conectando, conectado, fallo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Cuando está activado, el plato reproduce directamente el audio que recibe por la entrada de vinilo. - + Playback will resume where the track would have been if it had not entered the loop. La reproducción se reanudará en el punto al que habría llegado la pista si no hubiese entrado en el bucle. - + Loop Exit Salida del bucle - + Turns the current loop off. Desactiva el bucle actual. - + Slip Mode Modo Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cuando está activado, la reproducción continúa en silencio mientras dura el bucle, la reproducción hacia atrás, scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Una vez desactivado, la reproducción (audible) seguirá donde la pista habría estado. - + Track Key The musical key of a track Tonalidad de la pista - + Displays the musical key of the loaded track. Muestra la clave musical de la pista cargada. - + Clock Reloj - + Displays the current time. Muestra la hora actual. - + Audio Latency Usage Meter Medidor de Latencia de Audio - + Displays the fraction of latency used for audio processing. Muestra la parte de latencia usada para el proceso de audio. - + A high value indicates that audible glitches are likely. Un valor alto indica que se pueden percibir ruidos. - + Do not enable keylock, effects or additional decks in this situation. No activar el bloqueo de tonalidad, los efectos o los platos adicionales en este caso. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latencia de Audio @@ -15040,259 +15517,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activa el control de vinilo desde el Menú -> Opciones. - + Displays the current musical key of the loaded track after pitch shifting. Muestra la clave musical actual para la pista cargada teniendo en cuenta el cambio de tonalidad. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Rebobinado rápido a través de la pista. - + Fast Forward Avance Rápido - + Fast forward through the track. Avance Rápido a través de la pista. - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Cambia la tonalidad a una clave musical que permite la transición harmónica de un plato a otro. Es necesario que se haya detectado la clave en ambos platos. - - - + + + Pitch Control Control del pitch - + Pitch Rate Ritmo de cambio de tonalidad - + Displays the current playback rate of the track. Muestra el ritmo de reproducción actual de la pista. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Estando activo la pista se repetirá si se pasa del final o si retrocede antes del comienzo. - + Eject Expulsar - + Ejects track from the player. Expulsa la pista del reproductor. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Si el hotcue está establecido, salta al hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Si el hotcue no está establecido, establece el hotcue en la actual posición de reproducción. - + Vinyl Control Mode Modo de control de vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - la posicion dentro del tema corresponde a la posicion y velocidad de la aguja. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - la velocidad del tema corresponde a la velocidad de la aguja independientemente de la posicion. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - la velocidad del tema corresponde a la ultima velocidad conocida independientemente de lo que se recibe de la aguja. - + Vinyl Status Estado del vinilo - + Provides visual feedback for vinyl control status: Provee retroalimentación visual sobre el estado del control de vinilo: - + Green for control enabled. Verde para control activo. - + Blinking yellow for when the needle reaches the end of the record. Amarillo parpadeante cuando la aguja alcanza el final de la grabación. - + Loop-In Marker Marcador de inicio de bucle - + Loop-Out Marker Marcador de fin de bucle - + Loop Halve Reducir bucle a la mitad - + Halves the current loop's length by moving the end marker. Reduce a la mitad la longitud del bucle actual, moviendo la marca de fin. - + Deck immediately loops if past the new endpoint. El plato vuelve al inicio del bucle inmediatamente si se ha superado el nuevo punto final. - + Loop Double Aumentar bucle al doble - + Doubles the current loop's length by moving the end marker. Aumenta al doble la longitud del bucle actual, moviendo la marca de fin. - + Beatloop Bucle de pulsaciones - + Toggles the current loop on or off. Activa o desactiva el bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Funciona sólo si se han definido las marcas de inicio y fin de bucle. - + Vinyl Cueing Mode Modo de Cue de Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina cómo los puntos Cue son tratados en el modo de control Relativo de Vinilos: - + Off - Cue points ignored. Off - Los puntos CUE se ignoran. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Cue - si se pone la aguja mas allá del punto cue, se irá al punto Cue de la pista. - + Track Time Tiempo de pista - + Track Duration Duración de la Pista - + Displays the duration of the loaded track. Muestra la duración de la pista cargada. - + Information is loaded from the track's metadata tags. Información cargada desde el tag de metadatos de las pistas. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Muestra el artista de la pista cargada. - + Track Title Título de la pista - + Displays the title of the loaded track. Muestra el título de la pista cargada. - + Track Album Álbum de la pista - + Displays the album name of the loaded track. Muestra el nombre del álbum de la pista cargada. - + Track Artist/Title Artista/Título de la pista - + Displays the artist and title of the loaded track. Muestra el artista y el título de la pista cargada. @@ -15523,47 +16000,75 @@ Carpeta: %2 WCueMenuPopup - + Cue number Número de cue - + Cue position Posición Marca - + Edit cue label Editar etiqueta de marca - + Label... Etiqueta... - + Delete this cue Borrar esta marca - - Toggle this cue type between normal cue and saved loop - Alterna el tipo de esta cue entre cue normal y bucle guardado + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic izquierdo: usar el tamaño anterior o el del bucle actual como el tamaño de bucle + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic derecho: usar la posición de reproducción actual como final del bucle si se encuentra después de la cue + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Acceso DIrecto #%1 @@ -15688,323 +16193,363 @@ Carpeta: %2 + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear &nueva Playlist - + Create a new playlist Crear una nueva lista de reproducción - + Ctrl+n Ctrl+N - + Create New &Crate Crear un nuevo&cajón - + Create a new crate Crear un nuevo cajón - + Ctrl+Shift+N Ctrl+Mayús+N - - + + &View &Vista - + Auto-hide menu bar Auto-ocultar barra de menú - + Auto-hide the main menu bar when it's not used. Auto-ocultar la barra de menú principal cuando no es utilizada. - + May not be supported on all skins. Puede no estar disponible para todas las apariencias. - + Show Skin Settings Menu Mostrar menú de ajustes de aspecto - + Show the Skin Settings Menu of the currently selected Skin Mostrar la configuración actual del menu de tema - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar seccion del microfono - + Show the microphone section of the Mixxx interface. Muestra la sección de control de micrófono de la interfaz de Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar la Sección de Control de Vinilo - + Show the vinyl control section of the Mixxx interface. Muestra la sección de control de vinilo de la interfaz de Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar el reproductor de preescucha - + Show the preview deck in the Mixxx interface. Muestra el reproductor de preescucha en la interfaz de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Muestra carátulas - + Show cover art in the Mixxx interface. Muestra las carátulas en la interfaz de Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Space Menubar|View|Maximize Library Espacio - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Mostrar Mixxx a pantalla completa - + &Options &Opciones - + &Vinyl Control Control de &vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con codigo de tiempo en bandejas externas para controlar Mixxx - + Enable Vinyl Control &%1 Habilita el Control por Vinilo &%1 - + &Record Mix &Grabar Mezcla - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar transmisión en &vivo - + Stream your mixes to a shoutcast or icecast server Transmite tus mezclas a un servidor shoutcast o icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar Atajos de &Teclado - + Toggles keyboard shortcuts on or off Activa o desactiva los atajos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar la configuración de Mixxx (p.ej.: reproducción, MIDI, controles) - + &Developer &Desarrollador - + &Reload Skin &Recargar apariencia - + Reload the skin Recargar la apariencia - + Ctrl+Shift+R Ctrl+Mayús+R - + Developer &Tools U&tilidades de desarrollador - + Opens the developer tools dialog Abre el cuadro de diálogo de herramientas de desarrollo - + Ctrl+Shift+T Ctrl+Mayús+T - + Stats: &Experiment Bucket Estadísticas: Contadores &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el modo experimental. Recoje estadísticas en los contadores EXPERIMENT. - + Ctrl+Shift+E Ctrl+Mayús+E - + Stats: &Base Bucket Estadísticas: contadores &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el modo base. Recoje estadísticas en los contadores BASE. - + Ctrl+Shift+B Ctrl+Mayús+B - + Deb&ugger Enabled Dep&uración activada - + Enables the debugger during skin parsing Activa el depurador durante el análisis de la máscara - + Ctrl+Shift+D Ctrl+Mayús+D - + &Help Ay&uda - + Show Keywheel menu title Mostrar rueda de notas @@ -16021,74 +16566,74 @@ Carpeta: %2 Exportar biblioteca al formato Engine DJ - + Show keywheel tooltip text Mostrar rueda de notas - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Soporte &comunitario - + Get help with Mixxx Obtener ayuda con Mixxx - + &User Manual Manual de &usuario - + Read the Mixxx user manual. Lea el manual de usuario de Mixxx. - + &Keyboard Shortcuts Atajos de &Teclado - + Speed up your workflow with keyboard shortcuts. Trabaja más rápidamente usando los atajos de teclado. - + &Settings directory &Directorio de configuración - + Open the Mixxx user settings directory. Abre el directorio de configuración de usuario de Mixxx. - + &Translate This Application &Traducir esta aplicación - + Help translate this application into your language. Ayude a traducir esta aplicación a su idioma. - + &About &Acerca de - + About the application Acerca de la aplicación @@ -16096,25 +16641,25 @@ Carpeta: %2 WOverview - + Passthrough Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Listo para reproducir, analizando... - - + + Loading track... Text on waveform overview when file is cached from source Cargando pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizando... @@ -16123,25 +16668,13 @@ Carpeta: %2 WSearchLineEdit - - Clear input - Clear the search bar input field - Borrar el texto - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input Borrar el texto @@ -16152,93 +16685,87 @@ Carpeta: %2 Buscar... - + Clear the search bar input field Limpia el campo de entrada de la barra de búsqueda - - Enter a string to search for - Introducir el texto a buscar + + Return + Volver - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operadores como bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Para más información vea el Manual de Usuario> Biblioteca Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Atajo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Poner el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retroceso + + Additional Shortcuts When Focused: + - Shortcuts - Atajos + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Volver + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Activa la búsqueda antes del tiempo de espera de "búsqueda mientras escribe" o salte a la vista de pistas después + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Espacio - + Toggle search history Shows/hides the search history entries Alternar historial de búsqueda - + Delete or Backspace Borrar o Retorno - - Delete query from history - Borrar Consulta del Historial - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Salir de la busqueda + + Delete query from history + Borrar Consulta del Historial @@ -16322,625 +16849,640 @@ Carpeta: %2 WTrackMenu - + Load to Cargar en - + Deck Plato - + Sampler Reproductor de muestras - + Add to Playlist Añadir a la lista de reproducción - + Crates Cajas - + Metadata Metadatos - + Update external collections Actualizar colecciones externas - + Cover Art Portada - + Adjust BPM Ajustar BPM - + Select Color Seleccionar color - - + + Analyze Analizar - - + + Delete Track Files Borrar Archivos de Pistas - + 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 lista de DJ Automático (reemplazar) - + Preview Deck Reproductor de preescucha - + Remove Quitar - + Remove from Playlist Eliminar de la lista de reproducción - + Remove from Crate Eliminar de la caja - + Hide from Library Ocultar de la biblioteca - + Unhide from Library Volver a mostrar en la biblioteca - + Purge from Library Eliminar de la biblioteca - + Move Track File(s) to Trash Mover archivo(s) de seguimiento a la papelera - + Delete Files from Disk Borrar Archivos del Disco - + Properties Propiedades - + Open in File Browser Abrir en el explorador de archivos - + Select in Library Selecciona en Biblioteca - + Import From File Tags Importar de los metadatos del fichero - + Import From MusicBrainz Importar de MusicBrainz - + Export To File Tags Exportar a metadatos del fichero - + BPM and Beatgrid BPM y cuadrícula de tempo - + Play Count Reproducciones - + Rating Calificación - + Cue Point Punto CUE - - + + Hotcues Hotcues - + Intro - + Intro - + Outro - + Outro - + Key Clave - + ReplayGain Reproducir otra vez - + Waveform Forma de onda - + Comment Comentario - + All Todos - + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Sort hotcues by position Ordenar hotcues por posición - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Desplazar la cuadrícula de tiempo medio beat - + Reanalyze Reanalizar - + Reanalyze (constant BPM) Reanalizar (BPM constante) - + Reanalyze (variable BPM) Reanalizar (BPM variable) - + Update ReplayGain from Deck Gain Actualizar ReplayGain desde la Ganancia de Plato - + Deck %1 Deck %1 - + Importing metadata of %n track(s) from file tags Importación de metadatos de %n pista a partir de las etiquetas del archivoImportación de metadatos de %n pistas a partir de las etiquetas de los archivosImportación de metadatos de %n pista(s) a partir de las etiquetas del archivo - + Marking metadata of %n track(s) to be exported into file tags Haciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivos - - + + 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 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: Se ha producido un error desconocido al crear la lista de reproducción: - + Add to New Crate Añadir a nueva caja - + Scaling BPM of %n track(s) Escalando BPM de %n pista(s)Escalando BPM de %n pista(s)Escalando BPM de %n pista(s) - + Undo BPM/beats change of %n track(s) Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s) - + Locking BPM of %n track(s) Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s) - + Unlocking BPM of %n track(s) Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s) - + Setting rating of %n track(s) Definiendo evaluación de %n pistaDefiniendo evaluación de %n pistasDefiniendo evaluación de %n pista(s) - + Setting color of %n track(s) configuración de color de %n pista(s)configuración de color de %n pista(s)configuración de color de %n pista(s) - + Resetting play count of %n track(s) Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s) - + Resetting beats of %n track(s) Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s) - + Clearing rating of %n track(s) Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s) - + Clearing comment of %n track(s) Borrando comentarios de %n pistaBorrando comentarios de %n pistasBorrando comentarios de %n pista(s) - + Removing main cue from %n track(s) Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s) - + Removing outro cue from %n track(s) Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s) - + Removing intro cue from %n track(s) Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s) - + Removing loop cues from %n track(s) Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s) - + Removing hot cues from %n track(s) Removiendo los hot cues de %n pista(s)Removiendo los hot cues de %n pista(s)Removiendo los accesos directos de %n pista(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Ordenando hotcues de %n pista por posición (removiendo desfases)Ordenando hotcues de %n pistas por posición (removiendo desfases)Ordenando hotcues de %n pistas(s) por posición (removiendo desfases) - + Sorting hotcues of %n track(s) by position Ordenando hotcues de %n pista por posiciónOrdenando hotcues de %n pistas por posiciónOrdenando hotcues de %n pista(s) por posición - + Resetting keys of %n track(s) Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s) - + Resetting replay gain of %n track(s) Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s) - + Resetting waveform of %n track(s) Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s) - + Resetting all performance metadata of %n track(s) Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s) - + Move these files to the trash bin? ¿Mover estos archivos a la papelera? - + Permanently delete these files from disk? ¿Eliminar permanentemente estos archivos del disco? - - + + This can not be undone! ¡Esto no puede ser revertido! - + Cancel Cancelar - + Delete Files Eliminar archivos - + Okay Okey - + Move Track File(s) to Trash? ¿Mover los archivos de seguimiento a la papelera? - + Track Files Deleted Pistas eliminadas - + Track Files Moved To Trash Archivos de seguimiento movidos a la papelera - + %1 track files were moved to trash and purged from the Mixxx database. %1 archivos de pista fueron movidos a la papelera y purgados de la base de datos de Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 archivos de pistas han sido eliminados y se ha purgado de la base de datos de Mixxx. - + Track File Deleted Archivo de Pista Eliminado - + Track file was deleted from disk and purged from the Mixxx database. El archivo de pista ha sido eliminado del disco y purgado de la base de datos de Mixxx - + The following %1 file(s) could not be deleted from disk No se han podido eliminar del disco los siguientes %1 archivo(s) - + This track file could not be deleted from disk Este archivo de pista no se ha podido borrar del disco - + Remaining Track File(s) Renombrando archivo(s) de pista - + Close Cerrar - + Clear Reset metadata in right click track context menu in library Climpiar - + Loops Bucles - + Clear BPM and Beatgrid Limpia las BPM y la cuadrícula de tiempo - + Undo last BPM/beats change Revertir el último cambio de BPM/pulsaciones - + Move this track file to the trash bin? ¿Mover este archivo de pista a la papelera? - + Permanently delete this track file from disk? ¿Eliminar permanentemente este archivo de pista del disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Todos los platos donde estas pistas hayan sido cargadas se detendrán, y las pistas serán expulsadas. - + All decks where this track is loaded will be stopped and the track will be ejected. Todos los platos donde esta pista haya sido cargada se detendrán, y la pista será expulsada. - + Removing %n track file(s) from disk... Removiendo %n archivo(s) de pista del disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: si estás en la vista Ordenador o Grabación tienes que volver a hacer clic en la vista actual para ver los cambios. - + Track File Moved To Trash Archivo de seguimiento movido a la papelera - + Track file was moved to trash and purged from the Mixxx database. El archivo de seguimiento se ha movido a la papelera y se ha eliminado de la base de datos de Mixxx. - + Don't show again during this session No mostrar nuevamente durante esta sesión - + The following %1 file(s) could not be moved to trash El/los siguiente(s) %1 archivo(s) no pudieron ser movidos a la papelera - + This track file could not be moved to trash Este archivo de pista no se ha podido mover a la papelera + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Setting cover art of %n track(s)Setting cover art of %n track(s)Poniendo carátulas de %n pista(s) - + Reloading cover art of %n track(s) Reloading cover art of %n track(s)Reloading cover art of %n track(s)Recarga de carátulas de %n pista(s) @@ -16994,37 +17536,37 @@ Carpeta: %2 WTrackTableView - + Confirm track hide Confirmar ocultar pista - + Are you sure you want to hide the selected tracks? ¿Estas seguro de que quieres ocultar las pistas seleccionadas? - + Are you sure you want to remove the selected tracks from AutoDJ queue? ¿Esta seguro de que quiere eliminar las pistas seleccionadas de la cola del AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Estás seguro que quieres eliminar las pistas seleccionada de este cajón? - + Are you sure you want to remove the selected tracks from this playlist? ¿Esta seguro de que desea eliminar las pistas seleccionadas de la lista de reproducción? - + Don't ask again during this session No volver a preguntar durante esta sesión - + Confirm track removal Confirmar eliminación del track @@ -17032,12 +17574,12 @@ Carpeta: %2 WTrackTableViewHeader - + Show or hide columns. Mostrar u ocultar columnas. - + Shuffle Tracks Mezclar pistas @@ -17067,7 +17609,7 @@ Carpeta: %2 decks - platos + decks @@ -17075,22 +17617,22 @@ Carpeta: %2 Biblioteca - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers Controladores - + 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. @@ -17248,6 +17790,24 @@ Pulse Aceptar para salir. La solicitud de la red no ha empezado + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17256,4 +17816,27 @@ Pulse Aceptar para salir. Ningún efecto cargado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_es_AR.qm b/res/translations/mixxx_es_AR.qm index eebacb13efa2..560192f4feff 100644 Binary files a/res/translations/mixxx_es_AR.qm and b/res/translations/mixxx_es_AR.qm differ diff --git a/res/translations/mixxx_es_AR.ts b/res/translations/mixxx_es_AR.ts index 99502e6dfa58..459f30345068 100644 --- a/res/translations/mixxx_es_AR.ts +++ b/res/translations/mixxx_es_AR.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Cajas - + Enable Auto DJ Activar Auto DJ - + Disable Auto DJ Desactivar Auto DJ - + Clear Auto DJ Queue Limpiar la cola de Auto DJ - + Remove Crate as Track Source Remover Crate como Fuente de Archivos - + Auto DJ DJ Automatico - + Confirmation Clear Confirmación limpiada - + Do you really want to remove all tracks from the Auto DJ queue? Realmente quieres eliminar todas las pistas de la cola de Auto DJ? - + This can not be undone. ¡Esto no puede ser revertido! - + Add Crate as Track Source Añadir Crate como Fuente de Archivos @@ -223,7 +231,7 @@ - + Export Playlist Exportar lista de reproducción @@ -277,13 +285,13 @@ - + Playlist Creation Failed Fallo la creación de lista de Reproducción - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: @@ -298,12 +306,12 @@ ¿Desea realmente eliminar la lista de reproducción<b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca de tiempo @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -362,7 +370,7 @@ Canales - + Color Color @@ -377,7 +385,7 @@ Compositor - + Cover Art Portada @@ -387,7 +395,7 @@ Fecha de Agregado - + Last Played Última reproducción @@ -417,7 +425,7 @@ Clave - + Location Ubicación @@ -427,7 +435,7 @@ Resumen - + Preview Preescucha @@ -467,7 +475,7 @@ Año - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recuperando imagen... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No se puede usar el almacen de contraseñas seguro: el acceso al almacen ha fallado. - + Secure password retrieval unsuccessful: keychain access failed. No se ha podido obtener la contraseña: El acceso al almacen de claves a fallado. - + Settings error Error de configuración - + <b>Error with settings for '%1':</b><br> <b>Error en ajuste en '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Equipo @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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 puede cargar el siguiente archivo porque este es usado por Mixxx u otra aplicación @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx es un software de DJ de código abierto. Para más información, ver: - + Starts Mixxx in full-screen mode Iniciar Mixxx en modo pantalla completa - + Use a custom locale for loading translations. (e.g 'fr') Utiliza un locale personalizado para cargar traducciones. (ej. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directorio de nivel superior donde Mixxx debería buscar sus archivos de recursos tales como mapeos MIDI, anulando la ubicación de instalación predeterminada. - + Path the debug statistics time line is written to Ruta a donde las estadísticas de depuración de la línea de tiempo son escritas. - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Causa que Mixxx muestre/registre todos los datos del controlador que recibe y las funciones en script que cargue - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! El mapeo del controlador generará advertencias y errores más agresivos cuando detecte un mal uso de las APIs del controlador. Los nuevos mapeos de controladores deben desarrollarse con esta opción activada. - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Activa el modo Desarrollador. Incluye información adicional en el registros, estadísticas de rendimiento, y un menú de Herramientas para Desarrolladores. - + Top-level directory where Mixxx should look for settings. Default is: Directorio de nivel superior en donde Mixxx debería buscar por sus parámetros. Por defecto es : - + Starts Auto DJ when Mixxx is launched. Arranca Auto DJ cuando se inicia Mixxx - + Rescans the library when Mixxx is launched. Re escanea la librería cuando se inicia Mixxx - + Use legacy vu meter Utilizar el vúmetro antiguo - + Use legacy spinny Usar diseño de plato antiguo - - Loads experimental QML GUI instead of legacy QWidget skin - Carga la Interfaz de Usuario QML experimental, en lugar de la skin de legado QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Activa el modo seguro. Desactiva las formas de onda OpenGL y los widgets giratorios de vinilos. Pruebe esta opción si Mixxx no inicia correctamente. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utiliza colores en la salida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ debug - Arriba + Mensajes de Depuración/Desarrollador trace - Arriba + Perfilar mensajes - + 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. Establece el nivel del registro en el cual el búfer de registro es descargado el registro de mixxx. <level> es uno de los valores definidos en --nivel de bitácora de arriba. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Configura el tamaño máximo del archivo mixxx.log en bytes. Usa -1 para ilimitado. Por defecto es 100 MB, como en 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrumpe Mixxx (SIGINT), si un DEBUG_ASSERT evalúa como falso. En un depurador puedes continuar después. - + Overrides the default application GUI style. Possible values: %1 Anula el estilo por defecto de la interfaz de usuario de la aplicación. Valores posibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carga los archivos de música especificados al inicio. Cada archivo que especifiques se cargará en el siguiente deck virtual. - + Preview rendered controller screens in the Setting windows. Previsualizar pantallas renderizadas del controlador en las ventanas de Ajustes @@ -984,2557 +997,2585 @@ trace - Arriba + Perfilar mensajes ControlPickerMenu - + Headphone Output Salida de auriculares - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Vista previa Deck %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restaurar al valor predeterminado - + Effect Rack %1 Rack de Efecto %1 - + Parameter %1 Parámetro %1 - + Mixer Mezclador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mezcla en auriculares (pre/main) - + Toggle headphone split cueing Alternar preescucha dividida de auriculares - + Headphone delay Delay en auriculares - + Transport Transporte - + Strip-search through track Navegación por toda la pista - + Play button Botón de reproducción - - + + Set to full volume Ajustar volumen al máximo - - + + Set to zero volume Ajustar volumen al mínimo - + Stop button Botón de paro - + Jump to start of track and play Saltar al inicio y reproducir - + Jump to end of track Saltar al final - + Reverse roll (Censor) button Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha de auriculares - - + + Mute button Botón para silenciar MUTE - + Toggle repeat mode Conmutar modo repetición - - + + 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 - + Toggle slip mode Conmutar el modo deslizante - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Disminuir BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Disminuir BPM en 0,1 - + BPM tap button Botón de BPM manual - + Toggle quantize mode Conmutar el modo de cuantización - + One-time beat sync (tempo only) Sincronizar por unica vez (sólo el tempo) - + One-time beat sync (phase only) Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal - + Equalizers - + 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 - + Slot %1 Ranura %1 - + Headphone Mix Mezcla de Auriculares - + Headphone Split Cue Salida partida por auriculares - + Headphone Delay Retardo de auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de Retroceso Rápido - + Fast Forward Avance Rápido - + Fast Forward button Botón de Avance Rápido - + Strip Search Navegación de pista - + Play Reverse Reproducir hacia atrás - + Play Reverse button Botón de Reproducción hacia atrás - + Reverse Roll (Censor) Reproducción hacia atrás (Censura) - + Jump To Start Saltar al Inicio - + Jumps to start of track Saltar al inicio de la pista - + Play From Start Reproducir Desde el Comienzo - + Stop Detener - + Stop And Jump To Start Detener y Saltar al Principio - + Stop playback and jump to start of track Detener reproducción y saltar al inicio de la pista - + Jump To End Saltar al final - + Volume Volumen - - - + + + Volume Fader Deslizador de Volumen - - + + Full Volume Volumen máximo - - + + Zero Volume Volumen cero - + Track Gain Ganancia de pista - + Track Gain knob Rueda de ganancia de pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escuchar por auriculares - + Headphone listen (pfl) button Botón de escucha con auriculares (pfl) - + Repeat Mode Modo de repetición - + Slip Mode Modo Slip - - + + Orientation Orientación - - + + Orient Left Orientar a la izquierda - - + + Orient Center Orientar al centro - - + + Orient Right Orientar a la derecha - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Golpeo de BPM - + Adjust Beatgrid Faster +.01 Acelerar la cuadrícula de tempo en +,01 - + Increase track's average BPM by 0.01 Incrementa el BPM promedio de la pista en 0,01 - + Adjust Beatgrid Slower -.01 Ralentizar la cuadrícula de tempo en -,01 - + Decrease track's average BPM by 0.01 Disminuye el BPM promedio de la pista en 0,01 - + Move Beatgrid Earlier Mover la cuadrícula de tempo antes en el tiempo - + Adjust the beatgrid to the left Ajusta la cuadrícula de tempo hacia la izquierda - + Move Beatgrid Later Mover la cuadrícula de tempo después en el tiempo - + Adjust the beatgrid to the right Ajusta la cuadrícula de tempo hacia la derecha - + Adjust Beatgrid Ajustar cuadrícula de tempo - + Align beatgrid to current position Alinea la cuadrícula de tempo a la posición actual - + Adjust Beatgrid - Match Alignment Ajustar la cuadrícula de tempo - Concidir alineación - + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + Quantize Mode Modo Cuantizado - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar pulsaciones al momento - + Sync Tempo One-Shot Sincronizar tempo al momento - + Sync Phase One-Shot 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 - + High EQ Ecualización de Agudos - + Mid EQ Ecualización de Medios - - + + Main Output Salida Principal - + Main Output Balance Balance Salida Principal - + Main Output Delay Retardo Salida Principal - + Main Output Gain Ganancia de la Salida principal - + Low EQ 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 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 - + Show/hide the microphone & auxiliary section Muestra/oculta la sección del micrófono y el auxiliar - + 4 Effect Units Show/Hide Mostrar/ocultar las 4 Unidades de Efectos - + Switches between showing 2 and 4 effect units Cambia entre mostrar 2 y 4 unidades de efectos - + Mixer Show/Hide Mostrar/Ocultar Mezclador - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Mostrar/Ocultar Portadas (Biblioteca) - + Show/hide cover art in the library Muestra/oculta las portadas en la biblioteca - + 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 - + Headphone Gain Ganancia del auricular - + Headphone gain Ganancia de auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque sincronización el tempo (y la fase con la cuantización habilitada), mantenga presionado para habilitar la sincronización permanente. - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unidad de Efectos %1 - + Button Parameter %1 Parámetro %1 del botón. - + Skin Apariencia - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientación - + Main Output gain Ganancia Salida Principal - + Main Output balance Balance Salida Principal - + Main Output delay Retardo (delay) de la Salida principal - + Headphone Auriculares - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprime %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o recupera la pista, es decir, carga la última pista expulsada (de cualquier deck).<br>Pulsa dos veces para cargar la última pista sustituida. En decks vacíos carga la penúltima pista expulsada. - + BPM / Beatgrid BPM / Grilla de tiempo - + Halve BPM Reducir a la mitad los BPM - + Multiply current BPM by 0.5 Multiplica los BPM por 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplica el BPM actual por 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplica el BPM actual por 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplica el BPM actual por 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplica el BPM actual por 1.5 - + Double BPM Dobla los BPM - + Multiply current BPM by 2 Multiplica el BPM actual por 2 - + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Tempo tap button Botón del Tempo Tap - + Move Beatgrid Desplaza la grilla de tiempo - + Adjust the beatgrid to the left or right Ajusta la grilla de tiempo a la izquierda o a la derecha - + Move Beatgrid Half a Beat Desplaza la cuadricula de tiempo medio pulso - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/grilla de tiempo para la pista cargada - + Sync / Sync Lock Sincronizar / Bloqueo Sincronización - + Internal Sync Leader Sincronización Líder Interno - + Toggle Internal Sync Leader Conmutar el modo Sincronización Líder Interno - - + + Internal Leader BPM BPM Líder Interno - + Internal Leader BPM +1 BPM Líder Interno +1 - + Increase internal Leader BPM by 1 Incrementar BPM líder interno en 1 - + Internal Leader BPM -1 BPM Líder Interno -1 - + Decrease internal Leader BPM by 1 Disminuir BPM líder interno en 1 - + Internal Leader BPM +0.1 BPM Líder Interno +0.1 - + Increase internal Leader BPM by 0.1 Incrementar BPM líder interno en 0.1 - + Internal Leader BPM -0.1 BPM Líder Interno -0.1 - + Decrease internal Leader BPM by 0.1 Disminuir BPM Líder Interno en 0.1 - + Sync Leader Líder de Sicronización - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modo de Sicronización 3-State Toggle / Indicador (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Decrease Speed (Fine) Reducir velocidad (fino) - + Pitch (Musical Key) Tono (Clave Musical) - + Increase Pitch Incrementar Tono - + Increases the pitch by one semitone Incrementar el tono por un semitono - + Increase Pitch (Fine) Incrementar Tono (Fino) - + Increases the pitch by 10 cents Incrementa el tono por 10 céntimos - + Decrease Pitch Decrementar Tono - + Decreases the pitch by one semitone Decrementa el tono por un semitono - + Decrease Pitch (Fine) Decrementar Tono (Fino) - + Decreases the pitch by 10 cents Decrementa el tono por 10 céntimos - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Cambiar puntos cue antes - + Shift cue points 10 milliseconds earlier Cambiar puntos marcado 10 milisegundos antes - + Shift cue points earlier (fine) Desplaza el punto cue hacia atrás (fino) - + Shift cue points 1 millisecond earlier Desplaza los puntos cue 1 milisegundo atrás - + Shift cue points later Cambiar puntos marcado después - + Shift cue points 10 milliseconds later Cambiar puntos marcado 10 milisegundos después - + Shift cue points later (fine) Cambiar puntos marcado después (fino) - + Shift cue points 1 millisecond later Cambiar puntos marcado 1 milisegundo después - - + + Sort hotcues by position Ordenar hotcues por posición - - + + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Hotcues %1-%2 Accesos Directos %1-%2 - + Intro / Outro Markers Marcadores de Entrada / Salida - + Intro Start Marker Marcador Inicial de Entrada - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + intro start marker marcador inicial de entrada - + intro end marker Marcador final de entrada - + outro start marker marcador inicial de salida - + outro end marker marcador final de salida - + Activate %1 [intro/outro marker Activa %1 - + Jump to or set the %1 [intro/outro marker Saltar a o poner el %1 - + Set %1 [intro/outro marker Poner %1 - + Set or jump to the %1 [intro/outro marker Establecer o saltar a %1 - + Clear %1 [intro/outro marker Limpiar %1 - + Clear the %1 [intro/outro marker Limpiar el %1 - + if the track has no beats the unit is seconds si la pista no tiene pulsaciones la unidad es segundos - + 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 %1 Beats set from its end point Bucle de %1 pulsaciones desde su punto final - + Loop Roll %1 Beats set from its end point Definir serie de bucles de %1 pulsaciones desde su punto final - + Create %1-beat loop with the current play position as loop end Crea un bucle de 1%-beat con la posición de reproducción actual como final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Crea un redoble de bucle temporal de %1-pulsos con la posición de reproducción actual como final del bucle - + Loop Beats Bucle de pulsos - + Loop Roll Beats Redoble de bucle de pulsos - + Go To Loop In Ir al Loop de entrada - + Go to Loop In button Ir al botón Loop de entrada - + Go To Loop Out Ir al Loop de salida - + Go to Loop Out button Ir al botón Loop de salida - + 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 Salto de pulso - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica qué marcadores de bucle permanecen estáticos al ajustar el tamaño o es ajustado según la posición actual - + Beat Jump / Loop Move Forward Salto de pulso / Bucle hacia adelante - + Beat Jump / Loop Move Backward Salto de pulso / Bucle hacia atrás - + Loop Move Forward Bucle hacia adelante - + Loop Move Backward Bucle en reversa - + Remove Temporary Loop Remueve el bucle temporal - + Remove the temporary loop Remueve el bucle temporal - + 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. - + Sort focused column Ordenar columna enfocada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la celda que está enfocada, equivale a hacer click en su encabezado - + 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 Cargar Pista y Reproducir - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar) - + Replace Auto DJ Queue with selected tracks Reemplaza la cola de Auto DJ con las pistas seleccionadas - + Select next search history Selecciona el siguiente historial de búsqueda - + Selects the next search history entry Selecciona la siguiente entrada del historial de búsqueda - + Select previous search history Selecciona el historial de búsqueda anterior - + Selects the previous search history entry Selecciona la entrada previa del historial de búsqueda - + Move selected search entry Mover entrada de búsqueda seleccionada - + Moves the selected search history item into given direction and steps Mueve el elemento de la búsqueda histórica seleccionado en la dirección dada y pasa - + Clear search Eliminar búsqueda - + Clears the search query Limpia la búsqueda - - + + Select Next Color Available Selecciona el próximo color disponible - + Select the next color in the color palette for the first selected track Selecciona el próximo color en la paleta de colores para la primera pista seleccionada - - + + Select Previous Color Available Selecciona el anterior color disponible - + Select the previous color in the color palette for the first selected track Selecciona el color anterior en la paleta de colores para la primera pista seleccionada - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Asignación de la Unidad de Efectos - + 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 Valor del parámetro del botón - + 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 DJ Automatico - + Auto DJ Shuffle Auto DJ Aleatorio - + Auto DJ Skip Next Quitar la siguiente en Auto DJ - + Auto DJ Add Random Track Añade una pista aleatoria al Auto DJ - + Add a random track to the Auto DJ queue Añade una pista aleatoria a la fila del Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostrar/Ocultar Micrófono y Auxiliar - + Waveform Zoom Reset To Default Reestablece el zoom de la forma de onda - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restablece el nivel de zoom de la forma de onda al valor por defecto seleccionado en Preferencias > Formas de onda - + Select the next color in the color palette for the loaded track. Selecciona el próximo color en la paleta de colores para la pista cargada. - + Select previous color in the color palette for the loaded track. Selecciona el color anterior en la paleta de colores para la pista cargada. - + Navigate Through Track Colors Navegar a través de los colores de las pistas - + Select either next or previous color in the palette for the loaded track. Selecciona cualquiera de los colores siguientes o anteriores en la paleta de colores para la pista cargada. - + Start/Stop Live Broadcasting Inicia/Detiene Transmisión En Vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Inicia/Detiene la grabación de tu mezcla. - - + + + Deck %1 Stems + + + + + Samplers Muestreadores / 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) Mostrar/ocultar carátulas (en Decks) - + Show/hide cover art in the main decks Mostrar/ocultar carátulas en los platos principales. - + 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) Mostrar/ocultar los vinilos giratorios (todos los platos) - + Show/Hide all spinnies Mostrar/ocultar todos los giradores - + Toggle Waveforms Alternar formas de onda - + Show/hide the scrolling waveforms. Mostrar/ocultar las formas de onda deslizantes - + 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 Agregar una estrella - + Increase the track rating by one star Incrementa la puntuación de la pista en una estrella - + Star Rating Down Quitar una estrella - + Decrease the track rating by one star Reduce la puntuación de la pista en una estrella @@ -3547,6 +3588,159 @@ trace - Arriba + Perfilar mensajes Desconocido + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + You can ignore this error for this session but you may experience erratic behavior. Puedes ignorar este error durante esta sesión, pero podrías experimentar problemas impredecibles. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Error del mapa de controlador - + The mapping for your controller "%1" is not working properly. El mapa de tu controlador "%1" no funciona correctamente. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3682,27 +3876,27 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema del archivo del mapa de controlador - + The mapping for controller "%1" cannot be opened. El mapa del controlador "%1" no puede ser abierto. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + File: Archivo: - + Error: Error: @@ -3735,7 +3929,7 @@ trace - Arriba + Perfilar mensajes - + Lock Bloquear @@ -3765,7 +3959,7 @@ trace - Arriba + Perfilar mensajes Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: @@ -3782,22 +3976,22 @@ trace - Arriba + Perfilar mensajes 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 @@ -3807,28 +4001,28 @@ trace - Arriba + Perfilar mensajes Haz una caja para tu próximo concierto, para tus temas electrohouse favoritos o para tus temas más solicitados. - + Confirm Deletion Confirmar Borrado - - - + + + 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) - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) @@ -3849,17 +4043,17 @@ trace - Arriba + Perfilar mensajes Los cajones permiten organizar tu música como tu quieras! - + Do you really want to delete crate <b>%1</b>? ¿Quieres eliminar la caja <b>%1</b>? - + 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. @@ -3954,12 +4148,12 @@ trace - Arriba + Perfilar mensajes Antiguos colaboradores - + Official Website Sitio web oficial - + Donate Donar @@ -4788,123 +4982,140 @@ Esto podría deberse a que estás usando una skin antigua y este control ya no e DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acción fallida - + You can't create more than %1 source connections. No se pueden crear más de %1 fuentes de emisión en vivo. - + Source connection %1 Fuente de emisión %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Se requiere almenos una fuente de emisión. - + Are you sure you want to disconnect every active source connection? ¿Seguro que deseas desconectar todas las fuentes de emisión activas? - - + + Confirmation required Se necesita confirmación - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' tiene el mismo punto de montaje Icecast que '%2'. No se puede establecer dos conexiones simultáneas al mismo servidor, con el mismo punto de montaje. - + Are you sure you want to delete '%1'? ¿Deseas realmente borrar '%1'? - + Renaming '%1' Renombrando '%1' - + New name for '%1': Nuevo nombre para '%1': - + Can't rename '%1' to '%2': name already in use No se puede renombrar '%1' a '%2': el nombre está en uso @@ -4917,27 +5128,27 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Preferencias de Transmision en Vivo - + Mixxx Icecast Testing Prueba de «Icecast» de Mixxx - + Public stream Transmisión pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nombre de la emisión - + 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. Debido a errores en algunos clientes de transmisión, actualizar dinámicamente los metadatos Ogg Vorbis puede causar interferencias y desconexiones a los oyentes. Marque esta casilla para actualizar los metadatos de todos modos. @@ -4977,67 +5188,72 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Opciones para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinámicamente los metadatos Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Sitio web - + Live mix Mezcla en vivo - + IRC IRC - + Select a source connection above to edit its settings here Selecciona en la lista la fuente de emisión que desees editar - + Password storage Guardado de contraseñas - + Plain text Texto simple - + Secure storage (OS keychain) Almacen seguro (almacen de llaves del SO) - + Genre Genero - + Use UTF-8 encoding for metadata. Usar codificación UTF-8 para los metadatos. - + Description Descripción @@ -5063,42 +5279,42 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Canales - + Server connection Conexión al servidor - + Type Tipo - + Host Servidor - + Login Identificación - + Mount Montar - + Port Puerto - + Password Contraseña - + Stream info Información de la emisión @@ -5108,17 +5324,17 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Metadatos - + Use static artist and title. Usar texto de artista y título fijos - + Static title Titulo fijo - + Static artist Artista fijo @@ -5177,13 +5393,14 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis DlgPrefColors - - + + + By hotcue number Por número de hotcue - + Color Color @@ -5228,17 +5445,22 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Cuando se han habilitado los colores de nota, Mixxx mostrará una pista de color asociada con cada nota. - + Enable Key Colors Activar colores de nota - + Key palette Paleta de notas @@ -5246,114 +5468,114 @@ associated with each key. DlgPrefController - + Apply device settings? ¿Aplicar la configuración del dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? La configuración debe ser aplicada antes de iniciar el asistente de aprendizaje. ¿Aplicar la configuración y continuar? - + None Ningún - + %1 by %2 %1 por %2 - + Mapping has been edited Se ha editado el mapeo - + Always overwrite during this session Siempre sobreescribir durante esta sesión - + Save As Guardar como - + Overwrite Sobreescribir - + Save user mapping Guardar mapeo del usuario - + Enter the name for saving the mapping to the user folder. Ingresar el nombre del archivo de mapeo para guardarlo en la carpeta de usuario. - + Saving mapping failed Ha fallado el guardado del mapeo - + A mapping cannot have a blank name and may not contain special characters. El nombre del mapeo no puede estar en blanco, ni contener caracteres especiales. - + A mapping file with that name already exists. Ya existe un archivo de mapeo con el mismo nombre. - + Do you want to save the changes? Quieres guardar los cambios? - + Troubleshooting Solución de problemas - + <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>Si usas este mapeo, tu controlador podría no funcionar correctamente. Por favor selecciona otro mapeo o deshabilita el controlador. </b></font><br><br>Este mapeo fue diseñado para un nuevo Motor de Controladores de Mixxx, y no puede ser usado con tu instalación actual.<br>Tu instalación de Mixxx posee la version del Motor de Controladores %1. Este mapeo requiere una versión del Motor de controladores >=%2.<br><br>Para más información visita la wiki de <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versiones del Motor de Controladores</a>. - + Mapping already exists. El mapeo ya existe. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ya existe en la carpeta de mapeos de usuario. <br>¿Deseas sobreescribir o guardar con otro nombre? - + Clear Input Mappings Limpiar mapeos de Entrada - + Are you sure you want to clear all input mappings? Está seguro de querer eliminar todos los mapeos de entrada? - + Clear Output Mappings Limpiar mapeos de Salida - + Are you sure you want to clear all output mappings? Está seguro de querer eliminar todos los mapeos de salida? @@ -5371,100 +5593,105 @@ Apply settings and continue? Habilitado - + + Refresh mapping list + + + + Device Info Información del dispositivo - + Physical Interface: Interfase física - + Vendor name: Nombre del fabricante: - + Product name: Nombre del producto: - + Vendor ID ID del proveedor - + VID: VID: - + Product ID ID del producto - + PID: PID: - + Serial number: Número de serie: - + USB interface number: Número de interfaz USB - + HID Usage-Page: Página de uso HID - + HID Usage: Uso de HID: - + Description: Descripción: - + Support: Soporte: - + Screens preview Previsualizar pantallas - + Input Mappings Mapeos de Entrada - - + + Search Buscar - - + + Add Añadir - - + + Remove Quitar @@ -5484,17 +5711,17 @@ Apply settings and continue? Cargar Mapeo: - + Mapping Info Información de mapeo - + Author: Autor: - + Name: Nombre: @@ -5504,28 +5731,28 @@ Apply settings and continue? Asistente de aprendizaje (sólo MIDI) - + Data protocol: Protocolo de datos: - + Mapping Files: Archivos de mapeo - + Mapping Settings Configuración de mapeo - - + + Clear All Limpiar todo - + Output Mappings Mapeos de Salida @@ -5540,21 +5767,21 @@ 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 utiliza "mapeos" para conectar mensajes desde tu controlador a los controles en Mixxx. Si no ves un mapeo de tu controlador en el menu "Cargar Mapeo" cuando hagas click en tu controlador en la barra deslizable izquierda, pudieras descargar uno en línea desde %1. Coloca los archivos XML (.xml) y Javascript (.js) en la "Carpeta de Mapeo del Usuario" luego reinicia Mixxx. Si descargaste un mapeo en un archivo ZIP, extrae los archivos XML y Javascript del archivo ZIP a tu "Carpeta de Mapeo del Usuario" y luego reinicia 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guía de Hardware de DJ de Mixxx - + MIDI Mapping File Format Formato de archivo de mapeos MIDI - + MIDI Scripting with Javascript Programación de Scripts MIDI con Javascript @@ -5684,6 +5911,16 @@ Apply settings and continue? Multi-Sampling Multi-Muestreo + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5713,137 +5950,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sin parpadeo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (grueso) - + s%1zz - Seconds s%1zz - Segundos - + sss%1zz - Seconds (Long) sss%1zz - Segundos (Duración) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosegundos - + Intro start Inicio de la entrada - + Main cue Marcador principal - + First hotcue Primera hotcue - + First sound (skip silence) Primer sonido (saltar silencio) - + Beginning of track Principio de la pista - + Reject Rechazar - + Allow, but stop deck Permitir, pero detener deck - + Allow, play from load point Permitir, reproducir desde el punto de carga - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6298,62 +6535,62 @@ Siempre puedes arrastrar y tirar pistas en la pantalla para clonar una plataform 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 - + Disabled Desactivado - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx debe ser reiniciado para que el nuevo ajuste de locale, escalado o multi-muestreo tenga efecto. @@ -6390,7 +6627,7 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Analyzer Settings - + Configuración del Analizador @@ -6581,67 +6818,97 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Ver el manual para más detalles - + 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? 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 - + Item is not a directory or directory is missing El ítem no es un directorio, o el directorio no ha sido encontrado - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6690,262 +6957,267 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Re-escanear directorios al inicio - + Audio File Formats Formatos de archivo de sonido - + Track Table View Vista Tabla de Pistas - + Track Double-Click Action: Acción doble-click de Pista: - + BPM display precision: Precisión al mostrar los BPM: - + Session History Historia de la sesión - + Track duplicate distance Duplicar Distancia de Pista - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Cuando reproduces una pista de nuevo, anéxala al historial de la sesión sólo si más de N otras pistas han sido reproducidas mientras tanto. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Historial de lista de reproducciones con menos de N pistas serán borradas<br/><br/>Nota: la limpieza será realizada durante el inicio y el cierre de Mixxx. - + Delete history playlist with less than N tracks Borrar historial de listado de pistas con menos de N pistas - + Library Font: Fuente para Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks Oscurecer pistas ya tocadas - + Track Search Buscar una pista - + Enable search completions Permitir completar búsquedas - + Enable search history keyboard shortcuts Activar los atajos de teclado del historial de búsqueda - + Percentage of pitch slider range for 'fuzzy' BPM search: Porcentaje del rango del deslizador de pitch para búsqueda de BPM "difuso-variable". - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Este rango será utilizado para buscar BPM "difuso-variable" (~bpm:) en la caja de búsqueda, además de la búsqueda de BPM en el menú contextual Pista > Buscar pistas relacionadas - + Preferred Cover Art Fetcher Resolution Resolución preferida del buscador de carátulas - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Obtén carátulas de coverartarchive.com mediante Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" puede referirse a carátulas muy grandes. - + >1200 px (if available) >1200 px (si está disponible) - + 1200 px (if available) 1200 px (si está disponible) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Directorio de configuración - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. El directorio de configuración de Mixxx contiene la base de datos de la biblioteca, varios archivos de configuración, archivos de bitácoras, datos de análisis de pistas, así como mapeos de controladores personalizados. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Edita estos archivos solo si sabes lo que estás haciendo, y solo cuando Mixxx no esté siendo ejecutado. - + Open Mixxx Settings Folder Abrir carpeta de ajustes de Mixxx - + Library Row Height: Alto de la Fila en Biblioteca: - + Use relative paths for playlist export if possible Usar rutas relativas al exportar lista de reproducción cuando sea posible - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincroniza los metadatos de la librería de pistas desde/hacia las etiquetas de archivos - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automáticamente escribe metadatos de las pistas modificadas desde la biblioteca a las etiquetas del archivo y reimporta metadatos desde las etiquetas actualizadas del archivo a la biblioteca - + Synchronize Serato track metadata from/to file tags (experimental) Sincroniza metadatos de la pista de Serato desde/hacia las etiquetas de archivo (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene el color de la pista, la cuadrícula del ritmo, bloqueo de bpm, puntos de marcado, y bucles sincronizados con las etiquetas de archivo SERATO_MARKERS/MARKERS2.<br/><br/>ADVERTENCIA: Habilitando esta opción también habilita la reimportación de metadatos de Serato después de que los archivos han sido modificados afuera de Mixxx. Al reimportar metadatos existentes en Mixxx se remplaza con los metadatos encontrados en las etiquetas de archivos. Los Metadatos personalizados no incluidos en las etiquetas de archivos como los colores de los bucles se perderán. - + Edit metadata after clicking selected track Editar metadatos al clicar en una pista seleccionada - + Search-as-you-type timeout: Tiempo de espera de búsqueda mientras escribe: - + ms ms - + Load track to next available deck Carga la pista en el siguiente plato disponible - + External Libraries Bibliotecas externas - + You will need to restart Mixxx for these settings to take effect. Usted tendrá que reiniciar Mixxx para que esta configuración surta efecto. - + Show Rhythmbox Library Mostrar la librería de Rhythmbox - + Track Metadata Synchronization / Playlists Metadatos de sincronización de pistas / Listas de reproducción - + Add track to Auto DJ queue (bottom) Añadir pista al final de la cola de Auto DJ - + Add track to Auto DJ queue (top) Añadir pista a la cola de Auto DJ (al comienzo) - + Ignore Ignorar - + Show Banshee Library Mostrar la bibiloteca de Banshee - + Show iTunes Library Mostrar la librería de ITunes - + Show Traktor Library Mostrar la librería de Traktor - + Show Rekordbox Library Mostrar la Librería de Rekordbox - + Show Serato Library Mostrar la Librería de Serato - + All external libraries shown are write protected. Todas las bibliotecas mostradas estan protegidas frente a escritura. @@ -7290,33 +7562,33 @@ y te permite ajustar su pitch para lograr mezclas armónicas. DlgPrefRecord - + Choose recordings directory Elegir la carpeta para las grabaciones - - + + Recordings directory invalid Directorio de grabaciones inválido - + Recordings directory must be set to an existing directory. El directorio de Grabaciones debe configurarse a un directorio existente. - + Recordings directory must be set to a directory. El directorio de Grabaciones debe configurarse a un directorio. - + Recordings directory not writable Directorio de Grabaciones no escribible - + You do not have write access to %1. Choose a recordings directory you have write access to. No tienes acceso de escritura en %1. Escoge un directorio de grabación en el que tengas acceso de escritura. @@ -7334,43 +7606,55 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Examinar… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidad - + Tags Etiquetas - + Title Título - + Author Autor - + Album Album - + Output File Format Formato de fichero de salida - + Compression Compresión - + Lossy Con pérdidas @@ -7385,12 +7669,12 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Directorio: - + Compression Level Nivel de compresión - + Lossless Sin pérdidas @@ -7523,172 +7807,177 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Por Defecto (mas retardo) - + Experimental (no delay) Experimental (sin retardo) - + Disabled (short delay) Desactivado (poco retardo) - + Soundcard Clock Reloj de la tarjeta de sonido - + Network Clock Reloj de red - + Direct monitor (recording and broadcasting only) Monitorización directa (solo grabación y emisión en vivo) - + Disabled Desactivado - + Enabled Habilitado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Para activar el Planificador en tiempo real (actualmente desactivado), mira %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 muestra una lista de tarjetas de sonido y controladores que podrías considerar para utilizar con Mixxx - + Mixxx DJ Hardware Guide Guía de Hardware DJ de Mixxx - + + Find details in the Mixxx user manual + + + + Information Información - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx debe ser reiniciado para que el cambio de ajuste de RubberBand multi-hilo tenga efecto. - + auto (<= 1024 frames/period) auto (<= 1024 fotogramas/período) - + 2048 frames/period 2048 fotogramas/período - + 4096 frames/period 4096 fotogramas/período - + Are you sure? ¿Estás seguro(a)? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Distribuir los canales estéreo en canales mono para su procesamiento en paralelo podría resultar en la pérdida de la compatibilidad mono y una imagen estéreo difusa. No se recomienda al transmitir en vivo o al grabar. - + Are you sure you wish to proceed? ¿Realmente deseas continuar? - + No No - + Yes, I know what I am doing Sí, se lo que estoy haciendo - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. La entrada de micrófono está desincronizada respecto la grabación y emisión comparado con la señal que se oye. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mide la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Refer to the Mixxx User Manual for details. Para más detalles, lea el manual de usuario de Mixxx. - + Configured latency has changed. La latencia configurada ha cambiado. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Vuelve a medir la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Realtime scheduling is enabled. La planificación en Tiempo Real está activada. - + Main output only Solo Salida principal - + Main and booth outputs Salidas principal y de cabina - + %1 ms %1 ms - + Configuration error Error de configuración @@ -7755,17 +8044,22 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de vaciado del búfer - + 0 0 @@ -7790,12 +8084,12 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Entrada - + System Reported Latency Latencia reportada por el sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente su búfer de audio si el contador de desbordamiento está aumentando o escuchas chasquidos durante la reproducción. @@ -7825,7 +8119,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Diagnóstico y sugerencias - + Downsize your audio buffer to improve Mixxx's responsiveness. Disminuya su búfer de audio para mejorar la velocidad de respuesta de Mixxx. @@ -7872,7 +8166,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Configuración de Vinilo - + Show Signal Quality in Skin Mostrar Calidad de Señal en la apariencia @@ -7908,46 +8202,51 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y + Pitch estimator + + + + Deck 1 Plato 1 - + Deck 2 Plato 2 - + Deck 3 Plato 3 - + Deck 4 Plato 4 - + Signal Quality Calidad de Señal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Con tecnología de xwax - + Hints Sugerencias - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione los dispositivos de sonico para el Control por Vinilo en el Panel de Hardware de Sonido. @@ -7955,58 +8254,58 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + Top Arriba - + Center Centrado - + Bottom Abajo - + 1/3 of waveform viewer options for "Text height limit" 1/3 de visualización de forma de onda - + Entire waveform viewer Visor de forma de onda completa - + 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. @@ -8024,22 +8323,17 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Tasa de fotograma - + OpenGL Status Estado de OpenGL - + Displays which OpenGL version is supported by the current platform. Muestra qué versión de OpenGL es soportada por la plataforma actual. - - Normalize waveform overview - Normalizar vista de forma de onda - - - + Average frame rate Refresco de pantalla promedio @@ -8055,7 +8349,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Nivel de zoom por defecto - + Displays the actual frame rate. Muestra la tasa de refresco actual. @@ -8090,7 +8384,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Graves - + Show minute markers on waveform overview Mostrar marcadores de minutos en la vista de forma de onda @@ -8135,7 +8429,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Ganancia visual global - + 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. La vista general de forma de onda muestra la forma de onda de la pista entera. @@ -8204,22 +8498,22 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se pt - + Caching Almacenamiento en caché - + 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 almacena en caché las formas de onda de las pistas en el disco la primera vez que se carga una pista. Esto reduce el uso de la CPU cuando se está jugando en vivo, pero requiere espacio en disco adicional. - + Enable waveform caching Habilitar el almacenamiento en caché de forma de onda - + Generate waveforms when analyzing library Generar formas de onda cuando se analiza la biblioteca @@ -8235,7 +8529,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se - + Type Tipo @@ -8265,12 +8559,58 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Mover the marcador de posición en la pista a la izquierda, derecha o centro (Defabrica). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Visualizar formas de onda - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Las formas de onda claras en caché @@ -8762,7 +9102,7 @@ Carpeta: %2 BPM: - + Location: Ubicación: @@ -8777,27 +9117,27 @@ Carpeta: %2 Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Ajusta el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ajusta el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostrar los BPMs de la pista seleccionada. @@ -8852,49 +9192,49 @@ Carpeta: %2 Genero - + ReplayGain: Ganancia de repetición: - + Sets the BPM to 200% of the current value. Ajusta el BPM al 200% del valor actual. - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + Clear BPM and Beatgrid Borrar el BPM y la cuadrícula de tempo - + Move to the previous item. "Previous" button Mover al elemento anterior. - + &Previous &Previo - + Move to the next item. "Next" button Mover al siguiente elemento. - + &Next &Siguiente @@ -8919,12 +9259,12 @@ Carpeta: %2 Color - + Date added: Fecha de adición: - + Open in File Browser Abrir en el explorador de archivos @@ -8934,12 +9274,17 @@ Carpeta: %2 Tasa de muestreo: - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8948,90 +9293,90 @@ Utiliza este ajuste si tus pistas tienen un tempo constante (ej. la mayoría de A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en pistas que tienen cambios de tempo. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Ajusta el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Incrementa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Incrementa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee siguiendo el ritmo para establecer el BPM. - + Tap to Beat Pulse siguiendo el ritmo - + Hint: Use the Library Analyze view to run BPM detection. Truco: Use la vista de análisis en la biblioteca para ejecutar la detección de BPM. - + Save changes and close the window. "OK" button Guardar cambios y cerrar la ventana. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar cambios y cerrar. - + Save changes and keep the window open. "Apply" button Guardar cambios y mantener abierta la ventana. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) (sin color) @@ -9188,7 +9533,7 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en &OK - + (no color) (sin color) @@ -9390,27 +9735,27 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Rubberband R3 (near-hi-fi quality) Banda elástica R3 (calidad casi alta fidelidad) - + Unknown, using Rubberband (better) Desconocido, utilizando Banda elástica (mejor) - + Unknown, using Soundtouch Desconocido, usando Soundtouch @@ -9625,15 +9970,15 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en 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 @@ -9645,57 +9990,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9703,37 +10048,37 @@ de OpenGL. Library - + This or a parent directory is already in your library. Este directorio o su superior ya se encuentra en tu biblioteca. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Este directorio o el indicado no existe o es inaccesible. Cancelando la operación para evitar inconsistencias de biblioteca. - - + + This directory can not be read. Este directorio no puede ser leído. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ha ocurrido un error desconocido. Cancelando la operación para evitar inconsistencias de biblioteca - + Can't add Directory to Library No se pudo agregar el directorio a la biblioteca - + Could not add <b>%1</b> to your library. %2 @@ -9742,27 +10087,27 @@ Cancelando la operación para evitar inconsistencias de biblioteca %2 - + Can't remove Directory from Library No se pudo remover el directorio de la biblioteca. - + An unknown error occurred. Ha ocurrido un error desconocido. - + This directory does not exist or is inaccessible. Este directorio no existe o es inaccesible. - + Relink Directory Reenlazar directorio - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9774,22 +10119,22 @@ Cancelando la operación para evitar inconsistencias de biblioteca 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. @@ -9927,12 +10272,12 @@ Do you really want to overwrite it? Pistas Ocultas - + Export to Engine DJ Exportar a Engine DJ - + Tracks Pistas @@ -9940,37 +10285,37 @@ 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 @@ -9980,213 +10325,213 @@ Do you really want to overwrite it? apariencia - + Allow Mixxx to hide the menu bar? ¿Permitir a Mixxx ocultar la barra de menú? - + Hide Always show the menu bar? Ocultar - + Always show Mostrar siempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra de menú de Mixxx ha sido ocultada y se puede alternar presionando la tecla <b>Alt</b>. <br><br>Haz clic en <b>%1</b> para aceptar. <br><br>Haz clic en <b>%2</b> para desactivarlo, por ejemplo si usas Mixxx sin un teclado. <br><br>Puedes cambiar este ajuste en cualquier momento en Preferencias -> Interfaz. <br> - + Ask me again Pregúntame de nuevo - - + + 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? No se ha seleccionado un dispositivo de Entrada para este micrófono. ¿Deseas escoger uno ahora? - + There is no input device selected for this auxiliary. Do you want to select an input device? No se ha seleccionado un dispositivo de entrada para este Auxiliar. ¿Deseas escoger uno ahora? - + Scan took %1 El escaneo tomo %1 - + No changes detected. No se han detectado cambios - + %1 tracks in total %1 pistas en total - + %1 new tracks found Encontradas %1 pistas nuevas - + %1 moved tracks detected %1 pistas movidas detectadas - + %1 tracks are missing (%2 total) %1 pistas perdidas (%2 en total) - + %1 tracks have been rediscovered %1 pistas han sido reencontradas - + Library scan finished Escaneo de la biblioteca terminado - + 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 Renderizado directo 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. 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><b>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? @@ -10202,13 +10547,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reproducción @@ -10218,58 +10563,63 @@ Do you want to select an input device? Aleatorizar lista de reproducción - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Las listas de reproducción son listar ordenadas de pistas que te permiten planificar tus sesiones de DJ. - + 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. Podría ser necesario saltar algunas pistas en tu lista de reproducción planificada, o añadir algunas pistas diferentes, con el fin de mantener la energía de tu audiencia. - + 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 @@ -10368,59 +10718,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 @@ -10534,69 +10884,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabina - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier Bus izquierdo - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus derecho - + Invalid Bus + Audio path indetifier Bus inválido - + Deck + Audio path indetifier Plato - + Record/Broadcast + Audio path indetifier Grabación / Emisión en vivo - + Vinyl Control + Audio path indetifier Control de vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de ruta %1 desconocida @@ -10939,47 +11302,49 @@ Si la amplitud es cero, este parámetro permite mover la posición manualmente p Ancho - + Metronome Metrónomo - + + The Mixxx Team Equipo de Mixxx - + Adds a metronome click sound to the stream Añade el sonido de tic tac de un metrónomo a la señal de salida - + BPM BPM - + Set the beats per minute value of the click sound Define las pulsaciones por minuto del tic tac - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved Sincroniza el BPM con el de la pista, si se puede obtener - + + Gain Ganancia - + Set the gain of metronome click sound Configura la ganancia del sonido del metrónomo @@ -11783,14 +12148,14 @@ Todo a la derecha: final del período La grabación OGG no está soportada. La librería OGG/Vorbis podría no inicializarse. - - + + encoder failure falla del codificador - - + + Failed to apply the selected settings. Fallo al aplicar los ajustes seleccionados. @@ -11930,7 +12295,7 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"La cantidad de amplificación aplicada a la señal de audio. A niveles más altos, el audio estará más distorsionado. - + Passthrough Paso @@ -11977,36 +12342,107 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"Ganancia compensatoria automática - - Makeup - Compensación / Makeup + + Makeup + Compensación / Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + El botón Auto Makeup activa la ganancia compensatoria automática +para mantener la señal entrante y saliente tan sonoras como sea posible. + + + + Off + Apagado + + + + On + Encendido + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Límite (Threshold, dBFS) + + + + + Threshold + Límite + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - El botón Auto Makeup activa la ganancia compensatoria automática -para mantener la señal entrante y saliente tan sonoras como sea posible. + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Apagado + + Knee (dB) + - - On - Encendido + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Límite (Threshold, dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Límite + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12038,6 +12474,7 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e Knee (dBFS) + Knee Knee @@ -12048,11 +12485,13 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e La perilla de Knee es utilizada para lograr una curva de compresión redondeada. + Attack (ms) Ataque (ms) + Attack Ataque @@ -12065,11 +12504,13 @@ will set in once the signal exceeds the threshold la compresión una vez que la señal supere el Límite. + Release (ms) Liberación (Release, ms) + Release Release @@ -12100,12 +12541,12 @@ pueden introducir un efecto de "bombeo" y/o distorsión. varios - + built-in nativo - + missing no encontrado @@ -12140,42 +12581,42 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Stem #%1 - + Empty Vacío - + Simple Simple - + Filtered Filtrado - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Agrupado - + Unknown Desconocido @@ -12436,193 +12877,193 @@ pueden introducir un efecto de "bombeo" y/o distorsión. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontró un problema - + Could not allocate shout_t No se pudo asignar shout_t - + Could not allocate shout_metadata_t No se pudo asignar shout_metadata_t - + Error setting non-blocking mode: Error al establecer el modo "sin bloqueo": - + Error setting tls mode: Error de configuracion del "Modo TLS" - + Error setting hostname! ¡Error al establecer el nombre de host! - + Error setting port! ¡Error al establecer el puerto! - + Error setting password! ¡Error al establecer la contraseña! - + Error setting mount! ¡Error al establecer el punto de montaje! - + Error setting username! ¡Error al establecer el nombre de usuario! - + Error setting stream name! ¡Error al establecer el nombre de la emisión! - + Error setting stream description! ¡Error al establecer la descripción de la emisión! - + Error setting stream genre! ¡Error al establecer el género de la emisión! - + Error setting stream url! ¡Error al establecer la URL de la emisión! - + Error setting stream IRC! ¡Error al configurar el flujo IRC! - + Error setting stream AIM! ¡Error al configurar el flujo AIM! - + Error setting stream ICQ! ¡Error al configurar el flujo ICQ! - + Error setting stream public! Error al iniciar la emisión pública! - + Unknown stream encoding format! ¡Formato de codificación de transmisión desconocido! - + Use a libshout version with %1 enabled Usar una versión de libshout con %1 activado - + Error setting stream encoding format! Error ajuste formato de codificación en emisión! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Transmitir a 96 kHz con Ogg Vorbis no está soportado actualmente. Por favor intente una frecuencia de muestreo diferente o cambie a una codificación diferente. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Consulta https://github.com/mixxxdj/mixxx/issues/5701 para más información. - + Unsupported sample rate Tasa de muestreo no soportada - + Error setting bitrate Error al establecer la tasa de bits - + Error: unknown server protocol! ¡Error: protocolo del servidor desconocido! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast solo soporta codificadores MP3 y AAC - + Error setting protocol! ¡Error al establecer el protocolo! - + Network cache overflow Caché de red excedido - + Connection error Error de connexión - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de las fuentes de emisión en vivo ha lanzado este error:<br><b>Error con la fuente '%1':</b><br> - + Connection message Mensaje de conexión - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensaje de la fuente de emisión en vivo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Se ha perdido la conexión al servidor de emisión y han fallado %1 intentos de reconexión. - + Lost connection to streaming server. Se ha perdido la conexión al servidor de emisión - + Please check your connection to the Internet. Comprueba tu conexión a internet. - + Can't connect to streaming server No se puede conectar al servidor de emisión - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12630,7 +13071,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoftwareWaveformWidget - + Filtered Filtrada @@ -12638,23 +13079,23 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoundManager - - + + a device un dispositivo - + An unknown error occurred Ocurrió un error desconocido - + Two outputs cannot share channels on "%1" Dos salidas no pueden usar los mismos canales de %1 - + Error opening "%1" Error al abrir "%1" @@ -12839,7 +13280,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Spinning Vinyl Vinilo virtual @@ -13021,7 +13462,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Cover Art Portada @@ -13211,243 +13652,243 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la ganancia del filtro de graves en cero, mientras está activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Muestra el tempo de la pista cargada, en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Clave - + BPM Tap Golpeo de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el BPM para que coincida con las pulsaciones realizadas. - + Adjust BPM Down Reduce el BPM - + When tapped, adjusts the average BPM down by a small amount. Cuando se pulsa, reduce el BPM promedio un poco. - + Adjust BPM Up Aumenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Cuando se pulsa, aumenta el BPM promedio un poco. - + Adjust Beats Earlier Mueve la cuadrícula un poco antes - + When tapped, moves the beatgrid left by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la izquierda. - + Adjust Beats Later Mueve la cuadrícula un poco después - + When tapped, moves the beatgrid right by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la derecha. - + Tempo and BPM Tap Golpeo de Tempo y BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar la sección de vinilo giratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. Alternar el bloqueo tonal durante la reproducción puede producir una pequeña distorsión de audio. - + Toggle visibility of Loop Controls Cambia la visibilidad de los Controles de Bucles - + Toggle visibility of Beatjump Controls Cambia la visibilidad de los Controles de Salto de Ritmo - + Toggle visibility of Rate Control Alternar visibilidad del control de velocidad - + Toggle visibility of Key Controls Cambia la visibilidad de los Controles de Clave - + (while previewing) (mientras se previsualiza) - + Places a cue point at the current position on the waveform. Coloca un punto de Cue en la posición actual de la forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Detiene la pista en el punto cue, O BIEN va al punto cue y reproduce en soltar (modo CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Establece el punto Cue (Modo Pioneer/Mixxx/Numark), establece el punto Cue y reproduce en soltar (modo CUP) O BIEN hace una preescuha del mismo (Modo Denon). - + Is latching the playing state. Está reteniendo el estado de reproducción. - + Seeks the track to the cue point and stops. Lleva la pista al punto de Cue y para. - + Play Reproducir - + Plays track from the cue point. Reproduce la pista desde el punto Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envía el audio del canal seleccionado a la salida de auriculares, seleccionada en Preferencias -> Hardware de Sonido - + (This skin should be updated to use Sync Lock!) (Esta carátula debería actualizarse para utilizar Bloqueo de Sincronización!) - + Enable Sync Lock Habilitar Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. Pulse para sincronizar el tiempo con otras pistas en reproducción o líder de sincronización. - + Enable Sync Leader Habilitar Sync Lock - + When enabled, this device will serve as the sync leader for all other decks. Cuando está habilitado, este dispositivo servirá como líder de sicronización para todas las otros platos. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Es relevante cuando una pista con tempo dinámico es cargada a un deck líder de sincronización. En ese caso, otros dispositivos sincronizados adoptarán el tempo cambiante. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Cambia la velocidad de reproducción de la pista (afecta tanto el tempo como el tono). Si está habilitado el bloqueo, únicamente afecta al tempo. - + Tempo Range Display Visualizador del rango de tempo - + Displays the current range of the tempo slider. Muestra el rango actual del deslizador de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Se recupera la pista expulsada cuando no hay ninguna pista cargada, es decir, vuelve a cargar la pista que se expulsó en último lugar (de cualquier deck). - + Delete selected hotcue. Elimina la hotcue seleccionada. - + Track Comment Comentario de la pista - + Displays the comment tag of the loaded track. Muestra la etiqueta de comentario de la pista cargada. - + Opens separate artwork viewer. Abre el visualizador separado de carátulas. - + Effect Chain Preset Settings Configuraciones de Preconfiguración de Cadena de Efectos - + Show the effect chain settings menu for this unit. Muestra el menú de las configuraciones de las cadenas de efectos para esta unidad. - + Select and configure a hardware device for this input Selecciona y configura un dispositivo de hardware para esta entrada - + Recording Duration Duración de la grabación @@ -13670,948 +14111,984 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la velocidad de reproducción baja (pequeña cantidad) cuando se activa. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el tempo para coincidir con la frecuencia de pulsaciones. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Rate Tap and BPM Tap Frecuencia de pulsaciones y de BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/cuadrícula de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/Cuadrícula de tiempo para la pista cargada. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/cuadrícula de tiempo - + Tempo and Rate Tap Toques de Tempo y Frecuencia - + Tempo, Rate Tap and BPM Tap Toques de Tempo, Frecuencia y BPM - + Shift cues earlier Cambia marcas antes - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Cambia marcas importadas desde Serato o Rekordbox si están ligeramente desfazadas. - + Left click: shift 10 milliseconds earlier Clic izquierdo: adelantar 10 milisegundos - + Right click: shift 1 millisecond earlier Clic derecho: adelantar 1 milisegundo - + Shift cues later Retrasar cues - + Left click: shift 10 milliseconds later Clic izquierdo: retrasar 10 milisegundos - + Right click: shift 1 millisecond later Clic derecho: retrasar 1 milisegundo - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Arrastra un botón de Hotcue aquí para continuar reproduciendo después de soltar la hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Sugerencia: cambie el modo por defecto de las cues en Preferencias -> Platos. - + Mutes the selected channel's audio in the main output. Silencia el audio del canal seleccionado en la salida principal. - + Main mix enable Activador de mezcla principal - + Hold or short click for latching to mix this input into the main output. Clic sostenido o corto para enganchar, para mezclar esta entrada con la salida principal. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si la hotcue es una cue de bucle, activa el bucle y salta hacia él si se encuentra detrás de la posición de reproducción. - + If the play position is inside an active loop, stores the loop as loop cue. Si la posición de reproducción se encuentra dentro de un bucle activo, almacena el bucle como una hotcue de bucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Arrastrar este botón dentro de otro botón de hotcue para moverlo hacia este (cambiando su número). Si la otra hotcue ya se encuentra definida, las dos son intercambiadas. - + Expand/Collapse Samplers Expandir/contraer samplers - + Toggle expanded samplers view. Alternar la vista expandida de los samplers. - + Displays the duration of the running recording. Muestra la duración de la grabación en curso. - + Auto DJ is active Auto DJ se encuentra activo - + Red for when needle skip has been detected. Rojo cuando se detecta un salto de aguja. - + Hot Cue - Track will seek to nearest previous hotcue point. Acceso Directo - La pista buscará el punto anterior más cercano del acceso directo. - + Sets the track Loop-In Marker to the current play position. Establece la marca de inicio de bucle a la posición actual - + Press and hold to move Loop-In Marker. Mantener presionado para mover la marca de inicio de bucle. - + Jump to Loop-In Marker. Ir a la marca de inicio de bucle. - + Sets the track Loop-Out Marker to the current play position. Establece la marca de fin de bucle a la posición actual. - + Press and hold to move Loop-Out Marker. Mantener presionado para mover la marca de fin de bucle. - + Jump to Loop-Out Marker. Ir a la marca de fin de bucle. - + If the track has no beats the unit is seconds. Si la pista no tiene pulsaciones, la unidad es segundos. - + Beatloop Size Pulsaciones del bucle - + Select the size of the loop in beats to set with the Beatloop button. Define el tamaño del bucle en pulsaciones a usar cuando se pulse el botón de bucle de pulsaciones. - + Changing this resizes the loop if the loop already matches this size. Al cambiar este valor, cambiará el tamaño del bucle existente, si tenía el tamaño anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduce a la mitad el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Dobla el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Start a loop over the set number of beats. Activa un bucle con la cantidad definida de pulsaciones. - + Temporarily enable a rolling loop over the set number of beats. Activa temporalmente un bucle de continuación con la cantidad de pulsaciones definidas. - + Beatloop Anchor Ancla del bucle de pulsaciones - + Define whether the loop is created and adjusted from its staring point or ending point. Define si el bucle es creado y ajustado desde su punto de inicio o de final. - + Beatjump/Loop Move Size Tamaño del salto de pulsaciones/Desplazamiento del bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la cantidad de pulsaciones a saltar o a mover el bucle con los botones de avance/retroceso. - + Beatjump Forward Avanzar en pulsaciones - + Jump forward by the set number of beats. Avanza la pista la cantidad definida de pulsaciones. - + Move the loop forward by the set number of beats. Avanza el bucle en la cantidad definida de pulsaciones. - + Jump forward by 1 beat. Avanza 1 pulsación. - + Move the loop forward by 1 beat. Avanza el bucle 1 pulsación. - + Beatjump Backward Retrocede en pulsaciones - + Jump backward by the set number of beats. Retrocede la cantidad de pulsaciones definida. - + Move the loop backward by the set number of beats. Retrocede el bucle la cantidad de pulsaciones definida. - + Jump backward by 1 beat. Retrocede 1 pulsación. - + Move the loop backward by 1 beat. Retrocede el bucle 1 pulsación. - + Reloop Repite el bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle está por delante de la posición actual, este no se activará hasta que se llege a él. - + Works only if Loop-In and Loop-Out Marker are set. Solo funciona si las marcas de inicio y fin de bucle estan definidas. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, va a la posición de inicio de bucle y se detiene. - + Displays the elapsed and/or remaining time of the track loaded. Muestra el tiempo transcurrido y/o restante de la pista cargada. - + Click to toggle between time elapsed/remaining time/both. Pulsar para cambiar entre tiempo transcurrido/restante/ambos - + Hint: Change the time format in Preferences -> Decks. Sugerencia: cambie el formato de tiempo en Preferencias -> Platos. - + Show/hide intro & outro markers and associated buttons. Mostrar/ocultar marcadores de intro y outro, y sus botones asociados. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador Inicial de Entrada - - - - + + + + If marker is set, jumps to the marker. Si el marcador se encuentra definido, salta al marcador. - - - - + + + + If marker is not set, sets the marker to the current play position. Si el marcador no se encuentra definido, lo configura a la posición de reproducción actual. - - - - + + + + If marker is set, clears the marker. Si el marcador se encuentra definido, lo elimina. - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste la mezcla de la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + D/W mode: Crossfade between dry and wet Modo D/W: fundido cruzado entre seco y húmedo - + D+W mode: Add wet to dry Modo D+W: agregue húmedo a seco - + Mix Mode Modo mezcla - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste cómo se mezcla la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + 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 seco / húmedo (líneas cruzadas): Mezcle los fundidos cruzados de la perilla entre seco y húmedo. Use esto para cambiar el sonido de la pista con EQ y efectos de 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 seco + húmedo (línea seca plana): la perilla de mezcla agrega húmedo a seco. Use esto para cambiar solo la señal efectuada (húmeda) con EQ y efectos de filtro. + Modo Seco+Húmedo (línea seca plana): La perilla de mezcla agrega mojado a seco +Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efectos de filtrado. - + Route the main mix through this effect unit. Enruta la mezcla principal a través de esta unidad de efectos. - + Route the left crossfader bus through this effect unit. Redirige el bus izquierdo del crossfader a través de esta unidad de efectos. - + Route the right crossfader bus through this effect unit. Enruta el bus derecho del crossfader a través de la unidad de efectos - + Right side active: parameter moves with right half of Meta Knob turn Derecha activo: el parámetro se mueve al mover la mitad derecha del control Meta. - + Stem Label Etiqueta de stem - + Name of the stem stored in the stem file Nombre del stem almacenado en el archivo de stem - + Text is displayed in the stem color stored in the stem file El texto es presentado con el color del stem almacenado en el archivo de stem - + this stem color is also used for the waveform of this stem este color de stem también es usado en la forma de onda de este stem - + Stem Mute Silenciar stem - + Toggle the stem mute/unmuted Alterna el silencio del stem - + Stem Volume Knob Perilla de volumen del stem - + Adjusts the volume of the stem Ajusta el volumen del stem - + Skin Settings Menu Menú de las opciones de la Apariencia - + Show/hide skin settings menu Muestra/esconde el menú de opciones de la Apariencia - + Save Sampler Bank Guardar banco de muestras - + Save the collection of samples loaded in the samplers. Guarda la colección de muestras cargadas en los reproductores de muestras. - + Load Sampler Bank Cargar banco de muestras - + Load a previously saved collection of samples into the samplers. Carga en los reproductores de muestras una colección de muestras guardada en anterioridad. - + Show Effect Parameters Mostrar parámetros de efectos - + Enable Effect Activar efecto - + Meta Knob Link Enlace de la rueda Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura cómo le afecta a este parámetro la rueda Meta. - + Meta Knob Link Inversion Inversión del enlaze de la rueda Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invierte la dirección en la que se mueve el parámetro al mover la rueda Meta. - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Previous Chain Cadena anterior - + Next/Previous Chain Cadena siguiente/anterior - + Clear Borrar - + Clear the current effect. Borra el efecto actual. - + Toggle Conmutar - + Toggle the current effect. Conmuta el efecto actual. - + Next Siguente - + Clear Unit Limpiar unidad - + Clear effect unit. limpiar la unidad de efectos. - + Show/hide parameters for effects in this unit. Muestra/esconde los parámetros de los efectos de esta unidad. - + Toggle Unit Conmutar la unidad - + Enable or disable this whole effect unit. Activa o desactiva la unidad de efectos. - + Controls the Meta Knob of all effects in this unit together. Controla a la vez las ruedas Meta de todos los efectos asociados a esta unidad. - + Load next effect chain preset into this effect unit. Carga el siguiente preajuste de efectos en esta unidad de efectos. - + Load previous effect chain preset into this effect unit. Carga el anterior preajuste de efectos en esta unidad de efectos. - + Load next or previous effect chain preset into this effect unit. Carga el siguiente o anterior preajuste de efectos en esta unidad de efectos. - - - - - - - - - + + + + + + + + + Assign Effect Unit Asignar la unidad de efectos - + Assign this effect unit to the channel output. Asigna esta unidad de efectos a la salida del canal. - + Route the headphone channel through this effect unit. Redirige la salida de auriculares a través de la unidad de efectos. - + Route this deck through the indicated effect unit. Redirige este plato a través de la unidad de efectos indicada. - + Route this sampler through the indicated effect unit. Redirige este reproductor a través de la unidad de efectos indicada. - + Route this microphone through the indicated effect unit. Redirige este micrófono a través de la unidad de efectos indicada. - + Route this auxiliary input through the indicated effect unit. Redirige la entrada auxiliar a través de la unidad de efectos indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. La unidad de efectos debe estar asignada a un plato o otra fuente de sonido para oír el efecto. - + Switch to the next effect. Pasa al siguiente efecto. - + Previous Anterior - + Switch to the previous effect. Pasa al efecto anterior. - + Next or Previous Siguiente o Anterior - + Switch to either the next or previous effect. Pasa al siguiente o anterior efecto. - + Meta Knob Rueda Meta - + Controls linked parameters of this effect Controla los parámetros enlazados del efecto - + Effect Focus Button Botón de foco de efecto - + Focuses this effect. Pone el foco en el efecto. - + Unfocuses this effect. Quita el foco del efecto. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulta la página web de tu controlador en la wiki del Mixxx para más información - + Effect Parameter parámetro de efecto - + Adjusts a parameter of the effect. Ajusta un parámetro del efecto. - + Inactive: parameter not linked Inactivo: parámetro no enlazado - + Active: parameter moves with Meta Knob Activo: el parámetro se mueve con la rueda Meta - + Left side active: parameter moves with left half of Meta Knob turn Izquierda activo: el parámetro se mueve con la primera mitad de la rueda Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Izquierda y derecha activo: el parámetro recorre todo el rango con la primera mitad de la rueda Meta, y vueve atrás con la segunda mitad - - + + Equalizer Parameter Kill Parámetro de supresión del ecualizador - - + + Holds the gain of the EQ to zero while active. Mantiene la ganáncia de EQ a cero mientras está activo. - + Quick Effect Super Knob Rueda Súper de efecto rápido - + Quick Effect Super Knob (control linked effect parameters). Rueda Súper de efecto rápido (controla los parámetros de efecto asociados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Nota: Puedes cambiar el efecto rápido por defecto en Preferéncias > Ecualizadores. - + Equalizer Parameter ecualizador paramétrico - + Adjusts the gain of the EQ filter. Ajusta la ganáncia del filtro de EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Nota: Se puede cambiar el modo de EQ por defecto en Preferencias > Ecualizadores. - - + + Adjust Beatgrid Ajustar cuadrícula de tempo - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la cuadrícula de tempo para que el golpe más cercano se alinee con la posición actual de reproducción. - - + + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + If quantize is enabled, snaps to the nearest beat. Si la cuantización está activada, se acerca al compás más cercano. - + Quantize Cuantizar - + Toggles quantization. Conmutar la cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Cuando está activada, los bucles y cue se alinean con el compás más cercano. - + Reverse Reversa - + Reverses track playback during regular playback. Reproduce en reversa, durante reproducción normal. - + Puts a track into reverse while being held (Censor). Pone la pista en reversa mientras se mantiene presionado. - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducción se continuará en el punto al que habría llegado la pista si no hubiese puesto en reversa. - - - + + + Play/Pause Reproducir/Pausar - + Jumps to the beginning of the track. Salta al principio de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) y la fase de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Sync and Reset Key Sincroniza y resetea la tonalidad - + Increases the pitch by one semitone. Incrementa el tono en una seminota. - + Decreases the pitch by one semitone. Decrementa el tono en una seminota. - + Enable Vinyl Control Activar vinilo de control - + When disabled, the track is controlled by Mixxx playback controls. Si está desactivado, los controles de reproducción del Mixxx controlan la pista. - + When enabled, the track responds to external vinyl control. Si está activado, el control de vinilo externo controla la pista. - + Enable Passthrough Activa el paso de audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer de audio es demasiado pequeño para llevar a cabo todo el procesamiento de audio. - + Displays cover artwork of the loaded track. Muestra la carátula de la pista cargada. - + Displays options for editing cover artwork. Muestra las opciones de edición de carátula. - + Star Rating Puntuación - + Assign ratings to individual tracks by clicking the stars. Asigna la puntuación de cada pista pulsando en las estrellas. @@ -14638,7 +15115,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Right click hotcues to edit their labels and colors. - Clic derecho en hotcues para editar sus etiquetas y colores. + Click derecho en los accesos directos para editar sus etiquetas y colores. @@ -14746,33 +15223,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Intensidad de atenuación al usar el Micrófono - + Prevents the pitch from changing when the rate changes. Evita que el tono cambie al cambiar la velocidad. - + Changes the number of hotcue buttons displayed in the deck - Cambia el número de botones de acceso directo que se muestran en la cubierta + Cambia el número de botones de acceso directo mostrados en el deck - + Starts playing from the beginning of the track. Comienza la reproducción desde el principio de la pista. - + Jumps to the beginning of the track and stops. Salta al principio de la pista y se detiene. - - + + Plays or pauses the track. Reproduce o pausa la pista. - + (while playing) (estando en reproducción) @@ -14792,215 +15269,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Medidor de volumen del canal principal R - + (while stopped) (mientras está parado) - + Cue Cue - + Headphone Auriculares - + Mute Silenciar - + Old Synchronize Sincronización antígua - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Se sincroniza con la primera pista (en orden numérico) que está sonando y tiene BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hay pistas en reprodución, se sincroniza con la primera pista que tenga BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Mantener pulsado durante un segundo para activar la sincronización fija para este plato. - + 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. Los platos con la sincronización bloqueada reproducirán todos al mismo tempo, y si además tienen la quantización activada, también se alinearán los compases. - + Resets the key to the original track key. Resetea la clave musical a la original de la pista. - + Speed Control Control de velocidad - - - + + + Changes the track pitch independent of the tempo. Cambia el tono de la pista independientemente del tempo. - + Increases the pitch by 10 cents. Aumenta el tono 10 centésimas. - + Decreases the pitch by 10 cents. Reduce el tono 10 centésimas. - + Pitch Adjust Ajuste de velocidad - + Adjust the pitch in addition to the speed slider pitch. Ajusta la velocidad añadiendo al cambio del deslizador de velocidad. - + Opens a menu to clear hotcues or edit their labels and colors. Abre un menú para limpiar los accesos directos o editar sus etiquetas y colores. - + Drag this button onto a Play button while previewing to continue playback after release. Arrastre este botón a un boton de Play durante la preescucha para continuar la reproducción tras soltarlo. - + Dragging with Shift key pressed will not start previewing the hotcue. Arrastrar mientras presiona la tecla Shift no iniciará la preescucha de la hotcue. - + Record Mix Grabar mezcla - + Toggle mix recording. Conmutar la grabación de la mezcla. - + Enable Live Broadcasting Activar la emisión en vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Provides visual feedback for Live Broadcasting status: Da una indicación acerca del estado de la emisión en vivo: - + disabled, connecting, connected, failure. desactivado, conectando, conectado, fallo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Cuando está activado, el plato reproduce directamente el audio que recibe por la entrada de vinilo. - + Playback will resume where the track would have been if it had not entered the loop. La reproducción se reanudará en el punto al que habría llegado la pista si no hubiese entrado en el bucle. - + Loop Exit Salida del bucle - + Turns the current loop off. Desactiva el bucle actual. - + Slip Mode Modo Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cuando está activado, la reproducción continúa en silencio mientras dura el bucle, la reproducción hacia atrás, scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Una vez desactivado, la reproducción (audible) seguirá donde la pista habría estado. - + Track Key The musical key of a track Tonalidad de la pista - + Displays the musical key of the loaded track. Muestra la clave musical de la pista cargada. - + Clock Reloj - + Displays the current time. Muestra la hora actual. - + Audio Latency Usage Meter Medidor de Latencia de Audio - + Displays the fraction of latency used for audio processing. Muestra la parte de latencia usada para el proceso de audio. - + A high value indicates that audible glitches are likely. Un valor alto indica que se pueden percibir ruidos. - + Do not enable keylock, effects or additional decks in this situation. No activar el bloqueo de tonalidad, los efectos o los platos adicionales en este caso. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latencia de Audio @@ -15040,259 +15517,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activa el control de vinilo desde el Menú -> Opciones. - + Displays the current musical key of the loaded track after pitch shifting. Muestra la clave musical actual para la pista cargada teniendo en cuenta el cambio de tonalidad. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Rebobinado rápido a través de la pista. - + Fast Forward Avance Rápido - + Fast forward through the track. Avance Rápido a través de la pista. - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Cambia la tonalidad a una clave musical que permite la transición harmónica de un plato a otro. Es necesario que se haya detectado la clave en ambos platos. - - - + + + Pitch Control Control del pitch - + Pitch Rate Ritmo de cambio de tonalidad - + Displays the current playback rate of the track. Muestra el ritmo de reproducción actual de la pista. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Estando activo la pista se repetirá si se pasa del final o si retrocede antes del comienzo. - + Eject Expulsar - + Ejects track from the player. Expulsa la pista del reproductor. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Si el hotcue está establecido, salta al hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Si el hotcue no está establecido, establece el hotcue en la actual posición de reproducción. - + Vinyl Control Mode Modo de control de vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - la posicion dentro del tema corresponde a la posicion y velocidad de la aguja. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - la velocidad del tema corresponde a la velocidad de la aguja independientemente de la posicion. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - la velocidad del tema corresponde a la ultima velocidad conocida independientemente de lo que se recibe de la aguja. - + Vinyl Status Estado del vinilo - + Provides visual feedback for vinyl control status: Provee retroalimentación visual sobre el estado del control de vinilo: - + Green for control enabled. Verde para control activo. - + Blinking yellow for when the needle reaches the end of the record. Amarillo parpadeante cuando la aguja alcanza el final de la grabación. - + Loop-In Marker Marcador de inicio de bucle - + Loop-Out Marker Marcador de fin de bucle - + Loop Halve Reducir bucle a la mitad - + Halves the current loop's length by moving the end marker. Reduce a la mitad la longitud del bucle actual, moviendo la marca de fin. - + Deck immediately loops if past the new endpoint. El plato vuelve al inicio del bucle inmediatamente si se ha superado el nuevo punto final. - + Loop Double Aumentar bucle al doble - + Doubles the current loop's length by moving the end marker. Aumenta al doble la longitud del bucle actual, moviendo la marca de fin. - + Beatloop Bucle de pulsaciones - + Toggles the current loop on or off. Activa o desactiva el bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Funciona sólo si se han definido las marcas de inicio y fin de bucle. - + Vinyl Cueing Mode Modo de Cue de Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina cómo los puntos Cue son tratados en el modo de control Relativo de Vinilos: - + Off - Cue points ignored. Off - Los puntos CUE se ignoran. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Cue - si se pone la aguja mas allá del punto cue, se irá al punto Cue de la pista. - + Track Time Tiempo de pista - + Track Duration Duración de la Pista - + Displays the duration of the loaded track. Muestra la duración de la pista cargada. - + Information is loaded from the track's metadata tags. Información cargada desde el tag de metadatos de las pistas. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Muestra el artista de la pista cargada. - + Track Title Título de la pista - + Displays the title of the loaded track. Muestra el título de la pista cargada. - + Track Album Álbum de la pista - + Displays the album name of the loaded track. Muestra el nombre del álbum de la pista cargada. - + Track Artist/Title Artista/Título de la pista - + Displays the artist and title of the loaded track. Muestra el artista y el título de la pista cargada. @@ -15523,47 +16000,75 @@ Carpeta: %2 WCueMenuPopup - + Cue number Número de cue - + Cue position Posición Marca - + Edit cue label Editar etiqueta de marca - + Label... Etiqueta... - + Delete this cue Borrar esta marca - - Toggle this cue type between normal cue and saved loop - Alterna el tipo de esta cue entre cue normal y bucle guardado + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic izquierdo: usar el tamaño anterior o el del bucle actual como el tamaño de bucle + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic derecho: usar la posición de reproducción actual como final del bucle si se encuentra después de la cue + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Acceso DIrecto #%1 @@ -15688,323 +16193,363 @@ Carpeta: %2 + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear &nueva Playlist - + Create a new playlist Crear una nueva lista de reproducción - + Ctrl+n Ctrl+N - + Create New &Crate Crear un nuevo&cajón - + Create a new crate Crear un nuevo cajón - + Ctrl+Shift+N Ctrl+Mayús+N - - + + &View &Vista - + Auto-hide menu bar Auto-ocultar barra de menú - + Auto-hide the main menu bar when it's not used. Auto-ocultar la barra de menú principal cuando no es utilizada. - + May not be supported on all skins. Puede no estar disponible para todas las apariencias. - + Show Skin Settings Menu Mostrar menú de ajustes de aspecto - + Show the Skin Settings Menu of the currently selected Skin Mostrar la configuración actual del menu de tema - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar seccion del microfono - + Show the microphone section of the Mixxx interface. Muestra la sección de control de micrófono de la interfaz de Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar la Sección de Control de Vinilo - + Show the vinyl control section of the Mixxx interface. Muestra la sección de control de vinilo de la interfaz de Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar el reproductor de preescucha - + Show the preview deck in the Mixxx interface. Muestra el reproductor de preescucha en la interfaz de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Muestra carátulas - + Show cover art in the Mixxx interface. Muestra las carátulas en la interfaz de Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Space Menubar|View|Maximize Library Espacio - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Mostrar Mixxx a pantalla completa - + &Options &Opciones - + &Vinyl Control Control de &vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con codigo de tiempo en bandejas externas para controlar Mixxx - + Enable Vinyl Control &%1 Habilita el Control por Vinilo &%1 - + &Record Mix &Grabar Mezcla - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar transmisión en &vivo - + Stream your mixes to a shoutcast or icecast server Transmite tus mezclas a un servidor shoutcast o icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar Atajos de &Teclado - + Toggles keyboard shortcuts on or off Activa o desactiva los atajos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar la configuración de Mixxx (p.ej.: reproducción, MIDI, controles) - + &Developer &Desarrollador - + &Reload Skin &Recargar apariencia - + Reload the skin Recargar la apariencia - + Ctrl+Shift+R Ctrl+Mayús+R - + Developer &Tools U&tilidades de desarrollador - + Opens the developer tools dialog Abre el cuadro de diálogo de herramientas de desarrollo - + Ctrl+Shift+T Ctrl+Mayús+T - + Stats: &Experiment Bucket Estadísticas: Contadores &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el modo experimental. Recoje estadísticas en los contadores EXPERIMENT. - + Ctrl+Shift+E Ctrl+Mayús+E - + Stats: &Base Bucket Estadísticas: contadores &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el modo base. Recoje estadísticas en los contadores BASE. - + Ctrl+Shift+B Ctrl+Mayús+B - + Deb&ugger Enabled Dep&uración activada - + Enables the debugger during skin parsing Activa el depurador durante el análisis de la máscara - + Ctrl+Shift+D Ctrl+Mayús+D - + &Help Ay&uda - + Show Keywheel menu title Mostrar rueda de notas @@ -16021,74 +16566,74 @@ Carpeta: %2 Exportar biblioteca al formato Engine DJ - + Show keywheel tooltip text Mostrar rueda de notas - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Soporte &comunitario - + Get help with Mixxx Obtener ayuda con Mixxx - + &User Manual Manual de &usuario - + Read the Mixxx user manual. Lea el manual de usuario de Mixxx. - + &Keyboard Shortcuts Atajos de &Teclado - + Speed up your workflow with keyboard shortcuts. Trabaja más rápidamente usando los atajos de teclado. - + &Settings directory &Directorio de configuración - + Open the Mixxx user settings directory. Abre el directorio de configuración de usuario de Mixxx. - + &Translate This Application &Traducir esta aplicación - + Help translate this application into your language. Ayude a traducir esta aplicación a su idioma. - + &About &Acerca de - + About the application Acerca de la aplicación @@ -16096,25 +16641,25 @@ Carpeta: %2 WOverview - + Passthrough Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Listo para reproducir, analizando... - - + + Loading track... Text on waveform overview when file is cached from source Cargando pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizando... @@ -16123,25 +16668,13 @@ Carpeta: %2 WSearchLineEdit - - Clear input - Clear the search bar input field - Borrar el texto - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input Borrar el texto @@ -16152,93 +16685,87 @@ Carpeta: %2 Buscar... - + Clear the search bar input field Limpia el campo de entrada de la barra de búsqueda - - Enter a string to search for - Introducir el texto a buscar + + Return + Volver - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operadores como bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Para más información vea el Manual de Usuario> Biblioteca Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Atajo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Poner el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retroceso + + Additional Shortcuts When Focused: + - Shortcuts - Atajos + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Volver + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Activa la búsqueda antes del tiempo de espera de "búsqueda mientras escribe" o salte a la vista de pistas después + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Espacio - + Toggle search history Shows/hides the search history entries Alternar historial de búsqueda - + Delete or Backspace Borrar o Retorno - - Delete query from history - Borrar Consulta del Historial - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Salir de la busqueda + + Delete query from history + Borrar Consulta del Historial @@ -16322,625 +16849,640 @@ Carpeta: %2 WTrackMenu - + Load to Cargar en - + Deck Plato - + Sampler Reproductor de muestras - + Add to Playlist Añadir a la lista de reproducción - + Crates Cajas - + Metadata Metadatos - + Update external collections Actualizar colecciones externas - + Cover Art Portada - + Adjust BPM Ajustar BPM - + Select Color Seleccionar color - - + + Analyze Analizar - - + + Delete Track Files Borrar Archivos de Pistas - + 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 lista de DJ Automático (reemplazar) - + Preview Deck Reproductor de preescucha - + Remove Quitar - + Remove from Playlist Eliminar de la lista de reproducción - + Remove from Crate Eliminar de la caja - + Hide from Library Ocultar de la biblioteca - + Unhide from Library Volver a mostrar en la biblioteca - + Purge from Library Eliminar de la biblioteca - + Move Track File(s) to Trash Mover archivo(s) de seguimiento a la papelera - + Delete Files from Disk Borrar Archivos del Disco - + Properties Propiedades - + Open in File Browser Abrir en el explorador de archivos - + Select in Library Selecciona en Biblioteca - + Import From File Tags Importar de los metadatos del fichero - + Import From MusicBrainz Importar de MusicBrainz - + Export To File Tags Exportar a metadatos del fichero - + BPM and Beatgrid BPM y cuadrícula de tempo - + Play Count Reproducciones - + Rating Calificación - + Cue Point Punto CUE - - + + Hotcues Hotcues - + Intro - + Intro - + Outro - + Outro - + Key Clave - + ReplayGain Reproducir otra vez - + Waveform Forma de onda - + Comment Comentario - + All Todos - + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Sort hotcues by position Ordenar hotcues por posición - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Desplazar la cuadrícula de tiempo medio beat - + Reanalyze Reanalizar - + Reanalyze (constant BPM) Reanalizar (BPM constante) - + Reanalyze (variable BPM) Reanalizar (BPM variable) - + Update ReplayGain from Deck Gain Actualizar ReplayGain desde la Ganancia de Plato - + Deck %1 Deck %1 - + Importing metadata of %n track(s) from file tags Importación de metadatos de %n pista a partir de las etiquetas del archivoImportación de metadatos de %n pistas a partir de las etiquetas de los archivosImportación de metadatos de %n pista(s) a partir de las etiquetas del archivo - + Marking metadata of %n track(s) to be exported into file tags Haciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivos - - + + 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 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: Se ha producido un error desconocido al crear la lista de reproducción: - + Add to New Crate Añadir a nueva caja - + Scaling BPM of %n track(s) Escalando BPM de %n pista(s)Escalando BPM de %n pista(s)Escalando BPM de %n pista(s) - + Undo BPM/beats change of %n track(s) Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s) - + Locking BPM of %n track(s) Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s) - + Unlocking BPM of %n track(s) Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s) - + Setting rating of %n track(s) Definiendo evaluación de %n pistaDefiniendo evaluación de %n pistasDefiniendo evaluación de %n pista(s) - + Setting color of %n track(s) configuración de color de %n pista(s)configuración de color de %n pista(s)configuración de color de %n pista(s) - + Resetting play count of %n track(s) Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s) - + Resetting beats of %n track(s) Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s) - + Clearing rating of %n track(s) Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s) - + Clearing comment of %n track(s) Borrando comentarios de %n pistaBorrando comentarios de %n pistasBorrando comentarios de %n pista(s) - + Removing main cue from %n track(s) Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s) - + Removing outro cue from %n track(s) Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s) - + Removing intro cue from %n track(s) Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s) - + Removing loop cues from %n track(s) Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s) - + Removing hot cues from %n track(s) Removiendo los hot cues de %n pista(s)Removiendo los hot cues de %n pista(s)Removiendo los accesos directos de %n pista(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Ordenando hotcues de %n pista por posición (removiendo desfases)Ordenando hotcues de %n pistas por posición (removiendo desfases)Ordenando hotcues de %n pistas(s) por posición (removiendo desfases) - + Sorting hotcues of %n track(s) by position Ordenando hotcues de %n pista por posiciónOrdenando hotcues de %n pistas por posiciónOrdenando hotcues de %n pista(s) por posición - + Resetting keys of %n track(s) Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s) - + Resetting replay gain of %n track(s) Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s) - + Resetting waveform of %n track(s) Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s) - + Resetting all performance metadata of %n track(s) Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s) - + Move these files to the trash bin? ¿Mover estos archivos a la papelera? - + Permanently delete these files from disk? ¿Eliminar permanentemente estos archivos del disco? - - + + This can not be undone! ¡Esto no puede ser revertido! - + Cancel Cancelar - + Delete Files Eliminar archivos - + Okay Okey - + Move Track File(s) to Trash? ¿Mover los archivos de seguimiento a la papelera? - + Track Files Deleted Pistas eliminadas - + Track Files Moved To Trash Archivos de seguimiento movidos a la papelera - + %1 track files were moved to trash and purged from the Mixxx database. %1 archivos de pista fueron movidos a la papelera y purgados de la base de datos de Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 archivos de pistas han sido eliminados y se ha purgado de la base de datos de Mixxx. - + Track File Deleted Archivo de Pista Eliminado - + Track file was deleted from disk and purged from the Mixxx database. El archivo de pista ha sido eliminado del disco y purgado de la base de datos de Mixxx - + The following %1 file(s) could not be deleted from disk No se han podido eliminar del disco los siguientes %1 archivo(s) - + This track file could not be deleted from disk Este archivo de pista no se ha podido borrar del disco - + Remaining Track File(s) Renombrando archivo(s) de pista - + Close Cerrar - + Clear Reset metadata in right click track context menu in library Climpiar - + Loops Bucles - + Clear BPM and Beatgrid Limpia las BPM y la cuadrícula de tiempo - + Undo last BPM/beats change Revertir el último cambio de BPM/pulsaciones - + Move this track file to the trash bin? ¿Mover este archivo de pista a la papelera? - + Permanently delete this track file from disk? ¿Eliminar permanentemente este archivo de pista del disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Todos los platos donde estas pistas hayan sido cargadas se detendrán, y las pistas serán expulsadas. - + All decks where this track is loaded will be stopped and the track will be ejected. Todos los platos donde esta pista haya sido cargada se detendrán, y la pista será expulsada. - + Removing %n track file(s) from disk... Removiendo %n archivo(s) de pista del disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: si estás en la vista Ordenador o Grabación tienes que volver a hacer clic en la vista actual para ver los cambios. - + Track File Moved To Trash Archivo de seguimiento movido a la papelera - + Track file was moved to trash and purged from the Mixxx database. El archivo de seguimiento se ha movido a la papelera y se ha eliminado de la base de datos de Mixxx. - + Don't show again during this session No mostrar nuevamente durante esta sesión - + The following %1 file(s) could not be moved to trash El/los siguiente(s) %1 archivo(s) no pudieron ser movidos a la papelera - + This track file could not be moved to trash Este archivo de pista no se ha podido mover a la papelera + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Setting cover art of %n track(s)Setting cover art of %n track(s)Poniendo portadas de %n pista(s) - + Reloading cover art of %n track(s) Reloading cover art of %n track(s)Reloading cover art of %n track(s)Recarga de portadas de %n pista(s) @@ -16994,37 +17536,37 @@ Carpeta: %2 WTrackTableView - + Confirm track hide Confirmar ocultar pista - + Are you sure you want to hide the selected tracks? ¿Estas seguro de que quieres ocultar las pistas seleccionadas? - + Are you sure you want to remove the selected tracks from AutoDJ queue? ¿Esta seguro de que quiere eliminar las pistas seleccionadas de la cola del AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Estás seguro que quieres eliminar las pistas seleccionada de este cajón? - + Are you sure you want to remove the selected tracks from this playlist? ¿Esta seguro de que desea eliminar las pistas seleccionadas de la lista de reproducción? - + Don't ask again during this session No volver a preguntar durante esta sesión - + Confirm track removal Confirmar eliminación del track @@ -17032,12 +17574,12 @@ Carpeta: %2 WTrackTableViewHeader - + Show or hide columns. Mostrar u ocultar columnas. - + Shuffle Tracks Mezclar pistas @@ -17067,7 +17609,7 @@ Carpeta: %2 decks - platos + decks @@ -17075,22 +17617,22 @@ Carpeta: %2 Biblioteca - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers Controladores - + 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. @@ -17248,6 +17790,24 @@ Pulse Aceptar para salir. La solicitud de la red no ha empezado + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17256,4 +17816,27 @@ Pulse Aceptar para salir. Ningún efecto cargado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_es_CO.qm b/res/translations/mixxx_es_CO.qm index 22242bec2a2e..a1b6d9f05950 100644 Binary files a/res/translations/mixxx_es_CO.qm and b/res/translations/mixxx_es_CO.qm differ diff --git a/res/translations/mixxx_es_CO.ts b/res/translations/mixxx_es_CO.ts index a3d1e37a0674..1f1dfaa6d2fe 100644 --- a/res/translations/mixxx_es_CO.ts +++ b/res/translations/mixxx_es_CO.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Cajas - + Enable Auto DJ Activar Auto DJ - + Disable Auto DJ Desactivar Auto DJ - + Clear Auto DJ Queue Limpiar la cola de Auto DJ - + Remove Crate as Track Source Remover Crate como Fuente de Archivos - + Auto DJ DJ Automatico - + Confirmation Clear Confirmación limpiada - + Do you really want to remove all tracks from the Auto DJ queue? Realmente quieres eliminar todas las pistas de la cola de Auto DJ? - + This can not be undone. ¡Esto no puede ser revertido! - + Add Crate as Track Source Añadir Crate como Fuente de Archivos @@ -223,7 +231,7 @@ - + Export Playlist Exportar lista de reproducción @@ -277,13 +285,13 @@ - + Playlist Creation Failed Fallo la creación de lista de Reproducción - + An unknown error occurred while creating playlist: Se ha producido un error desconocido al crear la lista de reproducción: @@ -298,12 +306,12 @@ ¿Desea realmente eliminar la lista de reproducción<b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca de tiempo @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -362,7 +370,7 @@ Canales - + Color Color @@ -377,7 +385,7 @@ Compositor - + Cover Art Portada @@ -387,7 +395,7 @@ Fecha de Agregado - + Last Played Última reproducción @@ -417,7 +425,7 @@ Clave - + Location Ubicación @@ -427,7 +435,7 @@ Resumen - + Preview Preescucha @@ -467,7 +475,7 @@ Año - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recuperando imagen... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No se puede usar el almacen de contraseñas seguro: el acceso al almacen ha fallado. - + Secure password retrieval unsuccessful: keychain access failed. No se ha podido obtener la contraseña: El acceso al almacen de claves a fallado. - + Settings error Error de configuración - + <b>Error with settings for '%1':</b><br> <b>Error en ajuste en '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Equipo @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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 puede cargar el siguiente archivo porque este es usado por Mixxx u otra aplicación @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx es un software de DJ de código abierto. Para más información, ver: - + Starts Mixxx in full-screen mode Iniciar Mixxx en modo pantalla completa - + Use a custom locale for loading translations. (e.g 'fr') Utiliza un locale personalizado para cargar traducciones. (ej. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directorio principal donde Mixxx debería encontrar sus archivos requeridos (como mapeos MIDI), reemplazando la ubicación de la instalación por defecto. - + Path the debug statistics time line is written to Ruta a donde las estadísticas de depuración de la línea de tiempo son escritas. - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Causa que Mixxx muestre/registre todos los datos del controlador que recibe y las funciones en script que cargue - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! El mapeo del controlador generará advertencias y errores más agresivos cuando detecte un mal uso de las APIs del controlador. Los nuevos mapeos de controladores deben desarrollarse con esta opción activada. - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Activa el modo Desarrollador. Incluye información adicional en el registros, estadísticas de rendimiento, y un menú de Herramientas para Desarrolladores. - + Top-level directory where Mixxx should look for settings. Default is: Directorio de nivel superior en donde Mixxx debería buscar por sus parámetros. Por defecto es : - + Starts Auto DJ when Mixxx is launched. Arranca Auto DJ cuando se inicia Mixxx - + Rescans the library when Mixxx is launched. Re escanea la librería cuando se inicia Mixxx - + Use legacy vu meter Utilizar el vúmetro antiguo - + Use legacy spinny Usar diseño de plato antiguo - - Loads experimental QML GUI instead of legacy QWidget skin - Carga la Interfaz de Usuario QML experimental, en lugar de la skin de legado QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Activa el modo seguro. Desactiva las formas de onda OpenGL y los widgets giratorios de vinilos. Pruebe esta opción si Mixxx no inicia correctamente. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utiliza colores en la salida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ debug - Arriba + Mensajes de Depuración/Desarrollador trace - Arriba + Perfilar mensajes - + 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. Establece el nivel del registro en el cual el búfer de registro es descargado el registro de mixxx. <level> es uno de los valores definidos en --nivel de bitácora de arriba. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Configura el tamaño máximo del archivo mixxx.log en bytes. Usa -1 para ilimitado. Por defecto es 100 MB, como en 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrumpe Mixxx (SIGINT), si un DEBUG_ASSERT evalúa como falso. En un depurador puedes continuar después. - + Overrides the default application GUI style. Possible values: %1 Anula el estilo por defecto de la interfaz de usuario de la aplicación. Valores posibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carga los archivos de música especificados al inicio. Cada archivo que especifiques se cargará en el siguiente deck virtual. - + Preview rendered controller screens in the Setting windows. Previsualizar pantallas renderizadas del controlador en las ventanas de Ajustes @@ -984,2557 +997,2585 @@ trace - Arriba + Perfilar mensajes ControlPickerMenu - + Headphone Output Salida de auriculares - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Vista previa Deck %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restaurar al valor predeterminado - + Effect Rack %1 Rack de Efecto %1 - + Parameter %1 Parámetro %1 - + Mixer Mezclador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mezcla en auriculares (pre/main) - + Toggle headphone split cueing Alternar preescucha dividida de auriculares - + Headphone delay Delay en auriculares - + Transport Transporte - + Strip-search through track Navegación por toda la pista - + Play button Botón de reproducción - - + + Set to full volume Ajustar volumen al máximo - - + + Set to zero volume Ajustar volumen al mínimo - + Stop button Botón de paro - + Jump to start of track and play Saltar al inicio y reproducir - + Jump to end of track Saltar al final - + Reverse roll (Censor) button Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha de auriculares - - + + Mute button Botón para silenciar MUTE - + Toggle repeat mode Conmutar modo repetición - - + + 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 - + Toggle slip mode Conmutar el modo deslizante - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Disminuir BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Disminuir BPM en 0,1 - + BPM tap button Botón de BPM manual - + Toggle quantize mode Conmutar el modo de cuantización - + One-time beat sync (tempo only) Sincronizar por unica vez (sólo el tempo) - + One-time beat sync (phase only) Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal - + Equalizers - + 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 - + Slot %1 Ranura %1 - + Headphone Mix Mezcla de Auriculares - + Headphone Split Cue Salida partida por auriculares - + Headphone Delay Retardo de auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de Retroceso Rápido - + Fast Forward Avance Rápido - + Fast Forward button Botón de Avance Rápido - + Strip Search Navegación de pista - + Play Reverse Reproducir hacia atrás - + Play Reverse button Botón de Reproducción hacia atrás - + Reverse Roll (Censor) Reproducción hacia atrás (Censura) - + Jump To Start Saltar al Inicio - + Jumps to start of track Saltar al inicio de la pista - + Play From Start Reproducir Desde el Comienzo - + Stop Detener - + Stop And Jump To Start Detener y Saltar al Principio - + Stop playback and jump to start of track Detener reproducción y saltar al inicio de la pista - + Jump To End Saltar al final - + Volume Volumen - - - + + + Volume Fader Deslizador de Volumen - - + + Full Volume Volumen máximo - - + + Zero Volume Volumen cero - + Track Gain Ganancia de pista - + Track Gain knob Rueda de ganancia de pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escuchar por auriculares - + Headphone listen (pfl) button Botón de escucha con auriculares (pfl) - + Repeat Mode Modo de repetición - + Slip Mode Modo Slip - - + + Orientation Orientación - - + + Orient Left Orientar a la izquierda - - + + Orient Center Orientar al centro - - + + Orient Right Orientar a la derecha - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Golpeo de BPM - + Adjust Beatgrid Faster +.01 Acelerar la cuadrícula de tempo en +,01 - + Increase track's average BPM by 0.01 Incrementa el BPM promedio de la pista en 0,01 - + Adjust Beatgrid Slower -.01 Ralentizar la cuadrícula de tempo en -,01 - + Decrease track's average BPM by 0.01 Disminuye el BPM promedio de la pista en 0,01 - + Move Beatgrid Earlier Mover la cuadrícula de tempo antes en el tiempo - + Adjust the beatgrid to the left Ajusta la cuadrícula de tempo hacia la izquierda - + Move Beatgrid Later Mover la cuadrícula de tempo después en el tiempo - + Adjust the beatgrid to the right Ajusta la cuadrícula de tempo hacia la derecha - + Adjust Beatgrid Ajustar cuadrícula de tempo - + Align beatgrid to current position Alinea la cuadrícula de tempo a la posición actual - + Adjust Beatgrid - Match Alignment Ajustar la cuadrícula de tempo - Concidir alineación - + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + Quantize Mode Modo Cuantizado - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar pulsaciones al momento - + Sync Tempo One-Shot Sincronizar tempo al momento - + Sync Phase One-Shot 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 - + High EQ Ecualización de Agudos - + Mid EQ Ecualización de Medios - - + + Main Output Salida Principal - + Main Output Balance Balance Salida Principal - + Main Output Delay Retardo Salida Principal - + Main Output Gain Ganancia de la Salida principal - + Low EQ 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 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 - + Show/hide the microphone & auxiliary section Muestra/oculta la sección del micrófono y el auxiliar - + 4 Effect Units Show/Hide Mostrar/ocultar las 4 Unidades de Efectos - + Switches between showing 2 and 4 effect units Cambia entre mostrar 2 y 4 unidades de efectos - + Mixer Show/Hide Mostrar/Ocultar Mezclador - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Mostrar/Ocultar Portadas (Biblioteca) - + Show/hide cover art in the library Muestra/oculta las portadas en la biblioteca - + 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 - + Headphone Gain Ganancia del auricular - + Headphone gain Ganancia de auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque sincronización el tempo (y la fase con la cuantización habilitada), mantenga presionado para habilitar la sincronización permanente. - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unidad de Efectos %1 - + Button Parameter %1 Parámetro %1 del botón. - + Skin Apariencia - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientación - + Main Output gain Ganancia Salida Principal - + Main Output balance Balance Salida Principal - + Main Output delay Retardo (delay) de la Salida principal - + Headphone Auriculares - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprime %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o recupera la pista, es decir, carga la última pista expulsada (de cualquier deck).<br>Pulsa dos veces para cargar la última pista sustituida. En decks vacíos carga la penúltima pista expulsada. - + BPM / Beatgrid BPM / Grilla de tiempo - + Halve BPM Reducir a la mitad los BPM - + Multiply current BPM by 0.5 Multiplica los BPM por 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplica el BPM actual por 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplica el BPM actual por 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplica el BPM actual por 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplica el BPM actual por 1.5 - + Double BPM Dobla los BPM - + Multiply current BPM by 2 Multiplica el BPM actual por 2 - + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Tempo tap button Botón del Tempo Tap - + Move Beatgrid Desplaza la grilla de tiempo - + Adjust the beatgrid to the left or right Ajusta la grilla de tiempo a la izquierda o a la derecha - + Move Beatgrid Half a Beat Desplaza la cuadricula de tiempo medio pulso - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/grilla de tiempo para la pista cargada - + Sync / Sync Lock Sincronizar / Bloqueo Sincronización - + Internal Sync Leader Sincronización Líder Interno - + Toggle Internal Sync Leader Conmutar el modo Sincronización Líder Interno - - + + Internal Leader BPM BPM Líder Interno - + Internal Leader BPM +1 BPM Líder Interno +1 - + Increase internal Leader BPM by 1 Incrementar BPM líder interno en 1 - + Internal Leader BPM -1 BPM Líder Interno -1 - + Decrease internal Leader BPM by 1 Disminuir BPM líder interno en 1 - + Internal Leader BPM +0.1 BPM Líder Interno +0.1 - + Increase internal Leader BPM by 0.1 Incrementar BPM líder interno en 0.1 - + Internal Leader BPM -0.1 BPM Líder Interno -0.1 - + Decrease internal Leader BPM by 0.1 Disminuir BPM Líder Interno en 0.1 - + Sync Leader Líder de Sicronización - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modo de Sicronización 3-State Toggle / Indicador (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Decrease Speed (Fine) Reducir velocidad (fino) - + Pitch (Musical Key) Tono (Clave Musical) - + Increase Pitch Incrementar Tono - + Increases the pitch by one semitone Incrementar el tono por un semitono - + Increase Pitch (Fine) Incrementar Tono (Fino) - + Increases the pitch by 10 cents Incrementa el tono por 10 céntimos - + Decrease Pitch Decrementar Tono - + Decreases the pitch by one semitone Decrementa el tono por un semitono - + Decrease Pitch (Fine) Decrementar Tono (Fino) - + Decreases the pitch by 10 cents Decrementa el tono por 10 céntimos - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Cambiar puntos cue antes - + Shift cue points 10 milliseconds earlier Cambiar puntos marcado 10 milisegundos antes - + Shift cue points earlier (fine) Desplaza el punto cue hacia atrás (fino) - + Shift cue points 1 millisecond earlier Desplaza los puntos cue 1 milisegundo atrás - + Shift cue points later Cambiar puntos marcado después - + Shift cue points 10 milliseconds later Cambiar puntos marcado 10 milisegundos después - + Shift cue points later (fine) Cambiar puntos marcado después (fino) - + Shift cue points 1 millisecond later Cambiar puntos marcado 1 milisegundo después - - + + Sort hotcues by position Ordenar hotcues por posición - - + + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Hotcues %1-%2 Accesos Directos %1-%2 - + Intro / Outro Markers Marcadores de Entrada / Salida - + Intro Start Marker Marcador Inicial de Entrada - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + intro start marker marcador inicial de entrada - + intro end marker Marcador final de entrada - + outro start marker marcador inicial de salida - + outro end marker marcador final de salida - + Activate %1 [intro/outro marker Activa %1 - + Jump to or set the %1 [intro/outro marker Saltar a o poner el %1 - + Set %1 [intro/outro marker Poner %1 - + Set or jump to the %1 [intro/outro marker Establecer o saltar a %1 - + Clear %1 [intro/outro marker Limpiar %1 - + Clear the %1 [intro/outro marker Limpiar el %1 - + if the track has no beats the unit is seconds si la pista no tiene pulsaciones la unidad es segundos - + 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 %1 Beats set from its end point Bucle de %1 pulsaciones desde su punto final - + Loop Roll %1 Beats set from its end point Definir serie de bucles de %1 pulsaciones desde su punto final - + Create %1-beat loop with the current play position as loop end Crea un bucle de 1%-beat con la posición de reproducción actual como final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Crea un redoble de bucle temporal de %1-pulsos con la posición de reproducción actual como final del bucle - + Loop Beats Bucle de pulsos - + Loop Roll Beats Redoble de bucle de pulsos - + Go To Loop In Ir al Loop de entrada - + Go to Loop In button Ir al botón Loop de entrada - + Go To Loop Out Ir al Loop de salida - + Go to Loop Out button Ir al botón Loop de salida - + 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 Salto de pulso - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica qué marcadores de bucle permanecen estáticos al ajustar el tamaño o es ajustado según la posición actual - + Beat Jump / Loop Move Forward Salto de pulso / Bucle hacia adelante - + Beat Jump / Loop Move Backward Salto de pulso / Bucle hacia atrás - + Loop Move Forward Bucle hacia adelante - + Loop Move Backward Bucle en reversa - + Remove Temporary Loop Remueve el bucle temporal - + Remove the temporary loop Remueve el bucle temporal - + 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. - + Sort focused column Ordenar columna enfocada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la celda que está enfocada, equivale a hacer click en su encabezado - + 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 Cargar Pista y Reproducir - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar) - + Replace Auto DJ Queue with selected tracks Reemplaza la cola de Auto DJ con las pistas seleccionadas - + Select next search history Selecciona el siguiente historial de búsqueda - + Selects the next search history entry Selecciona la siguiente entrada del historial de búsqueda - + Select previous search history Selecciona el historial de búsqueda anterior - + Selects the previous search history entry Selecciona la entrada previa del historial de búsqueda - + Move selected search entry Mover entrada de búsqueda seleccionada - + Moves the selected search history item into given direction and steps Mueve el elemento de la búsqueda histórica seleccionado en la dirección dada y pasa - + Clear search Eliminar búsqueda - + Clears the search query Limpia la búsqueda - - + + Select Next Color Available Selecciona el próximo color disponible - + Select the next color in the color palette for the first selected track Selecciona el próximo color en la paleta de colores para la primera pista seleccionada - - + + Select Previous Color Available Selecciona el anterior color disponible - + Select the previous color in the color palette for the first selected track Selecciona el color anterior en la paleta de colores para la primera pista seleccionada - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Asignación de la Unidad de Efectos - + 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 Valor del parámetro del botón - + 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 DJ Automatico - + Auto DJ Shuffle Auto DJ Aleatorio - + Auto DJ Skip Next Quitar la siguiente en Auto DJ - + Auto DJ Add Random Track Añade una pista aleatoria al Auto DJ - + Add a random track to the Auto DJ queue Añade una pista aleatoria a la fila del Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostrar/Ocultar Micrófono y Auxiliar - + Waveform Zoom Reset To Default Reestablece el zoom de la forma de onda - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restablece el nivel de zoom de la forma de onda al valor por defecto seleccionado en Preferencias > Formas de onda - + Select the next color in the color palette for the loaded track. Selecciona el próximo color en la paleta de colores para la pista cargada. - + Select previous color in the color palette for the loaded track. Selecciona el color anterior en la paleta de colores para la pista cargada. - + Navigate Through Track Colors Navegar a través de los colores de las pistas - + Select either next or previous color in the palette for the loaded track. Selecciona cualquiera de los colores siguientes o anteriores en la paleta de colores para la pista cargada. - + Start/Stop Live Broadcasting Inicia/Detiene Transmisión En Vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Inicia/Detiene la grabación de tu mezcla. - - + + + Deck %1 Stems + + + + + Samplers Muestreadores / 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) Mostrar/ocultar carátulas (en Decks) - + Show/hide cover art in the main decks Mostrar/ocultar carátulas en los platos principales. - + 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) Mostrar/ocultar los vinilos giratorios (todos los platos) - + Show/Hide all spinnies Mostrar/ocultar todos los giradores - + Toggle Waveforms Alternar formas de onda - + Show/hide the scrolling waveforms. Mostrar/ocultar las formas de onda deslizantes - + 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 Agregar una estrella - + Increase the track rating by one star Incrementa la puntuación de la pista en una estrella - + Star Rating Down Quitar una estrella - + Decrease the track rating by one star Reduce la puntuación de la pista en una estrella @@ -3547,6 +3588,159 @@ trace - Arriba + Perfilar mensajes Desconocido + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + You can ignore this error for this session but you may experience erratic behavior. Puedes ignorar este error durante esta sesión, pero podrías experimentar problemas impredecibles. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Error del mapa de controlador - + The mapping for your controller "%1" is not working properly. El mapa de tu controlador "%1" no funciona correctamente. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3682,27 +3876,27 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema del archivo del mapa de controlador - + The mapping for controller "%1" cannot be opened. El mapa del controlador "%1" no puede ser abierto. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + File: Archivo: - + Error: Error: @@ -3735,7 +3929,7 @@ trace - Arriba + Perfilar mensajes - + Lock Bloquear @@ -3765,7 +3959,7 @@ trace - Arriba + Perfilar mensajes Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: @@ -3782,22 +3976,22 @@ trace - Arriba + Perfilar mensajes 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 @@ -3807,28 +4001,28 @@ trace - Arriba + Perfilar mensajes Haz una caja para tu próximo concierto, para tus temas electrohouse favoritos o para tus temas más solicitados. - + Confirm Deletion Confirmar Borrado - - - + + + 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) - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) @@ -3849,17 +4043,17 @@ trace - Arriba + Perfilar mensajes Los cajones permiten organizar tu música como tu quieras! - + Do you really want to delete crate <b>%1</b>? ¿Quieres eliminar la caja <b>%1</b>? - + 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. @@ -3954,12 +4148,12 @@ trace - Arriba + Perfilar mensajes Antiguos colaboradores - + Official Website Sitio web oficial - + Donate Donar @@ -4788,123 +4982,140 @@ Esto podría deberse a que estás usando una skin antigua y este control ya no e DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acción fallida - + You can't create more than %1 source connections. No se pueden crear más de %1 fuentes de emisión en vivo. - + Source connection %1 Fuente de emisión %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Se requiere almenos una fuente de emisión. - + Are you sure you want to disconnect every active source connection? ¿Seguro que deseas desconectar todas las fuentes de emisión activas? - - + + Confirmation required Se necesita confirmación - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' tiene el mismo punto de montaje Icecast que '%2'. No se puede establecer dos conexiones simultáneas al mismo servidor, con el mismo punto de montaje. - + Are you sure you want to delete '%1'? ¿Deseas realmente borrar '%1'? - + Renaming '%1' Renombrando '%1' - + New name for '%1': Nuevo nombre para '%1': - + Can't rename '%1' to '%2': name already in use No se puede renombrar '%1' a '%2': el nombre está en uso @@ -4917,27 +5128,27 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Preferencias de Transmision en Vivo - + Mixxx Icecast Testing Prueba de «Icecast» de Mixxx - + Public stream Transmisión pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nombre de la emisión - + 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. Debido a errores en algunos clientes de transmisión, actualizar dinámicamente los metadatos Ogg Vorbis puede causar interferencias y desconexiones a los oyentes. Marque esta casilla para actualizar los metadatos de todos modos. @@ -4977,67 +5188,72 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Opciones para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinámicamente los metadatos Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Sitio web - + Live mix Mezcla en vivo - + IRC IRC - + Select a source connection above to edit its settings here Selecciona en la lista la fuente de emisión que desees editar - + Password storage Guardado de contraseñas - + Plain text Texto simple - + Secure storage (OS keychain) Almacen seguro (almacen de llaves del SO) - + Genre Genero - + Use UTF-8 encoding for metadata. Usar codificación UTF-8 para los metadatos. - + Description Descripción @@ -5063,42 +5279,42 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Canales - + Server connection Conexión al servidor - + Type Tipo - + Host Servidor - + Login Identificación - + Mount Montar - + Port Puerto - + Password Contraseña - + Stream info Información de la emisión @@ -5108,17 +5324,17 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Metadatos - + Use static artist and title. Usar texto de artista y título fijos - + Static title Titulo fijo - + Static artist Artista fijo @@ -5177,13 +5393,14 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis DlgPrefColors - - + + + By hotcue number Por número de hotcue - + Color Color @@ -5228,17 +5445,22 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Cuando se han habilitado los colores de nota, Mixxx mostrará una pista de color asociada con cada nota. - + Enable Key Colors Activar colores de nota - + Key palette Paleta de notas @@ -5246,114 +5468,114 @@ associated with each key. DlgPrefController - + Apply device settings? ¿Aplicar la configuración del dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? La configuración debe ser aplicada antes de iniciar el asistente de aprendizaje. ¿Aplicar la configuración y continuar? - + None Ningún - + %1 by %2 %1 por %2 - + Mapping has been edited Se ha editado el mapeo - + Always overwrite during this session Siempre sobreescribir durante esta sesión - + Save As Guardar como - + Overwrite Sobreescribir - + Save user mapping Guardar mapeo del usuario - + Enter the name for saving the mapping to the user folder. Ingresar el nombre del archivo de mapeo para guardarlo en la carpeta de usuario. - + Saving mapping failed Ha fallado el guardado del mapeo - + A mapping cannot have a blank name and may not contain special characters. El nombre del mapeo no puede estar en blanco, ni contener caracteres especiales. - + A mapping file with that name already exists. Ya existe un archivo de mapeo con el mismo nombre. - + Do you want to save the changes? Quieres guardar los cambios? - + Troubleshooting Solución de problemas - + <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>Si usas este mapeo, tu controlador podría no funcionar correctamente. Por favor selecciona otro mapeo o deshabilita el controlador. </b></font><br><br>Este mapeo fue diseñado para un nuevo Motor de Controladores de Mixxx, y no puede ser usado con tu instalación actual.<br>Tu instalación de Mixxx posee la version del Motor de Controladores %1. Este mapeo requiere una versión del Motor de controladores >=%2.<br><br>Para más información visita la wiki de <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versiones del Motor de Controladores</a>. - + Mapping already exists. El mapeo ya existe. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ya existe en la carpeta de mapeos de usuario. <br>¿Deseas sobreescribir o guardar con otro nombre? - + Clear Input Mappings Limpiar mapeos de Entrada - + Are you sure you want to clear all input mappings? Está seguro de querer eliminar todos los mapeos de entrada? - + Clear Output Mappings Limpiar mapeos de Salida - + Are you sure you want to clear all output mappings? Está seguro de querer eliminar todos los mapeos de salida? @@ -5371,100 +5593,105 @@ Apply settings and continue? Habilitado - + + Refresh mapping list + + + + Device Info Información del dispositivo - + Physical Interface: Interfase física - + Vendor name: Nombre del fabricante: - + Product name: Nombre del producto: - + Vendor ID ID del proveedor - + VID: VID: - + Product ID ID del producto - + PID: PID: - + Serial number: Número de serie: - + USB interface number: Número de interfaz USB - + HID Usage-Page: Página de uso HID - + HID Usage: Uso de HID: - + Description: Descripción: - + Support: Soporte: - + Screens preview Previsualizar pantallas - + Input Mappings Mapeos de Entrada - - + + Search Buscar - - + + Add Añadir - - + + Remove Quitar @@ -5484,17 +5711,17 @@ Apply settings and continue? Cargar Mapeo: - + Mapping Info Información de mapeo - + Author: Autor: - + Name: Nombre: @@ -5504,28 +5731,28 @@ Apply settings and continue? Asistente de aprendizaje (sólo MIDI) - + Data protocol: Protocolo de datos: - + Mapping Files: Archivos de mapeo - + Mapping Settings Configuración de mapeo - - + + Clear All Limpiar todo - + Output Mappings Mapeos de Salida @@ -5540,21 +5767,21 @@ 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 utiliza "mapeos" para conectar mensajes desde tu controlador a los controles en Mixxx. Si no ves un mapeo de tu controlador en el menu "Cargar Mapeo" cuando hagas click en tu controlador en la barra deslizable izquierda, pudieras descargar uno en línea desde %1. Coloca los archivos XML (.xml) y Javascript (.js) en la "Carpeta de Mapeo del Usuario" luego reinicia Mixxx. Si descargaste un mapeo en un archivo ZIP, extrae los archivos XML y Javascript del archivo ZIP a tu "Carpeta de Mapeo del Usuario" y luego reinicia 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guía de Hardware de DJ de Mixxx - + MIDI Mapping File Format Formato de archivo de mapeos MIDI - + MIDI Scripting with Javascript Programación de Scripts MIDI con Javascript @@ -5684,6 +5911,16 @@ Apply settings and continue? Multi-Sampling Multi-Muestreo + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5713,137 +5950,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sin parpadeo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (grueso) - + s%1zz - Seconds s%1zz - Segundos - + sss%1zz - Seconds (Long) sss%1zz - Segundos (Duración) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosegundos - + Intro start Inicio de la entrada - + Main cue Marcador principal - + First hotcue Primera hotcue - + First sound (skip silence) Primer sonido (saltar silencio) - + Beginning of track Principio de la pista - + Reject Rechazar - + Allow, but stop deck Permitir, pero detener deck - + Allow, play from load point Permitir, reproducir desde el punto de carga - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6298,62 +6535,62 @@ Siempre puedes arrastrar y tirar pistas en la pantalla para clonar una plataform 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 - + Disabled Desactivado - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx debe ser reiniciado para que el nuevo ajuste de locale, escalado o multi-muestreo tenga efecto. @@ -6390,7 +6627,7 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Analyzer Settings - + Configuración del Analizador @@ -6581,67 +6818,97 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Ver el manual para más detalles - + 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? 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 - + Item is not a directory or directory is missing El ítem no es un directorio, o el directorio no ha sido encontrado - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6690,262 +6957,267 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Re-escanear directorios al inicio - + Audio File Formats Formatos de archivo de sonido - + Track Table View Vista Tabla de Pistas - + Track Double-Click Action: Acción doble-click de Pista: - + BPM display precision: Precisión al mostrar los BPM: - + Session History Historia de la sesión - + Track duplicate distance Duplicar Distancia de Pista - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Cuando reproduces una pista de nuevo, anéxala al historial de la sesión sólo si más de N otras pistas han sido reproducidas mientras tanto. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Historial de lista de reproducciones con menos de N pistas serán borradas<br/><br/>Nota: la limpieza será realizada durante el inicio y el cierre de Mixxx. - + Delete history playlist with less than N tracks Borrar historial de listado de pistas con menos de N pistas - + Library Font: Fuente para Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks Oscurecer pistas ya tocadas - + Track Search Buscar una pista - + Enable search completions Permitir completar búsquedas - + Enable search history keyboard shortcuts Activar los atajos de teclado del historial de búsqueda - + Percentage of pitch slider range for 'fuzzy' BPM search: Porcentaje del rango del deslizador de pitch para búsqueda de BPM "difuso-variable". - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Este rango será utilizado para buscar BPM "difuso-variable" (~bpm:) en la caja de búsqueda, además de la búsqueda de BPM en el menú contextual Pista > Buscar pistas relacionadas - + Preferred Cover Art Fetcher Resolution Resolución preferida del buscador de carátulas - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Obtén carátulas de coverartarchive.com mediante Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" puede referirse a carátulas muy grandes. - + >1200 px (if available) >1200 px (si está disponible) - + 1200 px (if available) 1200 px (si está disponible) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Directorio de configuración - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. El directorio de configuración de Mixxx contiene la base de datos de la biblioteca, varios archivos de configuración, archivos de bitácoras, datos de análisis de pistas, así como mapeos de controladores personalizados. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Edita estos archivos solo si sabes lo que estás haciendo, y solo cuando Mixxx no esté siendo ejecutado. - + Open Mixxx Settings Folder Abrir carpeta de ajustes de Mixxx - + Library Row Height: Alto de la Fila en Biblioteca: - + Use relative paths for playlist export if possible Usar rutas relativas al exportar lista de reproducción cuando sea posible - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincroniza los metadatos de la librería de pistas desde/hacia las etiquetas de archivos - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automáticamente escribe metadatos de las pistas modificadas desde la biblioteca a las etiquetas del archivo y reimporta metadatos desde las etiquetas actualizadas del archivo a la biblioteca - + Synchronize Serato track metadata from/to file tags (experimental) Sincroniza metadatos de la pista de Serato desde/hacia las etiquetas de archivo (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene el color de la pista, la cuadrícula del ritmo, bloqueo de bpm, puntos de marcado, y bucles sincronizados con las etiquetas de archivo SERATO_MARKERS/MARKERS2.<br/><br/>ADVERTENCIA: Habilitando esta opción también habilita la reimportación de metadatos de Serato después de que los archivos han sido modificados afuera de Mixxx. Al reimportar metadatos existentes en Mixxx se remplaza con los metadatos encontrados en las etiquetas de archivos. Los Metadatos personalizados no incluidos en las etiquetas de archivos como los colores de los bucles se perderán. - + Edit metadata after clicking selected track Editar metadatos al clicar en una pista seleccionada - + Search-as-you-type timeout: Tiempo de espera de búsqueda mientras escribe: - + ms ms - + Load track to next available deck Carga la pista en el siguiente plato disponible - + External Libraries Bibliotecas externas - + You will need to restart Mixxx for these settings to take effect. Usted tendrá que reiniciar Mixxx para que esta configuración surta efecto. - + Show Rhythmbox Library Mostrar la librería de Rhythmbox - + Track Metadata Synchronization / Playlists Metadatos de sincronización de pistas / Listas de reproducción - + Add track to Auto DJ queue (bottom) Añadir pista al final de la cola de Auto DJ - + Add track to Auto DJ queue (top) Añadir pista a la cola de Auto DJ (al comienzo) - + Ignore Ignorar - + Show Banshee Library Mostrar la bibiloteca de Banshee - + Show iTunes Library Mostrar la librería de ITunes - + Show Traktor Library Mostrar la librería de Traktor - + Show Rekordbox Library Mostrar la Librería de Rekordbox - + Show Serato Library Mostrar la Librería de Serato - + All external libraries shown are write protected. Todas las bibliotecas mostradas estan protegidas frente a escritura. @@ -7290,33 +7562,33 @@ y te permite ajustar su pitch para lograr mezclas armónicas. DlgPrefRecord - + Choose recordings directory Elegir la carpeta para las grabaciones - - + + Recordings directory invalid Directorio de grabaciones inválido - + Recordings directory must be set to an existing directory. El directorio de Grabaciones debe configurarse a un directorio existente. - + Recordings directory must be set to a directory. El directorio de Grabaciones debe configurarse a un directorio. - + Recordings directory not writable Directorio de Grabaciones no escribible - + You do not have write access to %1. Choose a recordings directory you have write access to. No tienes acceso de escritura en %1. Escoge un directorio de grabación en el que tengas acceso de escritura. @@ -7334,43 +7606,55 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Examinar… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidad - + Tags Etiquetas - + Title Título - + Author Autor - + Album Album - + Output File Format Formato de fichero de salida - + Compression Compresión - + Lossy Con pérdidas @@ -7385,12 +7669,12 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Directorio: - + Compression Level Nivel de compresión - + Lossless Sin pérdidas @@ -7523,172 +7807,177 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Por Defecto (mas retardo) - + Experimental (no delay) Experimental (sin retardo) - + Disabled (short delay) Desactivado (poco retardo) - + Soundcard Clock Reloj de la tarjeta de sonido - + Network Clock Reloj de red - + Direct monitor (recording and broadcasting only) Monitorización directa (solo grabación y emisión en vivo) - + Disabled Desactivado - + Enabled Habilitado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Para activar el Planificador en tiempo real (actualmente desactivado), mira %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 muestra una lista de tarjetas de sonido y controladores que podrías considerar para utilizar con Mixxx - + Mixxx DJ Hardware Guide Guía de Hardware DJ de Mixxx - + + Find details in the Mixxx user manual + + + + Information Información - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx debe ser reiniciado para que el cambio de ajuste de RubberBand multi-hilo tenga efecto. - + auto (<= 1024 frames/period) auto (<= 1024 fotogramas/período) - + 2048 frames/period 2048 fotogramas/período - + 4096 frames/period 4096 fotogramas/período - + Are you sure? ¿Estás seguro(a)? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Distribuir los canales estéreo en canales mono para su procesamiento en paralelo podría resultar en la pérdida de la compatibilidad mono y una imagen estéreo difusa. No se recomienda al transmitir en vivo o al grabar. - + Are you sure you wish to proceed? ¿Realmente deseas continuar? - + No No - + Yes, I know what I am doing Sí, se lo que estoy haciendo - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. La entrada de micrófono está desincronizada respecto la grabación y emisión comparado con la señal que se oye. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mide la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Refer to the Mixxx User Manual for details. Para más detalles, lea el manual de usuario de Mixxx. - + Configured latency has changed. La latencia configurada ha cambiado. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Vuelve a medir la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Realtime scheduling is enabled. La planificación en Tiempo Real está activada. - + Main output only Solo Salida principal - + Main and booth outputs Salidas principal y de cabina - + %1 ms %1 ms - + Configuration error Error de configuración @@ -7755,17 +8044,22 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de vaciado del búfer - + 0 0 @@ -7790,12 +8084,12 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Entrada - + System Reported Latency Latencia reportada por el sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente su búfer de audio si el contador de desbordamiento está aumentando o escuchas chasquidos durante la reproducción. @@ -7825,7 +8119,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Diagnóstico y sugerencias - + Downsize your audio buffer to improve Mixxx's responsiveness. Disminuya su búfer de audio para mejorar la velocidad de respuesta de Mixxx. @@ -7872,7 +8166,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Configuración de Vinilo - + Show Signal Quality in Skin Mostrar Calidad de Señal en la apariencia @@ -7908,46 +8202,51 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y + Pitch estimator + + + + Deck 1 Plato 1 - + Deck 2 Plato 2 - + Deck 3 Plato 3 - + Deck 4 Plato 4 - + Signal Quality Calidad de Señal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Con tecnología de xwax - + Hints Sugerencias - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione los dispositivos de sonico para el Control por Vinilo en el Panel de Hardware de Sonido. @@ -7955,58 +8254,58 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + Top Arriba - + Center Centrado - + Bottom Abajo - + 1/3 of waveform viewer options for "Text height limit" 1/3 de visualización de forma de onda - + Entire waveform viewer Visor de forma de onda completa - + 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. @@ -8024,22 +8323,17 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Tasa de fotograma - + OpenGL Status Estado de OpenGL - + Displays which OpenGL version is supported by the current platform. Muestra qué versión de OpenGL es soportada por la plataforma actual. - - Normalize waveform overview - Normalizar vista de forma de onda - - - + Average frame rate Refresco de pantalla promedio @@ -8055,7 +8349,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Nivel de zoom por defecto - + Displays the actual frame rate. Muestra la tasa de refresco actual. @@ -8090,7 +8384,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Graves - + Show minute markers on waveform overview Mostrar marcadores de minutos en la vista de forma de onda @@ -8135,7 +8429,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Ganancia visual global - + 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. La vista general de forma de onda muestra la forma de onda de la pista entera. @@ -8204,22 +8498,22 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se pt - + Caching Almacenamiento en caché - + 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 almacena en caché las formas de onda de las pistas en el disco la primera vez que se carga una pista. Esto reduce el uso de la CPU cuando se está jugando en vivo, pero requiere espacio en disco adicional. - + Enable waveform caching Habilitar el almacenamiento en caché de forma de onda - + Generate waveforms when analyzing library Generar formas de onda cuando se analiza la biblioteca @@ -8235,7 +8529,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se - + Type Tipo @@ -8265,12 +8559,58 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Mover the marcador de posición en la pista a la izquierda, derecha o centro (Defabrica). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Visualizar formas de onda - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Las formas de onda claras en caché @@ -8762,7 +9102,7 @@ Carpeta: %2 BPM: - + Location: Ubicación: @@ -8777,27 +9117,27 @@ Carpeta: %2 Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Ajusta el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ajusta el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostrar los BPMs de la pista seleccionada. @@ -8852,49 +9192,49 @@ Carpeta: %2 Genero - + ReplayGain: Ganancia de repetición: - + Sets the BPM to 200% of the current value. Ajusta el BPM al 200% del valor actual. - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + Clear BPM and Beatgrid Borrar el BPM y la cuadrícula de tempo - + Move to the previous item. "Previous" button Mover al elemento anterior. - + &Previous &Previo - + Move to the next item. "Next" button Mover al siguiente elemento. - + &Next &Siguiente @@ -8919,12 +9259,12 @@ Carpeta: %2 Color - + Date added: Fecha de adición: - + Open in File Browser Abrir en el explorador de archivos @@ -8934,12 +9274,17 @@ Carpeta: %2 Tasa de muestreo: - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8948,90 +9293,90 @@ Utiliza este ajuste si tus pistas tienen un tempo constante (ej. la mayoría de A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en pistas que tienen cambios de tempo. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Ajusta el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Incrementa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Incrementa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee siguiendo el ritmo para establecer el BPM. - + Tap to Beat Pulse siguiendo el ritmo - + Hint: Use the Library Analyze view to run BPM detection. Truco: Use la vista de análisis en la biblioteca para ejecutar la detección de BPM. - + Save changes and close the window. "OK" button Guardar cambios y cerrar la ventana. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar cambios y cerrar. - + Save changes and keep the window open. "Apply" button Guardar cambios y mantener abierta la ventana. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) (sin color) @@ -9188,7 +9533,7 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en &OK - + (no color) (sin color) @@ -9390,27 +9735,27 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Rubberband R3 (near-hi-fi quality) Banda elástica R3 (calidad casi alta fidelidad) - + Unknown, using Rubberband (better) Desconocido, utilizando Banda elástica (mejor) - + Unknown, using Soundtouch Desconocido, usando Soundtouch @@ -9625,15 +9970,15 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en 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 @@ -9645,57 +9990,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9703,37 +10048,37 @@ de OpenGL. Library - + This or a parent directory is already in your library. Este directorio o su superior ya se encuentra en tu biblioteca. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Este directorio o el indicado no existe o es inaccesible. Cancelando la operación para evitar inconsistencias de biblioteca. - - + + This directory can not be read. Este directorio no puede ser leído. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ha ocurrido un error desconocido. Cancelando la operación para evitar inconsistencias de biblioteca - + Can't add Directory to Library No se pudo agregar el directorio a la biblioteca - + Could not add <b>%1</b> to your library. %2 @@ -9742,27 +10087,27 @@ Cancelando la operación para evitar inconsistencias de biblioteca %2 - + Can't remove Directory from Library No se pudo remover el directorio de la biblioteca. - + An unknown error occurred. Ha ocurrido un error desconocido. - + This directory does not exist or is inaccessible. Este directorio no existe o es inaccesible. - + Relink Directory Reenlazar directorio - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9774,22 +10119,22 @@ Cancelando la operación para evitar inconsistencias de biblioteca 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. @@ -9927,12 +10272,12 @@ Do you really want to overwrite it? Pistas Ocultas - + Export to Engine DJ Exportar a Engine DJ - + Tracks Pistas @@ -9940,37 +10285,37 @@ 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 @@ -9980,213 +10325,213 @@ Do you really want to overwrite it? apariencia - + Allow Mixxx to hide the menu bar? ¿Permitir a Mixxx ocultar la barra de menú? - + Hide Always show the menu bar? Ocultar - + Always show Mostrar siempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra de menú de Mixxx ha sido ocultada y se puede alternar presionando la tecla <b>Alt</b>. <br><br>Haz clic en <b>%1</b> para aceptar. <br><br>Haz clic en <b>%2</b> para desactivarlo, por ejemplo si usas Mixxx sin un teclado. <br><br>Puedes cambiar este ajuste en cualquier momento en Preferencias -> Interfaz. <br> - + Ask me again Pregúntame de nuevo - - + + 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? No se ha seleccionado un dispositivo de Entrada para este micrófono. ¿Deseas escoger uno ahora? - + There is no input device selected for this auxiliary. Do you want to select an input device? No se ha seleccionado un dispositivo de entrada para este Auxiliar. ¿Deseas escoger uno ahora? - + Scan took %1 El escaneo tomo %1 - + No changes detected. No se han detectado cambios - + %1 tracks in total %1 pistas en total - + %1 new tracks found Encontradas %1 pistas nuevas - + %1 moved tracks detected %1 pistas movidas detectadas - + %1 tracks are missing (%2 total) %1 pistas perdidas (%2 en total) - + %1 tracks have been rediscovered %1 pistas han sido reencontradas - + Library scan finished Escaneo de la biblioteca terminado - + 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 Renderizado directo 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. 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><b>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? @@ -10202,13 +10547,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reproducción @@ -10218,58 +10563,63 @@ Do you want to select an input device? Aleatorizar lista de reproducción - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Las listas de reproducción son listar ordenadas de pistas que te permiten planificar tus sesiones de DJ. - + 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. Podría ser necesario saltar algunas pistas en tu lista de reproducción planificada, o añadir algunas pistas diferentes, con el fin de mantener la energía de tu audiencia. - + 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 @@ -10368,59 +10718,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 @@ -10534,69 +10884,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabina - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier Bus izquierdo - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus derecho - + Invalid Bus + Audio path indetifier Bus inválido - + Deck + Audio path indetifier Plato - + Record/Broadcast + Audio path indetifier Grabación / Emisión en vivo - + Vinyl Control + Audio path indetifier Control de vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de ruta %1 desconocida @@ -10939,47 +11302,49 @@ Si la amplitud es cero, este parámetro permite mover la posición manualmente p Ancho - + Metronome Metrónomo - + + The Mixxx Team Equipo de Mixxx - + Adds a metronome click sound to the stream Añade el sonido de tic tac de un metrónomo a la señal de salida - + BPM BPM - + Set the beats per minute value of the click sound Define las pulsaciones por minuto del tic tac - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved Sincroniza el BPM con el de la pista, si se puede obtener - + + Gain Ganancia - + Set the gain of metronome click sound Configura la ganancia del sonido del metrónomo @@ -11783,14 +12148,14 @@ Todo a la derecha: final del período La grabación OGG no está soportada. La librería OGG/Vorbis podría no inicializarse. - - + + encoder failure falla del codificador - - + + Failed to apply the selected settings. Fallo al aplicar los ajustes seleccionados. @@ -11930,7 +12295,7 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"La cantidad de amplificación aplicada a la señal de audio. A niveles más altos, el audio estará más distorsionado. - + Passthrough Paso @@ -11977,36 +12342,107 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"Ganancia compensatoria automática - - Makeup - Compensación / Makeup + + Makeup + Compensación / Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + El botón Auto Makeup activa la ganancia compensatoria automática +para mantener la señal entrante y saliente tan sonoras como sea posible. + + + + Off + Apagado + + + + On + Encendido + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Límite (Threshold, dBFS) + + + + + Threshold + Límite + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - El botón Auto Makeup activa la ganancia compensatoria automática -para mantener la señal entrante y saliente tan sonoras como sea posible. + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Apagado + + Knee (dB) + - - On - Encendido + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Límite (Threshold, dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Límite + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12038,6 +12474,7 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e Knee (dBFS) + Knee Knee @@ -12048,11 +12485,13 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e La perilla de Knee es utilizada para lograr una curva de compresión redondeada. + Attack (ms) Ataque (ms) + Attack Ataque @@ -12065,11 +12504,13 @@ will set in once the signal exceeds the threshold la compresión una vez que la señal supere el Límite. + Release (ms) Liberación (Release, ms) + Release Release @@ -12100,12 +12541,12 @@ pueden introducir un efecto de "bombeo" y/o distorsión. varios - + built-in nativo - + missing no encontrado @@ -12140,42 +12581,42 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Stem #%1 - + Empty Vacío - + Simple Simple - + Filtered Filtrado - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Agrupado - + Unknown Desconocido @@ -12436,193 +12877,193 @@ pueden introducir un efecto de "bombeo" y/o distorsión. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontró un problema - + Could not allocate shout_t No se pudo asignar shout_t - + Could not allocate shout_metadata_t No se pudo asignar shout_metadata_t - + Error setting non-blocking mode: Error al establecer el modo "sin bloqueo": - + Error setting tls mode: Error de configuracion del "Modo TLS" - + Error setting hostname! ¡Error al establecer el nombre de host! - + Error setting port! ¡Error al establecer el puerto! - + Error setting password! ¡Error al establecer la contraseña! - + Error setting mount! ¡Error al establecer el punto de montaje! - + Error setting username! ¡Error al establecer el nombre de usuario! - + Error setting stream name! ¡Error al establecer el nombre de la emisión! - + Error setting stream description! ¡Error al establecer la descripción de la emisión! - + Error setting stream genre! ¡Error al establecer el género de la emisión! - + Error setting stream url! ¡Error al establecer la URL de la emisión! - + Error setting stream IRC! ¡Error al configurar el flujo IRC! - + Error setting stream AIM! ¡Error al configurar el flujo AIM! - + Error setting stream ICQ! ¡Error al configurar el flujo ICQ! - + Error setting stream public! Error al iniciar la emisión pública! - + Unknown stream encoding format! ¡Formato de codificación de transmisión desconocido! - + Use a libshout version with %1 enabled Usar una versión de libshout con %1 activado - + Error setting stream encoding format! Error ajuste formato de codificación en emisión! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Transmitir a 96 kHz con Ogg Vorbis no está soportado actualmente. Por favor intente una frecuencia de muestreo diferente o cambie a una codificación diferente. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Consulta https://github.com/mixxxdj/mixxx/issues/5701 para más información. - + Unsupported sample rate Tasa de muestreo no soportada - + Error setting bitrate Error al establecer la tasa de bits - + Error: unknown server protocol! ¡Error: protocolo del servidor desconocido! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast solo soporta codificadores MP3 y AAC - + Error setting protocol! ¡Error al establecer el protocolo! - + Network cache overflow Caché de red excedido - + Connection error Error de connexión - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de las fuentes de emisión en vivo ha lanzado este error:<br><b>Error con la fuente '%1':</b><br> - + Connection message Mensaje de conexión - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensaje de la fuente de emisión en vivo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Se ha perdido la conexión al servidor de emisión y han fallado %1 intentos de reconexión. - + Lost connection to streaming server. Se ha perdido la conexión al servidor de emisión - + Please check your connection to the Internet. Comprueba tu conexión a internet. - + Can't connect to streaming server No se puede conectar al servidor de emisión - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12630,7 +13071,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoftwareWaveformWidget - + Filtered Filtrada @@ -12638,23 +13079,23 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoundManager - - + + a device un dispositivo - + An unknown error occurred Ocurrió un error desconocido - + Two outputs cannot share channels on "%1" Dos salidas no pueden usar los mismos canales de %1 - + Error opening "%1" Error al abrir "%1" @@ -12839,7 +13280,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Spinning Vinyl Vinilo virtual @@ -13021,7 +13462,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Cover Art Portada @@ -13211,243 +13652,243 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la ganancia del filtro de graves en cero, mientras está activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Muestra el tempo de la pista cargada, en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Clave - + BPM Tap Golpeo de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el BPM para que coincida con las pulsaciones realizadas. - + Adjust BPM Down Reduce el BPM - + When tapped, adjusts the average BPM down by a small amount. Cuando se pulsa, reduce el BPM promedio un poco. - + Adjust BPM Up Aumenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Cuando se pulsa, aumenta el BPM promedio un poco. - + Adjust Beats Earlier Mueve la cuadrícula un poco antes - + When tapped, moves the beatgrid left by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la izquierda. - + Adjust Beats Later Mueve la cuadrícula un poco después - + When tapped, moves the beatgrid right by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la derecha. - + Tempo and BPM Tap Golpeo de Tempo y BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar la sección de vinilo giratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. Alternar el bloqueo tonal durante la reproducción puede producir una pequeña distorsión de audio. - + Toggle visibility of Loop Controls Cambia la visibilidad de los Controles de Bucles - + Toggle visibility of Beatjump Controls Cambia la visibilidad de los Controles de Salto de Ritmo - + Toggle visibility of Rate Control Alternar visibilidad del control de velocidad - + Toggle visibility of Key Controls Cambia la visibilidad de los Controles de Clave - + (while previewing) (mientras se previsualiza) - + Places a cue point at the current position on the waveform. Coloca un punto de Cue en la posición actual de la forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Detiene la pista en el punto cue, O BIEN va al punto cue y reproduce en soltar (modo CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Establece el punto Cue (Modo Pioneer/Mixxx/Numark), establece el punto Cue y reproduce en soltar (modo CUP) O BIEN hace una preescuha del mismo (Modo Denon). - + Is latching the playing state. Está reteniendo el estado de reproducción. - + Seeks the track to the cue point and stops. Lleva la pista al punto de Cue y para. - + Play Reproducir - + Plays track from the cue point. Reproduce la pista desde el punto Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envía el audio del canal seleccionado a la salida de auriculares, seleccionada en Preferencias -> Hardware de Sonido - + (This skin should be updated to use Sync Lock!) (Esta carátula debería actualizarse para utilizar Bloqueo de Sincronización!) - + Enable Sync Lock Habilitar Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. Pulse para sincronizar el tiempo con otras pistas en reproducción o líder de sincronización. - + Enable Sync Leader Habilitar Sync Lock - + When enabled, this device will serve as the sync leader for all other decks. Cuando está habilitado, este dispositivo servirá como líder de sicronización para todas las otros platos. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Es relevante cuando una pista con tempo dinámico es cargada a un deck líder de sincronización. En ese caso, otros dispositivos sincronizados adoptarán el tempo cambiante. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Cambia la velocidad de reproducción de la pista (afecta tanto el tempo como el tono). Si está habilitado el bloqueo, únicamente afecta al tempo. - + Tempo Range Display Visualizador del rango de tempo - + Displays the current range of the tempo slider. Muestra el rango actual del deslizador de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Se recupera la pista expulsada cuando no hay ninguna pista cargada, es decir, vuelve a cargar la pista que se expulsó en último lugar (de cualquier deck). - + Delete selected hotcue. Elimina la hotcue seleccionada. - + Track Comment Comentario de la pista - + Displays the comment tag of the loaded track. Muestra la etiqueta de comentario de la pista cargada. - + Opens separate artwork viewer. Abre el visualizador separado de carátulas. - + Effect Chain Preset Settings Configuraciones de Preconfiguración de Cadena de Efectos - + Show the effect chain settings menu for this unit. Muestra el menú de las configuraciones de las cadenas de efectos para esta unidad. - + Select and configure a hardware device for this input Selecciona y configura un dispositivo de hardware para esta entrada - + Recording Duration Duración de la grabación @@ -13670,948 +14111,984 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la velocidad de reproducción baja (pequeña cantidad) cuando se activa. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el tempo para coincidir con la frecuencia de pulsaciones. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Rate Tap and BPM Tap Frecuencia de pulsaciones y de BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/cuadrícula de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/Cuadrícula de tiempo para la pista cargada. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/cuadrícula de tiempo - + Tempo and Rate Tap Toques de Tempo y Frecuencia - + Tempo, Rate Tap and BPM Tap Toques de Tempo, Frecuencia y BPM - + Shift cues earlier Cambia marcas antes - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Cambia marcas importadas desde Serato o Rekordbox si están ligeramente desfazadas. - + Left click: shift 10 milliseconds earlier Clic izquierdo: adelantar 10 milisegundos - + Right click: shift 1 millisecond earlier Clic derecho: adelantar 1 milisegundo - + Shift cues later Retrasar cues - + Left click: shift 10 milliseconds later Clic izquierdo: retrasar 10 milisegundos - + Right click: shift 1 millisecond later Clic derecho: retrasar 1 milisegundo - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Arrastra un botón de Hotcue aquí para continuar reproduciendo después de soltar la hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Sugerencia: cambie el modo por defecto de las cues en Preferencias -> Platos. - + Mutes the selected channel's audio in the main output. Silencia el audio del canal seleccionado en la salida principal. - + Main mix enable Activador de mezcla principal - + Hold or short click for latching to mix this input into the main output. Clic sostenido o corto para enganchar, para mezclar esta entrada con la salida principal. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si la hotcue es una cue de bucle, activa el bucle y salta hacia él si se encuentra detrás de la posición de reproducción. - + If the play position is inside an active loop, stores the loop as loop cue. Si la posición de reproducción se encuentra dentro de un bucle activo, almacena el bucle como una hotcue de bucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Arrastrar este botón dentro de otro botón de hotcue para moverlo hacia este (cambiando su número). Si la otra hotcue ya se encuentra definida, las dos son intercambiadas. - + Expand/Collapse Samplers Expandir/contraer samplers - + Toggle expanded samplers view. Alternar la vista expandida de los samplers. - + Displays the duration of the running recording. Muestra la duración de la grabación en curso. - + Auto DJ is active Auto DJ se encuentra activo - + Red for when needle skip has been detected. Rojo cuando se detecta un salto de aguja. - + Hot Cue - Track will seek to nearest previous hotcue point. Acceso Directo - La pista buscará el punto anterior más cercano del acceso directo. - + Sets the track Loop-In Marker to the current play position. Establece la marca de inicio de bucle a la posición actual - + Press and hold to move Loop-In Marker. Mantener presionado para mover la marca de inicio de bucle. - + Jump to Loop-In Marker. Ir a la marca de inicio de bucle. - + Sets the track Loop-Out Marker to the current play position. Establece la marca de fin de bucle a la posición actual. - + Press and hold to move Loop-Out Marker. Mantener presionado para mover la marca de fin de bucle. - + Jump to Loop-Out Marker. Ir a la marca de fin de bucle. - + If the track has no beats the unit is seconds. Si la pista no tiene pulsaciones, la unidad es segundos. - + Beatloop Size Pulsaciones del bucle - + Select the size of the loop in beats to set with the Beatloop button. Define el tamaño del bucle en pulsaciones a usar cuando se pulse el botón de bucle de pulsaciones. - + Changing this resizes the loop if the loop already matches this size. Al cambiar este valor, cambiará el tamaño del bucle existente, si tenía el tamaño anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduce a la mitad el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Dobla el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Start a loop over the set number of beats. Activa un bucle con la cantidad definida de pulsaciones. - + Temporarily enable a rolling loop over the set number of beats. Activa temporalmente un bucle de continuación con la cantidad de pulsaciones definidas. - + Beatloop Anchor Ancla del bucle de pulsaciones - + Define whether the loop is created and adjusted from its staring point or ending point. Define si el bucle es creado y ajustado desde su punto de inicio o de final. - + Beatjump/Loop Move Size Tamaño del salto de pulsaciones/Desplazamiento del bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la cantidad de pulsaciones a saltar o a mover el bucle con los botones de avance/retroceso. - + Beatjump Forward Avanzar en pulsaciones - + Jump forward by the set number of beats. Avanza la pista la cantidad definida de pulsaciones. - + Move the loop forward by the set number of beats. Avanza el bucle en la cantidad definida de pulsaciones. - + Jump forward by 1 beat. Avanza 1 pulsación. - + Move the loop forward by 1 beat. Avanza el bucle 1 pulsación. - + Beatjump Backward Retrocede en pulsaciones - + Jump backward by the set number of beats. Retrocede la cantidad de pulsaciones definida. - + Move the loop backward by the set number of beats. Retrocede el bucle la cantidad de pulsaciones definida. - + Jump backward by 1 beat. Retrocede 1 pulsación. - + Move the loop backward by 1 beat. Retrocede el bucle 1 pulsación. - + Reloop Repite el bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle está por delante de la posición actual, este no se activará hasta que se llege a él. - + Works only if Loop-In and Loop-Out Marker are set. Solo funciona si las marcas de inicio y fin de bucle estan definidas. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, va a la posición de inicio de bucle y se detiene. - + Displays the elapsed and/or remaining time of the track loaded. Muestra el tiempo transcurrido y/o restante de la pista cargada. - + Click to toggle between time elapsed/remaining time/both. Pulsar para cambiar entre tiempo transcurrido/restante/ambos - + Hint: Change the time format in Preferences -> Decks. Sugerencia: cambie el formato de tiempo en Preferencias -> Platos. - + Show/hide intro & outro markers and associated buttons. Mostrar/ocultar marcadores de intro y outro, y sus botones asociados. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador Inicial de Entrada - - - - + + + + If marker is set, jumps to the marker. Si el marcador se encuentra definido, salta al marcador. - - - - + + + + If marker is not set, sets the marker to the current play position. Si el marcador no se encuentra definido, lo configura a la posición de reproducción actual. - - - - + + + + If marker is set, clears the marker. Si el marcador se encuentra definido, lo elimina. - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste la mezcla de la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + D/W mode: Crossfade between dry and wet Modo D/W: fundido cruzado entre seco y húmedo - + D+W mode: Add wet to dry Modo D+W: agregue húmedo a seco - + Mix Mode Modo mezcla - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste cómo se mezcla la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + 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 seco / húmedo (líneas cruzadas): Mezcle los fundidos cruzados de la perilla entre seco y húmedo. Use esto para cambiar el sonido de la pista con EQ y efectos de 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 seco + húmedo (línea seca plana): la perilla de mezcla agrega húmedo a seco. Use esto para cambiar solo la señal efectuada (húmeda) con EQ y efectos de filtro. + Modo Seco+Húmedo (línea seca plana): La perilla de mezcla agrega mojado a seco +Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efectos de filtrado. - + Route the main mix through this effect unit. Enruta la mezcla principal a través de esta unidad de efectos. - + Route the left crossfader bus through this effect unit. Redirige el bus izquierdo del crossfader a través de esta unidad de efectos. - + Route the right crossfader bus through this effect unit. Enruta el bus derecho del crossfader a través de la unidad de efectos - + Right side active: parameter moves with right half of Meta Knob turn Derecha activo: el parámetro se mueve al mover la mitad derecha del control Meta. - + Stem Label Etiqueta de stem - + Name of the stem stored in the stem file Nombre del stem almacenado en el archivo de stem - + Text is displayed in the stem color stored in the stem file El texto es presentado con el color del stem almacenado en el archivo de stem - + this stem color is also used for the waveform of this stem este color de stem también es usado en la forma de onda de este stem - + Stem Mute Silenciar stem - + Toggle the stem mute/unmuted Alterna el silencio del stem - + Stem Volume Knob Perilla de volumen del stem - + Adjusts the volume of the stem Ajusta el volumen del stem - + Skin Settings Menu Menú de las opciones de la Apariencia - + Show/hide skin settings menu Muestra/esconde el menú de opciones de la Apariencia - + Save Sampler Bank Guardar banco de muestras - + Save the collection of samples loaded in the samplers. Guarda la colección de muestras cargadas en los reproductores de muestras. - + Load Sampler Bank Cargar banco de muestras - + Load a previously saved collection of samples into the samplers. Carga en los reproductores de muestras una colección de muestras guardada en anterioridad. - + Show Effect Parameters Mostrar parámetros de efectos - + Enable Effect Activar efecto - + Meta Knob Link Enlace de la rueda Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura cómo le afecta a este parámetro la rueda Meta. - + Meta Knob Link Inversion Inversión del enlaze de la rueda Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invierte la dirección en la que se mueve el parámetro al mover la rueda Meta. - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Previous Chain Cadena anterior - + Next/Previous Chain Cadena siguiente/anterior - + Clear Borrar - + Clear the current effect. Borra el efecto actual. - + Toggle Conmutar - + Toggle the current effect. Conmuta el efecto actual. - + Next Siguente - + Clear Unit Limpiar unidad - + Clear effect unit. limpiar la unidad de efectos. - + Show/hide parameters for effects in this unit. Muestra/esconde los parámetros de los efectos de esta unidad. - + Toggle Unit Conmutar la unidad - + Enable or disable this whole effect unit. Activa o desactiva la unidad de efectos. - + Controls the Meta Knob of all effects in this unit together. Controla a la vez las ruedas Meta de todos los efectos asociados a esta unidad. - + Load next effect chain preset into this effect unit. Carga el siguiente preajuste de efectos en esta unidad de efectos. - + Load previous effect chain preset into this effect unit. Carga el anterior preajuste de efectos en esta unidad de efectos. - + Load next or previous effect chain preset into this effect unit. Carga el siguiente o anterior preajuste de efectos en esta unidad de efectos. - - - - - - - - - + + + + + + + + + Assign Effect Unit Asignar la unidad de efectos - + Assign this effect unit to the channel output. Asigna esta unidad de efectos a la salida del canal. - + Route the headphone channel through this effect unit. Redirige la salida de auriculares a través de la unidad de efectos. - + Route this deck through the indicated effect unit. Redirige este plato a través de la unidad de efectos indicada. - + Route this sampler through the indicated effect unit. Redirige este reproductor a través de la unidad de efectos indicada. - + Route this microphone through the indicated effect unit. Redirige este micrófono a través de la unidad de efectos indicada. - + Route this auxiliary input through the indicated effect unit. Redirige la entrada auxiliar a través de la unidad de efectos indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. La unidad de efectos debe estar asignada a un plato o otra fuente de sonido para oír el efecto. - + Switch to the next effect. Pasa al siguiente efecto. - + Previous Anterior - + Switch to the previous effect. Pasa al efecto anterior. - + Next or Previous Siguiente o Anterior - + Switch to either the next or previous effect. Pasa al siguiente o anterior efecto. - + Meta Knob Rueda Meta - + Controls linked parameters of this effect Controla los parámetros enlazados del efecto - + Effect Focus Button Botón de foco de efecto - + Focuses this effect. Pone el foco en el efecto. - + Unfocuses this effect. Quita el foco del efecto. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulta la página web de tu controlador en la wiki del Mixxx para más información - + Effect Parameter parámetro de efecto - + Adjusts a parameter of the effect. Ajusta un parámetro del efecto. - + Inactive: parameter not linked Inactivo: parámetro no enlazado - + Active: parameter moves with Meta Knob Activo: el parámetro se mueve con la rueda Meta - + Left side active: parameter moves with left half of Meta Knob turn Izquierda activo: el parámetro se mueve con la primera mitad de la rueda Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Izquierda y derecha activo: el parámetro recorre todo el rango con la primera mitad de la rueda Meta, y vueve atrás con la segunda mitad - - + + Equalizer Parameter Kill Parámetro de supresión del ecualizador - - + + Holds the gain of the EQ to zero while active. Mantiene la ganáncia de EQ a cero mientras está activo. - + Quick Effect Super Knob Rueda Súper de efecto rápido - + Quick Effect Super Knob (control linked effect parameters). Rueda Súper de efecto rápido (controla los parámetros de efecto asociados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Nota: Puedes cambiar el efecto rápido por defecto en Preferéncias > Ecualizadores. - + Equalizer Parameter ecualizador paramétrico - + Adjusts the gain of the EQ filter. Ajusta la ganáncia del filtro de EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Nota: Se puede cambiar el modo de EQ por defecto en Preferencias > Ecualizadores. - - + + Adjust Beatgrid Ajustar cuadrícula de tempo - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la cuadrícula de tempo para que el golpe más cercano se alinee con la posición actual de reproducción. - - + + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + If quantize is enabled, snaps to the nearest beat. Si la cuantización está activada, se acerca al compás más cercano. - + Quantize Cuantizar - + Toggles quantization. Conmutar la cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Cuando está activada, los bucles y cue se alinean con el compás más cercano. - + Reverse Reversa - + Reverses track playback during regular playback. Reproduce en reversa, durante reproducción normal. - + Puts a track into reverse while being held (Censor). Pone la pista en reversa mientras se mantiene presionado. - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducción se continuará en el punto al que habría llegado la pista si no hubiese puesto en reversa. - - - + + + Play/Pause Reproducir/Pausar - + Jumps to the beginning of the track. Salta al principio de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) y la fase de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Sync and Reset Key Sincroniza y resetea la tonalidad - + Increases the pitch by one semitone. Incrementa el tono en una seminota. - + Decreases the pitch by one semitone. Decrementa el tono en una seminota. - + Enable Vinyl Control Activar vinilo de control - + When disabled, the track is controlled by Mixxx playback controls. Si está desactivado, los controles de reproducción del Mixxx controlan la pista. - + When enabled, the track responds to external vinyl control. Si está activado, el control de vinilo externo controla la pista. - + Enable Passthrough Activa el paso de audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer de audio es demasiado pequeño para llevar a cabo todo el procesamiento de audio. - + Displays cover artwork of the loaded track. Muestra la carátula de la pista cargada. - + Displays options for editing cover artwork. Muestra las opciones de edición de carátula. - + Star Rating Puntuación - + Assign ratings to individual tracks by clicking the stars. Asigna la puntuación de cada pista pulsando en las estrellas. @@ -14638,7 +15115,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Right click hotcues to edit their labels and colors. - Clic derecho en hotcues para editar sus etiquetas y colores. + Click derecho en los accesos directos para editar sus etiquetas y colores. @@ -14746,33 +15223,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Intensidad de atenuación al usar el Micrófono - + Prevents the pitch from changing when the rate changes. Evita que el tono cambie al cambiar la velocidad. - + Changes the number of hotcue buttons displayed in the deck - Cambia el número de botones de acceso directo que se muestran en la cubierta + Cambia el número de botones de acceso directo mostrados en el deck - + Starts playing from the beginning of the track. Comienza la reproducción desde el principio de la pista. - + Jumps to the beginning of the track and stops. Salta al principio de la pista y se detiene. - - + + Plays or pauses the track. Reproduce o pausa la pista. - + (while playing) (estando en reproducción) @@ -14792,215 +15269,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Medidor de volumen del canal principal R - + (while stopped) (mientras está parado) - + Cue Cue - + Headphone Auriculares - + Mute Silenciar - + Old Synchronize Sincronización antígua - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Se sincroniza con la primera pista (en orden numérico) que está sonando y tiene BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hay pistas en reprodución, se sincroniza con la primera pista que tenga BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Mantener pulsado durante un segundo para activar la sincronización fija para este plato. - + 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. Los platos con la sincronización bloqueada reproducirán todos al mismo tempo, y si además tienen la quantización activada, también se alinearán los compases. - + Resets the key to the original track key. Resetea la clave musical a la original de la pista. - + Speed Control Control de velocidad - - - + + + Changes the track pitch independent of the tempo. Cambia el tono de la pista independientemente del tempo. - + Increases the pitch by 10 cents. Aumenta el tono 10 centésimas. - + Decreases the pitch by 10 cents. Reduce el tono 10 centésimas. - + Pitch Adjust Ajuste de velocidad - + Adjust the pitch in addition to the speed slider pitch. Ajusta la velocidad añadiendo al cambio del deslizador de velocidad. - + Opens a menu to clear hotcues or edit their labels and colors. Abre un menú para limpiar los accesos directos o editar sus etiquetas y colores. - + Drag this button onto a Play button while previewing to continue playback after release. Arrastre este botón a un boton de Play durante la preescucha para continuar la reproducción tras soltarlo. - + Dragging with Shift key pressed will not start previewing the hotcue. Arrastrar mientras presiona la tecla Shift no iniciará la preescucha de la hotcue. - + Record Mix Grabar mezcla - + Toggle mix recording. Conmutar la grabación de la mezcla. - + Enable Live Broadcasting Activar la emisión en vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Provides visual feedback for Live Broadcasting status: Da una indicación acerca del estado de la emisión en vivo: - + disabled, connecting, connected, failure. desactivado, conectando, conectado, fallo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Cuando está activado, el plato reproduce directamente el audio que recibe por la entrada de vinilo. - + Playback will resume where the track would have been if it had not entered the loop. La reproducción se reanudará en el punto al que habría llegado la pista si no hubiese entrado en el bucle. - + Loop Exit Salida del bucle - + Turns the current loop off. Desactiva el bucle actual. - + Slip Mode Modo Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cuando está activado, la reproducción continúa en silencio mientras dura el bucle, la reproducción hacia atrás, scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Una vez desactivado, la reproducción (audible) seguirá donde la pista habría estado. - + Track Key The musical key of a track Tonalidad de la pista - + Displays the musical key of the loaded track. Muestra la clave musical de la pista cargada. - + Clock Reloj - + Displays the current time. Muestra la hora actual. - + Audio Latency Usage Meter Medidor de Latencia de Audio - + Displays the fraction of latency used for audio processing. Muestra la parte de latencia usada para el proceso de audio. - + A high value indicates that audible glitches are likely. Un valor alto indica que se pueden percibir ruidos. - + Do not enable keylock, effects or additional decks in this situation. No activar el bloqueo de tonalidad, los efectos o los platos adicionales en este caso. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latencia de Audio @@ -15040,259 +15517,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activa el control de vinilo desde el Menú -> Opciones. - + Displays the current musical key of the loaded track after pitch shifting. Muestra la clave musical actual para la pista cargada teniendo en cuenta el cambio de tonalidad. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Rebobinado rápido a través de la pista. - + Fast Forward Avance Rápido - + Fast forward through the track. Avance Rápido a través de la pista. - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Cambia la tonalidad a una clave musical que permite la transición harmónica de un plato a otro. Es necesario que se haya detectado la clave en ambos platos. - - - + + + Pitch Control Control del pitch - + Pitch Rate Ritmo de cambio de tonalidad - + Displays the current playback rate of the track. Muestra el ritmo de reproducción actual de la pista. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Estando activo la pista se repetirá si se pasa del final o si retrocede antes del comienzo. - + Eject Expulsar - + Ejects track from the player. Expulsa la pista del reproductor. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Si el hotcue está establecido, salta al hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Si el hotcue no está establecido, establece el hotcue en la actual posición de reproducción. - + Vinyl Control Mode Modo de control de vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - la posicion dentro del tema corresponde a la posicion y velocidad de la aguja. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - la velocidad del tema corresponde a la velocidad de la aguja independientemente de la posicion. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - la velocidad del tema corresponde a la ultima velocidad conocida independientemente de lo que se recibe de la aguja. - + Vinyl Status Estado del vinilo - + Provides visual feedback for vinyl control status: Provee retroalimentación visual sobre el estado del control de vinilo: - + Green for control enabled. Verde para control activo. - + Blinking yellow for when the needle reaches the end of the record. Amarillo parpadeante cuando la aguja alcanza el final de la grabación. - + Loop-In Marker Marcador de inicio de bucle - + Loop-Out Marker Marcador de fin de bucle - + Loop Halve Reducir bucle a la mitad - + Halves the current loop's length by moving the end marker. Reduce a la mitad la longitud del bucle actual, moviendo la marca de fin. - + Deck immediately loops if past the new endpoint. El plato vuelve al inicio del bucle inmediatamente si se ha superado el nuevo punto final. - + Loop Double Aumentar bucle al doble - + Doubles the current loop's length by moving the end marker. Aumenta al doble la longitud del bucle actual, moviendo la marca de fin. - + Beatloop Bucle de pulsaciones - + Toggles the current loop on or off. Activa o desactiva el bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Funciona sólo si se han definido las marcas de inicio y fin de bucle. - + Vinyl Cueing Mode Modo de Cue de Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina cómo los puntos Cue son tratados en el modo de control Relativo de Vinilos: - + Off - Cue points ignored. Off - Los puntos CUE se ignoran. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Cue - si se pone la aguja mas allá del punto cue, se irá al punto Cue de la pista. - + Track Time Tiempo de pista - + Track Duration Duración de la Pista - + Displays the duration of the loaded track. Muestra la duración de la pista cargada. - + Information is loaded from the track's metadata tags. Información cargada desde el tag de metadatos de las pistas. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Muestra el artista de la pista cargada. - + Track Title Título de la pista - + Displays the title of the loaded track. Muestra el título de la pista cargada. - + Track Album Álbum de la pista - + Displays the album name of the loaded track. Muestra el nombre del álbum de la pista cargada. - + Track Artist/Title Artista/Título de la pista - + Displays the artist and title of the loaded track. Muestra el artista y el título de la pista cargada. @@ -15523,47 +16000,75 @@ Carpeta: %2 WCueMenuPopup - + Cue number Número de cue - + Cue position Posición Marca - + Edit cue label Editar etiqueta de marca - + Label... Etiqueta... - + Delete this cue Borrar esta marca - - Toggle this cue type between normal cue and saved loop - Alterna el tipo de esta cue entre cue normal y bucle guardado + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic izquierdo: usar el tamaño anterior o el del bucle actual como el tamaño de bucle + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic derecho: usar la posición de reproducción actual como final del bucle si se encuentra después de la cue + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Acceso DIrecto #%1 @@ -15688,323 +16193,363 @@ Carpeta: %2 + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear &nueva Playlist - + Create a new playlist Crear una nueva lista de reproducción - + Ctrl+n Ctrl+N - + Create New &Crate Crear un nuevo&cajón - + Create a new crate Crear un nuevo cajón - + Ctrl+Shift+N Ctrl+Mayús+N - - + + &View &Vista - + Auto-hide menu bar Auto-ocultar barra de menú - + Auto-hide the main menu bar when it's not used. Auto-ocultar la barra de menú principal cuando no es utilizada. - + May not be supported on all skins. Puede no estar disponible para todas las apariencias. - + Show Skin Settings Menu Mostrar menú de ajustes de aspecto - + Show the Skin Settings Menu of the currently selected Skin Mostrar la configuración actual del menu de tema - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar seccion del microfono - + Show the microphone section of the Mixxx interface. Muestra la sección de control de micrófono de la interfaz de Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar la Sección de Control de Vinilo - + Show the vinyl control section of the Mixxx interface. Muestra la sección de control de vinilo de la interfaz de Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar el reproductor de preescucha - + Show the preview deck in the Mixxx interface. Muestra el reproductor de preescucha en la interfaz de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Muestra carátulas - + Show cover art in the Mixxx interface. Muestra las carátulas en la interfaz de Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Space Menubar|View|Maximize Library Espacio - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Mostrar Mixxx a pantalla completa - + &Options &Opciones - + &Vinyl Control Control de &vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con codigo de tiempo en bandejas externas para controlar Mixxx - + Enable Vinyl Control &%1 Habilita el Control por Vinilo &%1 - + &Record Mix &Grabar Mezcla - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar transmisión en &vivo - + Stream your mixes to a shoutcast or icecast server Transmite tus mezclas a un servidor shoutcast o icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar Atajos de &Teclado - + Toggles keyboard shortcuts on or off Activa o desactiva los atajos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar la configuración de Mixxx (p.ej.: reproducción, MIDI, controles) - + &Developer &Desarrollador - + &Reload Skin &Recargar apariencia - + Reload the skin Recargar la apariencia - + Ctrl+Shift+R Ctrl+Mayús+R - + Developer &Tools U&tilidades de desarrollador - + Opens the developer tools dialog Abre el cuadro de diálogo de herramientas de desarrollo - + Ctrl+Shift+T Ctrl+Mayús+T - + Stats: &Experiment Bucket Estadísticas: Contadores &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el modo experimental. Recoje estadísticas en los contadores EXPERIMENT. - + Ctrl+Shift+E Ctrl+Mayús+E - + Stats: &Base Bucket Estadísticas: contadores &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el modo base. Recoje estadísticas en los contadores BASE. - + Ctrl+Shift+B Ctrl+Mayús+B - + Deb&ugger Enabled Dep&uración activada - + Enables the debugger during skin parsing Activa el depurador durante el análisis de la máscara - + Ctrl+Shift+D Ctrl+Mayús+D - + &Help Ay&uda - + Show Keywheel menu title Mostrar rueda de notas @@ -16021,74 +16566,74 @@ Carpeta: %2 Exportar biblioteca al formato Engine DJ - + Show keywheel tooltip text Mostrar rueda de notas - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Soporte &comunitario - + Get help with Mixxx Obtener ayuda con Mixxx - + &User Manual Manual de &usuario - + Read the Mixxx user manual. Lea el manual de usuario de Mixxx. - + &Keyboard Shortcuts Atajos de &Teclado - + Speed up your workflow with keyboard shortcuts. Trabaja más rápidamente usando los atajos de teclado. - + &Settings directory &Directorio de configuración - + Open the Mixxx user settings directory. Abre el directorio de configuración de usuario de Mixxx. - + &Translate This Application &Traducir esta aplicación - + Help translate this application into your language. Ayude a traducir esta aplicación a su idioma. - + &About &Acerca de - + About the application Acerca de la aplicación @@ -16096,25 +16641,25 @@ Carpeta: %2 WOverview - + Passthrough Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Listo para reproducir, analizando... - - + + Loading track... Text on waveform overview when file is cached from source Cargando pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizando... @@ -16123,25 +16668,13 @@ Carpeta: %2 WSearchLineEdit - - Clear input - Clear the search bar input field - Borrar el texto - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input Borrar el texto @@ -16152,93 +16685,87 @@ Carpeta: %2 Buscar... - + Clear the search bar input field Limpia el campo de entrada de la barra de búsqueda - - Enter a string to search for - Introducir el texto a buscar + + Return + Volver - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operadores como bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Para más información vea el Manual de Usuario> Biblioteca Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Atajo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Poner el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retroceso + + Additional Shortcuts When Focused: + - Shortcuts - Atajos + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Volver + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Activa la búsqueda antes del tiempo de espera de "búsqueda mientras escribe" o salte a la vista de pistas después + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Espacio - + Toggle search history Shows/hides the search history entries Alternar historial de búsqueda - + Delete or Backspace Borrar o Retorno - - Delete query from history - Borrar Consulta del Historial - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Salir de la busqueda + + Delete query from history + Borrar Consulta del Historial @@ -16322,625 +16849,640 @@ Carpeta: %2 WTrackMenu - + Load to Cargar en - + Deck Plato - + Sampler Reproductor de muestras - + Add to Playlist Añadir a la lista de reproducción - + Crates Cajas - + Metadata Metadatos - + Update external collections Actualizar colecciones externas - + Cover Art Portada - + Adjust BPM Ajustar BPM - + Select Color Seleccionar color - - + + Analyze Analizar - - + + Delete Track Files Borrar Archivos de Pistas - + 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 lista de DJ Automático (reemplazar) - + Preview Deck Reproductor de preescucha - + Remove Quitar - + Remove from Playlist Eliminar de la lista de reproducción - + Remove from Crate Eliminar de la caja - + Hide from Library Ocultar de la biblioteca - + Unhide from Library Volver a mostrar en la biblioteca - + Purge from Library Eliminar de la biblioteca - + Move Track File(s) to Trash Mover archivo(s) de seguimiento a la papelera - + Delete Files from Disk Borrar Archivos del Disco - + Properties Propiedades - + Open in File Browser Abrir en el explorador de archivos - + Select in Library Selecciona en Biblioteca - + Import From File Tags Importar de los metadatos del fichero - + Import From MusicBrainz Importar de MusicBrainz - + Export To File Tags Exportar a metadatos del fichero - + BPM and Beatgrid BPM y cuadrícula de tempo - + Play Count Reproducciones - + Rating Calificación - + Cue Point Punto CUE - - + + Hotcues Hotcues - + Intro - + Intro - + Outro - + Outro - + Key Clave - + ReplayGain Reproducir otra vez - + Waveform Forma de onda - + Comment Comentario - + All Todos - + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Sort hotcues by position Ordenar hotcues por posición - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Desplazar la cuadrícula de tiempo medio beat - + Reanalyze Reanalizar - + Reanalyze (constant BPM) Reanalizar (BPM constante) - + Reanalyze (variable BPM) Reanalizar (BPM variable) - + Update ReplayGain from Deck Gain Actualizar ReplayGain desde la Ganancia de Plato - + Deck %1 Deck %1 - + Importing metadata of %n track(s) from file tags Importación de metadatos de %n pista a partir de las etiquetas del archivoImportación de metadatos de %n pistas a partir de las etiquetas de los archivosImportación de metadatos de %n pista(s) a partir de las etiquetas del archivo - + Marking metadata of %n track(s) to be exported into file tags Haciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivos - - + + 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 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: Se ha producido un error desconocido al crear la lista de reproducción: - + Add to New Crate Añadir a nueva caja - + Scaling BPM of %n track(s) Escalando BPM de %n pista(s)Escalando BPM de %n pista(s)Escalando BPM de %n pista(s) - + Undo BPM/beats change of %n track(s) Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s) - + Locking BPM of %n track(s) Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s) - + Unlocking BPM of %n track(s) Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s) - + Setting rating of %n track(s) Definiendo evaluación de %n pistaDefiniendo evaluación de %n pistasDefiniendo evaluación de %n pista(s) - + Setting color of %n track(s) configuración de color de %n pista(s)configuración de color de %n pista(s)configuración de color de %n pista(s) - + Resetting play count of %n track(s) Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s) - + Resetting beats of %n track(s) Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s) - + Clearing rating of %n track(s) Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s) - + Clearing comment of %n track(s) Borrando comentarios de %n pistaBorrando comentarios de %n pistasBorrando comentarios de %n pista(s) - + Removing main cue from %n track(s) Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s) - + Removing outro cue from %n track(s) Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s) - + Removing intro cue from %n track(s) Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s) - + Removing loop cues from %n track(s) Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s) - + Removing hot cues from %n track(s) Removiendo los hot cues de %n pista(s)Removiendo los hot cues de %n pista(s)Removiendo los accesos directos de %n pista(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Ordenando hotcues de %n pista por posición (removiendo desfases)Ordenando hotcues de %n pistas por posición (removiendo desfases)Ordenando hotcues de %n pistas(s) por posición (removiendo desfases) - + Sorting hotcues of %n track(s) by position Ordenando hotcues de %n pista por posiciónOrdenando hotcues de %n pistas por posiciónOrdenando hotcues de %n pista(s) por posición - + Resetting keys of %n track(s) Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s) - + Resetting replay gain of %n track(s) Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s) - + Resetting waveform of %n track(s) Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s) - + Resetting all performance metadata of %n track(s) Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s) - + Move these files to the trash bin? ¿Mover estos archivos a la papelera? - + Permanently delete these files from disk? ¿Eliminar permanentemente estos archivos del disco? - - + + This can not be undone! ¡Esto no puede ser revertido! - + Cancel Cancelar - + Delete Files Eliminar archivos - + Okay Okey - + Move Track File(s) to Trash? ¿Mover los archivos de seguimiento a la papelera? - + Track Files Deleted Pistas eliminadas - + Track Files Moved To Trash Archivos de seguimiento movidos a la papelera - + %1 track files were moved to trash and purged from the Mixxx database. %1 archivos de pista fueron movidos a la papelera y purgados de la base de datos de Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 archivos de pistas han sido eliminados y se ha purgado de la base de datos de Mixxx. - + Track File Deleted Archivo de Pista Eliminado - + Track file was deleted from disk and purged from the Mixxx database. El archivo de pista ha sido eliminado del disco y purgado de la base de datos de Mixxx - + The following %1 file(s) could not be deleted from disk No se han podido eliminar del disco los siguientes %1 archivo(s) - + This track file could not be deleted from disk Este archivo de pista no se ha podido borrar del disco - + Remaining Track File(s) Renombrando archivo(s) de pista - + Close Cerrar - + Clear Reset metadata in right click track context menu in library Climpiar - + Loops Bucles - + Clear BPM and Beatgrid Limpia las BPM y la cuadrícula de tiempo - + Undo last BPM/beats change Revertir el último cambio de BPM/pulsaciones - + Move this track file to the trash bin? ¿Mover este archivo de pista a la papelera? - + Permanently delete this track file from disk? ¿Eliminar permanentemente este archivo de pista del disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Todos los platos donde estas pistas hayan sido cargadas se detendrán, y las pistas serán expulsadas. - + All decks where this track is loaded will be stopped and the track will be ejected. Todos los platos donde esta pista haya sido cargada se detendrán, y la pista será expulsada. - + Removing %n track file(s) from disk... Removiendo %n archivo(s) de pista del disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: si estás en la vista Ordenador o Grabación tienes que volver a hacer clic en la vista actual para ver los cambios. - + Track File Moved To Trash Archivo de seguimiento movido a la papelera - + Track file was moved to trash and purged from the Mixxx database. El archivo de seguimiento se ha movido a la papelera y se ha eliminado de la base de datos de Mixxx. - + Don't show again during this session No mostrar nuevamente durante esta sesión - + The following %1 file(s) could not be moved to trash El/los siguiente(s) %1 archivo(s) no pudieron ser movidos a la papelera - + This track file could not be moved to trash Este archivo de pista no se ha podido mover a la papelera + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Setting cover art of %n track(s)Setting cover art of %n track(s)Poniendo portadas de %n pista(s) - + Reloading cover art of %n track(s) Reloading cover art of %n track(s)Reloading cover art of %n track(s)Recarga de portadas de %n pista(s) @@ -16994,37 +17536,37 @@ Carpeta: %2 WTrackTableView - + Confirm track hide Confirmar ocultar pista - + Are you sure you want to hide the selected tracks? ¿Estas seguro de que quieres ocultar las pistas seleccionadas? - + Are you sure you want to remove the selected tracks from AutoDJ queue? ¿Esta seguro de que quiere eliminar las pistas seleccionadas de la cola del AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Estás seguro que quieres eliminar las pistas seleccionada de este cajón? - + Are you sure you want to remove the selected tracks from this playlist? ¿Esta seguro de que desea eliminar las pistas seleccionadas de la lista de reproducción? - + Don't ask again during this session No volver a preguntar durante esta sesión - + Confirm track removal Confirmar eliminación del track @@ -17032,12 +17574,12 @@ Carpeta: %2 WTrackTableViewHeader - + Show or hide columns. Mostrar u ocultar columnas. - + Shuffle Tracks Mezclar pistas @@ -17067,7 +17609,7 @@ Carpeta: %2 decks - platos + decks @@ -17075,22 +17617,22 @@ Carpeta: %2 Biblioteca - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers Controladores - + 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. @@ -17248,6 +17790,24 @@ Pulse Aceptar para salir. La solicitud de la red no ha empezado + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17256,4 +17816,27 @@ Pulse Aceptar para salir. Ningún efecto cargado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_es_ES.qm b/res/translations/mixxx_es_ES.qm index a45a8dd70eed..d5a436510387 100644 Binary files a/res/translations/mixxx_es_ES.qm and b/res/translations/mixxx_es_ES.qm differ diff --git a/res/translations/mixxx_es_ES.ts b/res/translations/mixxx_es_ES.ts index e37c1bf52747..40a737694b86 100644 --- a/res/translations/mixxx_es_ES.ts +++ b/res/translations/mixxx_es_ES.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,54 +27,54 @@ AutoDJFeature - + Crates Cajones - + Enable Auto DJ Activar Auto DJ - + Disable Auto DJ Desactivar Auto DJ - + Clear Auto DJ Queue - Limpiar la cola de Auto DJ + Vaciar la cola de Auto DJ - + Remove Crate as Track Source Quitar cajón como fuente de pistas - + Auto DJ Auto DJ - + Confirmation Clear Confirmación limpiada - + Do you really want to remove all tracks from the Auto DJ queue? - Realmente quieres eliminar todas las pistas de la cola de Auto DJ? + ¿Realmente quieres eliminar todas las pistas de la cola de Auto DJ? - + This can not be undone. ¡Esto no puede ser revertido! - + Add Crate as Track Source - Usar cajón como fuente de pistas + Usar el cajón como fuente de pistas @@ -223,7 +231,7 @@ - + Export Playlist Exportar lista de reproducción @@ -277,13 +285,13 @@ - + 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: @@ -295,16 +303,15 @@ Do you really want to delete playlist <b>%1</b>? - Do you really want to delete playlist -%1? + ¿Deseas realmente eliminar la lista de reproducción<b>%1</b>? - + 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) @@ -312,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca de tiempo @@ -325,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se ha podido cargar la pista. @@ -363,7 +370,7 @@ Canales - + Color Color @@ -378,7 +385,7 @@ Compositor - + Cover Art Carátula @@ -388,7 +395,7 @@ Fecha añadida - + Last Played Última reproducción @@ -418,7 +425,7 @@ Clave - + Location Ubicación @@ -428,7 +435,7 @@ Resumen - + Preview Preescucha @@ -468,7 +475,7 @@ Año - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recuperando imagen... @@ -490,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No se puede usar el almacen de contraseñas seguro: el acceso al almacen ha fallado. - + Secure password retrieval unsuccessful: keychain access failed. No se ha podido obtener la contraseña: El acceso al almacen de claves a fallado. - + Settings error Error de configuración - + <b>Error with settings for '%1':</b><br> <b>Error con las opciones para '%1':</b><br> @@ -593,7 +600,7 @@ - + Computer Equipo @@ -613,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -736,12 +743,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. @@ -772,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx es un software de DJ de código abierto. Para más información, ver: - + Starts Mixxx in full-screen mode Iniciar Mixxx en modo pantalla completa - + Use a custom locale for loading translations. (e.g 'fr') Utiliza un locale personalizado para cargar traducciones. (ej. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directorio principal donde Mixxx debería encontrar sus archivos requeridos (como mapeos MIDI), reemplazando la ubicación de la instalación por defecto. - + Path the debug statistics time line is written to Ruta a donde las estadísticas de depuración de la línea de tiempo son escritas. - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Causa que Mixxx muestre/registre todos los datos del controlador que recibe y las funciones en script que cargue - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! El mapeo del controlador generará advertencias y errores más agresivos cuando detecte un mal uso de las APIs del controlador. Los nuevos mapeos de controladores deben desarrollarse con esta opción activada. - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Activa el modo Desarrollador. Incluye información adicional en el registros, estadísticas de rendimiento, y un menú de Herramientas para Desarrolladores. - + Top-level directory where Mixxx should look for settings. Default is: Directorio de nivel superior en donde Mixxx debería buscar por sus parámetros. Por defecto es : - + Starts Auto DJ when Mixxx is launched. Arranca Auto DJ cuando se inicia Mixxx - + Rescans the library when Mixxx is launched. Re escanea la librería cuando se inicia Mixxx - + Use legacy vu meter Utilizar el vúmetro antiguo - + Use legacy spinny Usar diseño de plato antiguo - - Loads experimental QML GUI instead of legacy QWidget skin - Carga la Interfaz de Usuario QML experimental, en lugar de la skin de legado QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Activa el modo seguro. Desactiva las formas de onda OpenGL y los widgets giratorios de vinilos. Pruebe esta opción si Mixxx no inicia correctamente. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utiliza colores en la salida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -867,32 +879,32 @@ debug - Arriba + Mensajes de Depuración/Desarrollador trace - Arriba + Perfilar mensajes - + 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. Establece el nivel del registro en el cual el búfer de registro es descargado el registro de mixxx. <level> es uno de los valores definidos en --nivel de bitácora de arriba. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Configura el tamaño máximo del archivo mixxx.log en bytes. Usa -1 para ilimitado. Por defecto es 100 MB, como en 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrumpe Mixxx (SIGINT), si un DEBUG_ASSERT evalúa como falso. En un depurador puedes continuar después. - + Overrides the default application GUI style. Possible values: %1 Anula el estilo por defecto de la interfaz de usuario de la aplicación. Valores posibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carga los archivos de música especificados al iniciar. Cada archivo que especifiques será cargado en el siguiente deck virtual. - + Preview rendered controller screens in the Setting windows. Previsualizar pantallas renderizadas del controlador en las ventanas de Ajustes @@ -985,2557 +997,2585 @@ trace - Arriba + Perfilar mensajes ControlPickerMenu - + Headphone Output Salida de auriculares - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Plato %1 - + Sampler %1 Reproductor de muestras %1 - + Preview Deck %1 Plato de preescucha %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restaurar al valor predeterminado - + Effect Rack %1 Unidad de efectos %1 - + Parameter %1 Parámetro %1 - + Mixer Mezclador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mezcla de los auriculares (pre/maestro) - + Toggle headphone split cueing Conmutar la salida dividida de auriculares - + Headphone delay Latencia de auriculares - + Transport Transporte - + Strip-search through track Navegación por toda la pista - + Play button Botón de reproducción - - + + Set to full volume Establecer a volumen máximo - - + + Set to zero volume Establecer a volumen cero - + Stop button Botón de parada - + Jump to start of track and play Ir al comienzo de la pista i reproducir - + Jump to end of track Ir al final de la pista - + Reverse roll (Censor) button Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha por Auriculares - - + + Mute button Botón de silencio - + Toggle repeat mode Conmutar modo repetición - - + + 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 - + Toggle slip mode Conmutar el modo deslizante - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Disminuir BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Disminuir BPM en 0,1 - + BPM tap button Botón de BPM manual - + Toggle quantize mode Conmutar el modo de cuantización - + One-time beat sync (tempo only) Sincronizar por unica vez (sólo el tempo) - + One-time beat sync (phase only) Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal - + Equalizers 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) Botón 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 - + Slot %1 Ranura %1 - + Headphone Mix Mezcla de Auriculares - + Headphone Split Cue Salida partida por auriculares - + Headphone Delay Retardo de auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de Retroceso Rápido - + Fast Forward Avance Rápido - + Fast Forward button Botón de Avance Rápido - + Strip Search Navegación de pista - + Play Reverse Reproducir hacia atrás - + Play Reverse button Botón de Reproducción hacia atrás - + Reverse Roll (Censor) Reproducción hacia atrás (Censura) - + Jump To Start Saltar al Inicio - + Jumps to start of track Saltar al inicio de la pista - + Play From Start Reproducir Desde el Comienzo - + Stop Detener - + Stop And Jump To Start Detener y Saltar al Principio - + Stop playback and jump to start of track Detener reproducción y saltar al inicio de la pista - + Jump To End Saltar al final - + Volume Volumen - - - + + + Volume Fader Deslizador de Volumen - - + + Full Volume Volumen máximo - - + + Zero Volume Volumen cero - + Track Gain Ganancia de pista - + Track Gain knob Rueda de ganancia de pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escuchar por auriculares - + Headphone listen (pfl) button Botón de escucha con auriculares (pfl) - + Repeat Mode Modo de repetición - + Slip Mode Modo Slip - - + + Orientation Orientación - - + + Orient Left Orientar a la izquierda - - + + Orient Center Orientar al centro - - + + Orient Right Orientar a la derecha - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Golpeo de BPM - + Adjust Beatgrid Faster +.01 Acelerar la cuadrícula de tempo en +,01 - + Increase track's average BPM by 0.01 Incrementa el BPM promedio de la pista en 0,01 - + Adjust Beatgrid Slower -.01 Ralentizar la cuadrícula de tempo en -,01 - + Decrease track's average BPM by 0.01 Disminuye el BPM promedio de la pista en 0,01 - + Move Beatgrid Earlier Mover la cuadrícula de tempo antes en el tiempo - + Adjust the beatgrid to the left Ajusta la cuadrícula de tempo hacia la izquierda - + Move Beatgrid Later Mover la cuadrícula de tempo después en el tiempo - + Adjust the beatgrid to the right Ajusta la cuadrícula de tempo hacia la derecha - + Adjust Beatgrid Ajustar cuadrícula de tempo - + Align beatgrid to current position Alinea la cuadrícula de tempo a la posición actual - + Adjust Beatgrid - Match Alignment Ajustar la cuadrícula de tempo - Concidir alineación - + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + Quantize Mode Modo Cuantizado - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar pulsaciones al momento - + Sync Tempo One-Shot Sincronizar tempo al momento - + Sync Phase One-Shot 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 - + High EQ Ecualización de Agudos - + Mid EQ Ecualización de Medios - - + + Main Output Salida principal - + Main Output Balance Balance Salida Principal - + Main Output Delay Retardo Salida Principal - + Main Output Gain Ganancia de la Salida principal - + Low EQ 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 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 - + Show/hide the microphone & auxiliary section Muestra/oculta la sección del micrófono y el auxiliar - + 4 Effect Units Show/Hide Mostrar/ocultar las 4 Unidades de Efectos - + Switches between showing 2 and 4 effect units Cambia entre mostrar 2 y 4 unidades de efectos - + Mixer Show/Hide Mostrar/Ocultar Mezclador - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Mostrar/Ocultar Portadas (Biblioteca) - + Show/hide cover art in the library Muestra/oculta las portadas en la biblioteca - + 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 - + Headphone Gain Ganancia del auricular - + Headphone gain Ganancia de auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque sincronización el tempo (y la fase con la cuantización habilitada), mantenga presionado para habilitar la sincronización permanente. - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unidad de Efecto %1 - + Button Parameter %1 Parámetro %1 del botón. - + Skin Apariencia - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientación - + Main Output gain Ganancia de la Salida Principal - + Main Output balance Balance Salida Principal - + Main Output delay Retardo (delay) de la Salida principal - + Headphone Auriculares - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprime %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o recupera la pista, es decir, carga la última pista expulsada (de cualquier deck).<br>Pulsa dos veces para cargar la última pista sustituida. En decks vacíos carga la penúltima pista expulsada. - + BPM / Beatgrid BPM / Grilla de tiempo - + Halve BPM Reducir a la mitad los BPM - + Multiply current BPM by 0.5 Multiplica los BPM por 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplica el BPM actual por 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplica el BPM actual por 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplica el BPM actual por 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplica el BPM actual por 1.5 - + Double BPM Dobla los BPM - + Multiply current BPM by 2 Multiplica el BPM actual por 2 - + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Tempo tap button Botón del Tempo Tap - + Move Beatgrid Desplaza la grilla de tiempo - + Adjust the beatgrid to the left or right Ajusta la grilla de tiempo a la izquierda o a la derecha - + Move Beatgrid Half a Beat Desplaza la cuadricula de tiempo medio pulso - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/grilla de tiempo para la pista cargada - + Sync / Sync Lock Sincronizar / Bloqueo Sincronización - + Internal Sync Leader Sincronización Líder Interno - + Toggle Internal Sync Leader Conmutar el modo Sincronización Líder Interno - - + + Internal Leader BPM BPM Líder Interno - + Internal Leader BPM +1 BPM Líder Interno +1 - + Increase internal Leader BPM by 1 Incrementar BPM líder interno en 1 - + Internal Leader BPM -1 BPM Líder Interno -1 - + Decrease internal Leader BPM by 1 Disminuir BPM líder interno en 1 - + Internal Leader BPM +0.1 BPM Líder Interno +0.1 - + Increase internal Leader BPM by 0.1 Incrementar BPM líder interno en 0.1 - + Internal Leader BPM -0.1 BPM Líder Interno -0.1 - + Decrease internal Leader BPM by 0.1 Disminuir BPM Líder Interno en 0.1 - + Sync Leader Líder de Sicronización - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modo de Sicronización 3-State Toggle / Indicador (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Decrease Speed (Fine) Reducir velocidad (fino) - + Pitch (Musical Key) Tono (Clave Musical) - + Increase Pitch Incrementa el tono/Pitch - + Increases the pitch by one semitone Incrementar el tono por un semitono - + Increase Pitch (Fine) Incrementar Tono (Fino) - + Increases the pitch by 10 cents Incrementa el tono por 10 céntimos - + Decrease Pitch Decrementar Tono - + Decreases the pitch by one semitone Decrementa el tono por un semitono - + Decrease Pitch (Fine) Decrementar Tono (Fino) - + Decreases the pitch by 10 cents Decrementa el tono por 10 céntimos - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Desplaza los puntos cue hacia atrás - + Shift cue points 10 milliseconds earlier Cambiar puntos cue 10 milisegundos antes - + Shift cue points earlier (fine) Desplaza el punto cue hacia atrás (fino) - + Shift cue points 1 millisecond earlier Desplaza los puntos cue 1 milisegundo atrás - + Shift cue points later Desplaza los puntos cue hacia adelante - + Shift cue points 10 milliseconds later Cambiar puntos cue 10 milisegundos después - + Shift cue points later (fine) Cambiar puntos marcado después (fino) - + Shift cue points 1 millisecond later Cambiar puntos marcado 1 milisegundo después - - + + Sort hotcues by position Ordenar hotcues por posición - - + + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Hotcues %1-%2 Hotcues %1-%2 - + Intro / Outro Markers Marcadores de Entrada / Salida - + Intro Start Marker Marcador Inicial de Entrada - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + intro start marker marcador inicial de entrada - + intro end marker Marcador final de entrada - + outro start marker marcador inicial de salida - + outro end marker marcador final de salida - + Activate %1 [intro/outro marker Activa %1 - + Jump to or set the %1 [intro/outro marker Saltar a o poner el %1 - + Set %1 [intro/outro marker Establece %1 - + Set or jump to the %1 [intro/outro marker Establecer o saltar a %1 - + Clear %1 [intro/outro marker Limpiar %1 - + Clear the %1 [intro/outro marker Limpiar el %1 - + if the track has no beats the unit is seconds si la pista no tiene pulsaciones la unidad es segundos - + 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 %1 Beats set from its end point Bucle de %1 pulsaciones desde su punto final - + Loop Roll %1 Beats set from its end point Definir serie de bucles de %1 pulsaciones desde su punto final - + Create %1-beat loop with the current play position as loop end Crea un bucle de 1%-beat con la posición de reproducción actual como final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Crea un redoble de bucle temporal de %1-pulsos con la posición de reproducción actual como final del bucle - + Loop Beats Bucle de pulsos - + Loop Roll Beats Redoble de bucle de pulsos - + Go To Loop In Ir al Loop de entrada - + Go to Loop In button Ir al botón Loop de entrada - + Go To Loop Out Ir al Loop de salida - + Go to Loop Out button Ir al botón Loop de salida - + 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 Salto de pulso - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica qué marcadores de bucle permanecen estáticos al ajustar el tamaño o es ajustado según la posición actual - + Beat Jump / Loop Move Forward Salto de pulsaciones / Movimiento del bucle - + Beat Jump / Loop Move Backward Salto de pulso / Bucle hacia atrás - + Loop Move Forward Bucle hacia adelante - + Loop Move Backward Movimiento del Bucle Atrás - + Remove Temporary Loop Remueve el bucle temporal - + Remove the temporary loop Remueve el bucle temporal - + 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. - + Sort focused column Ordenar columna enfocada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la celda que está enfocada, equivale a hacer click en su encabezado - + 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 Cargar Pista y Reproducir - + 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 Selecciona el siguiente historial de búsqueda - + Selects the next search history entry Selecciona la siguiente entrada del historial de búsqueda - + Select previous search history Selecciona el historial de búsqueda anterior - + Selects the previous search history entry Selecciona la entrada previa del historial de búsqueda - + Move selected search entry Mover entrada de búsqueda seleccionada - + Moves the selected search history item into given direction and steps Mueve el elemento de la búsqueda histórica seleccionado en la dirección dada y pasa - + Clear search Eliminar búsqueda - + Clears the search query Limpia la búsqueda - - + + Select Next Color Available Selecciona el próximo color disponible - + Select the next color in the color palette for the first selected track Selecciona el próximo color en la paleta de colores para la primera pista seleccionada - - + + Select Previous Color Available Selecciona el anterior color disponible - + Select the previous color in the color palette for the first selected track Selecciona el color anterior en la paleta de colores para la primera pista seleccionada - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Asignación de la Unidad de Efectos - + 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 Valor del parámetro del botón - + 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 Añade una pista aleatoria al Auto DJ - + Add a random track to the Auto DJ queue Añade una pista aleatoria a la fila del Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostrar/Ocultar Micrófono y Auxiliar - + Waveform Zoom Reset To Default Reestablece el zoom de la forma de onda - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restablece el nivel de zoom de la forma de onda al valor por defecto seleccionado en Preferencias > Formas de onda - + Select the next color in the color palette for the loaded track. Selecciona el próximo color en la paleta de colores para la pista cargada. - + Select previous color in the color palette for the loaded track. Selecciona el color anterior en la paleta de colores para la pista cargada. - + Navigate Through Track Colors Navegar a través de los colores de las pistas - + Select either next or previous color in the palette for the loaded track. Selecciona cualquiera de los colores siguientes o anteriores en la paleta de colores para la pista cargada. - + Start/Stop Live Broadcasting Inicia/Detiene Transmisión En Vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Iniciar/detener la grabación de tu mix. - - + + + Deck %1 Stems + + + + + Samplers Muestreadores / 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) Mostrar/Ocultar Carátulas (en Decks) - + Show/hide cover art in the main decks Mostrar/Ocultar Carátulas en los platos principales - + 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) Mostrar/Ocultar (Todos los Platos) Giradores de Vinilo - + Show/Hide all spinnies Mostrar/ocultar todos los giradores - + Toggle Waveforms Alternar Formas de Onda - + Show/hide the scrolling waveforms. Mostrar/ocultar las formas de onda deslizantes - + 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 Agregar una estrella - + Increase the track rating by one star Incrementa la puntuación de la pista en una estrella - + Star Rating Down Quitar una estrella - + Decrease the track rating by one star Reduce la puntuación de la pista en una estrella @@ -3548,6 +3588,159 @@ trace - Arriba + Perfilar mensajes Desconocido + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3650,32 +3843,32 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + You can ignore this error for this session but you may experience erratic behavior. Puedes ignorar este error durante esta sesión, pero podrías experimentar problemas impredecibles. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Error del mapa de controlador - + The mapping for your controller "%1" is not working properly. El mapa de tu controlador "%1" no funciona correctamente. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3683,27 +3876,27 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema del archivo del mapa de controlador - + The mapping for controller "%1" cannot be opened. El mapa del controlador "%1" no puede ser abierto. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + File: Archivo: - + Error: Error: @@ -3736,7 +3929,7 @@ trace - Arriba + Perfilar mensajes - + Lock Bloquear @@ -3766,7 +3959,7 @@ trace - Arriba + Perfilar mensajes Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: @@ -3783,22 +3976,22 @@ trace - Arriba + Perfilar mensajes 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 @@ -3808,28 +4001,28 @@ trace - Arriba + Perfilar mensajes Haz una caja para tu próximo concierto, para tus temas electrohouse favoritos o para tus temas más solicitados. - + Confirm Deletion Confirmar Borrado - - + + 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) - + M3U Playlist (*.m3u) Lista de reproducción M3U (*.m3u) @@ -3850,17 +4043,17 @@ trace - Arriba + Perfilar mensajes Los cajones permiten organizar tu música como tu quieras! - + Do you really want to delete crate <b>%1</b>? ¿Quieres eliminar la caja <b>%1</b>? - + 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. @@ -3955,12 +4148,12 @@ trace - Arriba + Perfilar mensajes Antiguos colaboradores - + Official Website Sitio web oficial - + Donate Donar @@ -4789,123 +4982,140 @@ Esto podría deberse a que estás usando una skin antigua y este control ya no e DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acción fallida - + You can't create more than %1 source connections. No se pueden crear más de %1 fuentes de emisión en vivo. - + Source connection %1 Fuente de emisión %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Se requiere almenos una fuente de emisión. - + Are you sure you want to disconnect every active source connection? ¿Seguro que deseas desconectar todas las fuentes de emisión activas? - - + + Confirmation required Se necesita confirmación - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' tiene el mismo punto de montaje Icecast que '%2'. No se puede establecer dos conexiones simultáneas al mismo servidor, con el mismo punto de montaje. - + Are you sure you want to delete '%1'? ¿Deseas realmente borrar '%1'? - + Renaming '%1' Renombrando '%1' - + New name for '%1': Nuevo nombre para '%1': - + Can't rename '%1' to '%2': name already in use No se puede renombrar '%1' a '%2': el nombre está en uso @@ -4918,27 +5128,27 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Preferencias de Transmision en Vivo - + Mixxx Icecast Testing Prueba de «Icecast» de Mixxx - + Public stream Transmisión pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nombre de la emisión - + 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. Debido a errores en algunos clientes de transmisión, actualizar dinámicamente los metadatos Ogg Vorbis puede causar interferencias y desconexiones a los oyentes. Marque esta casilla para actualizar los metadatos de todos modos. @@ -4978,67 +5188,72 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Opciones para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinámicamente los metadatos Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Sitio web - + Live mix Mezcla en vivo - + IRC IRC - + Select a source connection above to edit its settings here Selecciona en la lista la fuente de emisión que desees editar - + Password storage Guardado de contraseñas - + Plain text Texto simple - + Secure storage (OS keychain) Almacen seguro (almacen de llaves del SO) - + Genre Género - + Use UTF-8 encoding for metadata. Usar codificación UTF-8 para los metadatos. - + Description Descripción @@ -5064,42 +5279,42 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Canales - + Server connection Conexión al servidor - + Type Tipo - + Host Servidor - + Login Identificación - + Mount Montar - + Port Puerto - + Password Contraseña - + Stream info Información de la emisión @@ -5109,17 +5324,17 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Metadatos - + Use static artist and title. Usar texto de artista y título fijos - + Static title Titulo fijo - + Static artist Artista fijo @@ -5178,13 +5393,14 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis DlgPrefColors - - + + + By hotcue number Por número de hotcue - + Color Color @@ -5229,17 +5445,22 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Cuando se han habilitado los colores de nota, Mixxx mostrará una pista de color asociada con cada nota. - + Enable Key Colors Activar colores de nota - + Key palette Paleta de notas @@ -5247,114 +5468,114 @@ associated with each key. DlgPrefController - + Apply device settings? ¿Aplicar la configuración del dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? La configuración debe ser aplicada antes de iniciar el asistente de aprendizaje. ¿Aplicar la configuración y continuar? - + None Ningún - + %1 by %2 %1 por %2 - + Mapping has been edited Se ha editado el mapeo - + Always overwrite during this session Siempre sobreescribir durante esta sesión - + Save As Guardar como - + Overwrite Sobreescribir - + Save user mapping Guardar mapeo del usuario - + Enter the name for saving the mapping to the user folder. Ingresar el nombre del archivo de mapeo para guardarlo en la carpeta de usuario. - + Saving mapping failed Ha fallado el guardado del mapeo - + A mapping cannot have a blank name and may not contain special characters. El nombre del mapeo no puede estar en blanco, ni contener caracteres especiales. - + A mapping file with that name already exists. Ya existe un archivo de mapeo con el mismo nombre. - + Do you want to save the changes? Quieres guardar los cambios? - + Troubleshooting Solución de problemas - + <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>Si usas este mapeo, tu controlador podría no funcionar correctamente. Por favor selecciona otro mapeo o deshabilita el controlador. </b></font><br><br>Este mapeo fue diseñado para un nuevo Motor de Controladores de Mixxx, y no puede ser usado con tu instalación actual.<br>Tu instalación de Mixxx posee la version del Motor de Controladores %1. Este mapeo requiere una versión del Motor de controladores >=%2.<br><br>Para más información visita la wiki de <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versiones del Motor de Controladores</a>. - + Mapping already exists. El mapeo ya existe. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ya existe en la carpeta de mapeos de usuario. <br>¿Deseas sobreescribir o guardar con otro nombre? - + Clear Input Mappings Limpiar mapeos de Entrada - + Are you sure you want to clear all input mappings? Está seguro de querer eliminar todos los mapeos de entrada? - + Clear Output Mappings Limpiar mapeos de Salida - + Are you sure you want to clear all output mappings? Está seguro de querer eliminar todos los mapeos de salida? @@ -5372,100 +5593,105 @@ Apply settings and continue? Activado - + + Refresh mapping list + + + + Device Info Información del dispositivo - + Physical Interface: - Interfase física + Interfase física: - + Vendor name: Nombre del fabricante: - + Product name: Nombre del producto: - + Vendor ID ID del proveedor - + VID: VID: - + Product ID ID del producto - + PID: PID: - + Serial number: Número de serie: - + USB interface number: Número de interfaz USB - + HID Usage-Page: Página de uso HID - + HID Usage: Uso de HID: - + Description: Descripción: - + Support: Soporte: - + Screens preview Previsualizar pantallas - + Input Mappings Mapeos de Entrada - - + + Search Buscar - - + + Add Añadir - - + + Remove Quitar @@ -5485,17 +5711,17 @@ Apply settings and continue? Cargar Mapeo: - + Mapping Info Información de mapeo - + Author: Autor: - + Name: Nombre: @@ -5505,28 +5731,28 @@ Apply settings and continue? Asistente de aprendizaje (sólo MIDI) - + Data protocol: Protocolo de datos: - + Mapping Files: Archivos de mapeo - + Mapping Settings Configuración de mapeo - - + + Clear All Limpiar todo - + Output Mappings Mapeos de Salida @@ -5541,21 +5767,21 @@ 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 utiliza "mapeos" para conectar mensajes desde tu controlador a los controles en Mixxx. Si no ves un mapeo de tu controlador en el menu "Cargar Mapeo" cuando hagas click en tu controlador en la barra deslizable izquierda, pudieras descargar uno en línea desde %1. Coloca los archivos XML (.xml) y Javascript (.js) en la "Carpeta de Mapeo del Usuario" luego reinicia Mixxx. Si descargaste un mapeo en un archivo ZIP, extrae los archivos XML y Javascript del archivo ZIP a tu "Carpeta de Mapeo del Usuario" y luego reinicia 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guía de Hardware de DJ de Mixxx - + MIDI Mapping File Format Formato de archivo de mapeos MIDI - + MIDI Scripting with Javascript Programación de Scripts MIDI con Javascript @@ -5685,6 +5911,16 @@ Apply settings and continue? Multi-Sampling Multi-Muestreo + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5714,137 +5950,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sin parpadeo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (grueso) - + s%1zz - Seconds s%1zz - Segundos - + sss%1zz - Seconds (Long) sss%1zz - Segundos (Duración) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosegundos - + Intro start Inicio de la entrada - + Main cue Marcador principal - + First hotcue Primera hotcue - + First sound (skip silence) Primer sonido (saltar silencio) - + Beginning of track Principio de la pista - + Reject Rechazar - + Allow, but stop deck Permitir, pero detener deck - + Allow, play from load point Permitir, reproducir desde el punto de carga - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6299,62 +6535,62 @@ Siempre puedes arrastrar y tirar pistas en la pantalla para clonar una plataform 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 - + Disabled Desactivado - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx debe ser reiniciado para que el nuevo ajuste de locale, escalado o multi-muestreo tenga efecto. @@ -6582,67 +6818,97 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Ver el manual para más detalles - + 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 - + Item is not a directory or directory is missing El ítem no es un directorio, o el directorio no ha sido encontrado - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6691,262 +6957,267 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Re-escanear directorios al inicio - + Audio File Formats Formatos de archivo de sonido - + Track Table View Vista Tabla de Pistas - + Track Double-Click Action: Acción doble-click de Pista: - + BPM display precision: Precisión al mostrar los BPM: - + Session History Historia de la sesión - + Track duplicate distance Duplicar Distancia de Pista - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Cuando reproduces una pista de nuevo, anéxala al historial de la sesión sólo si más de N otras pistas han sido reproducidas mientras tanto. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Historial de lista de reproducciones con menos de N pistas serán borradas<br/><br/>Nota: la limpieza será realizada durante el inicio y el cierre de Mixxx. - + Delete history playlist with less than N tracks Borrar historial de listado de pistas con menos de N pistas - + Library Font: Fuente para Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks Oscurecer pistas ya tocadas - + Track Search Buscar una pista - + Enable search completions Permitir completar búsquedas - + Enable search history keyboard shortcuts Activar los atajos de teclado del historial de búsqueda - + Percentage of pitch slider range for 'fuzzy' BPM search: Porcentaje del rango del deslizador de pitch para búsqueda de BPM "difuso-variable". - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Este rango será utilizado para buscar BPM "difuso-variable" (~bpm:) en la caja de búsqueda, además de la búsqueda de BPM en el menú contextual Pista > Buscar pistas relacionadas - + Preferred Cover Art Fetcher Resolution Resolución preferida del buscador de carátulas - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Obtén carátulas de coverartarchive.com mediante Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" puede referirse a carátulas muy grandes. - + >1200 px (if available) >1200 px (si está disponible) - + 1200 px (if available) 1200 px (si está disponible) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Directorio de configuración - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. El directorio de configuración de Mixxx contiene la base de datos de la biblioteca, varios archivos de configuración, archivos de bitácoras, datos de análisis de pistas, así como mapeos de controladores personalizados. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Edita estos archivos solo si sabes lo que estás haciendo, y solo cuando Mixxx no esté siendo ejecutado. - + Open Mixxx Settings Folder Abrir carpeta de ajustes de Mixxx - + Library Row Height: Alto de la Fila en Biblioteca: - + Use relative paths for playlist export if possible Usar rutas relativas al exportar lista de reproducción cuando sea posible - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincroniza los metadatos de la librería de pistas desde/hacia las etiquetas de archivos - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automáticamente escribe metadatos de las pistas modificadas desde la biblioteca a las etiquetas del archivo y reimporta metadatos desde las etiquetas actualizadas del archivo a la biblioteca - + Synchronize Serato track metadata from/to file tags (experimental) Sincroniza metadatos de la pista de Serato desde/hacia las etiquetas de archivo (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene el color de la pista, la cuadrícula del ritmo, bloqueo de bpm, puntos de marcado, y bucles sincronizados con las etiquetas de archivo SERATO_MARKERS/MARKERS2.<br/><br/>ADVERTENCIA: Habilitando esta opción también habilita la reimportación de metadatos de Serato después de que los archivos han sido modificados afuera de Mixxx. Al reimportar metadatos existentes en Mixxx se remplaza con los metadatos encontrados en las etiquetas de archivos. Los Metadatos personalizados no incluidos en las etiquetas de archivos como los colores de los bucles se perderán. - + Edit metadata after clicking selected track Editar los metadatos al clicar en una pista seleccionada - + Search-as-you-type timeout: Tiempo de espera de búsqueda mientras escribe: - + ms ms - + Load track to next available deck Carga la pista en el siguiente plato disponible - + External Libraries Bibliotecas externas - + You will need to restart Mixxx for these settings to take effect. Usted tendrá que reiniciar Mixxx para que esta configuración surta efecto. - + Show Rhythmbox Library Mostrar la librería de Rhythmbox - + Track Metadata Synchronization / Playlists Metadatos de sincronización de pistas / Listas de reproducción - + Add track to Auto DJ queue (bottom) Añadir pista al final de la cola de Auto DJ - + Add track to Auto DJ queue (top) Añadir pista a la cola de Auto DJ (al comienzo) - + Ignore Ignorar - + Show Banshee Library Mostrar la bibiloteca de Banshee - + Show iTunes Library Mostrar la librería de ITunes - + Show Traktor Library Mostrar la librería de Traktor - + Show Rekordbox Library Mostrar la librería de Rekordbox - + Show Serato Library Mostrar la librería de Serato - + All external libraries shown are write protected. Todas las bibliotecas mostradas estan protegidas frente a escritura. @@ -7291,33 +7562,33 @@ y te permite ajustar su pitch para lograr mezclas armónicas. DlgPrefRecord - + Choose recordings directory Elegir la carpeta para las grabaciones - - + + Recordings directory invalid Directorio de grabaciones inválido - + Recordings directory must be set to an existing directory. El directorio de Grabaciones debe configurarse a un directorio existente. - + Recordings directory must be set to a directory. El directorio de Grabaciones debe configurarse a un directorio. - + Recordings directory not writable Directorio de Grabaciones no escribible - + You do not have write access to %1. Choose a recordings directory you have write access to. No tienes acceso de escritura en %1. Escoge un directorio de grabación en el que tengas acceso de escritura. @@ -7335,43 +7606,55 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Examinar… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidad - + Tags Etiquetas - + Title Título - + Author Autor - + Album Álbum - + Output File Format Formato de fichero de salida - + Compression Compresión - + Lossy Con pérdidas @@ -7386,12 +7669,12 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Directorio: - + Compression Level Nivel de compresión - + Lossless Sin pérdidas @@ -7524,172 +7807,177 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Por Defecto (mas retardo) - + Experimental (no delay) Experimental (sin retardo) - + Disabled (short delay) Desactivado (poco retardo) - + Soundcard Clock Reloj de la tarjeta de sonido - + Network Clock Reloj de red - + Direct monitor (recording and broadcasting only) Monitorización directa (solo grabación y emisión en vivo) - + Disabled Desactivado - + Enabled Activado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Para activar el Planificador en tiempo real (actualmente desactivado), mira %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 muestra una lista de tarjetas de sonido y controladores que podrías considerar para utilizar con Mixxx - + Mixxx DJ Hardware Guide Guía de Hardware DJ de Mixxx - + + Find details in the Mixxx user manual + + + + Information Información - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx debe ser reiniciado para que el cambio de ajuste de RubberBand multi-hilo tenga efecto. - + auto (<= 1024 frames/period) auto (<= 1024 fotogramas/período) - + 2048 frames/period 2048 fotogramas/período - + 4096 frames/period 4096 fotogramas/período - + Are you sure? ¿Estás seguro(a)? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Distribuir los canales estéreo en canales mono para su procesamiento en paralelo podría resultar en la pérdida de la compatibilidad mono y una imagen estéreo difusa. No se recomienda al transmitir en vivo o al grabar. - + Are you sure you wish to proceed? ¿Realmente deseas continuar? - + No No - + Yes, I know what I am doing Sí, se lo que estoy haciendo - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. La entrada de micrófono está desincronizada respecto la grabación y emisión comparado con la señal que se oye. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mide la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Refer to the Mixxx User Manual for details. Para más detalles, lea el manual de usuario de Mixxx. - + Configured latency has changed. La latencia configurada ha cambiado. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Vuelve a medir la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Realtime scheduling is enabled. La planificación en Tiempo Real está activada. - + Main output only Solo Salida principal - + Main and booth outputs Salidas principal y de cabina - + %1 ms %1 ms - + Configuration error Error de configuración @@ -7756,17 +8044,22 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de vaciado del búfer - + 0 0 @@ -7791,12 +8084,12 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Entrada - + System Reported Latency Latencia reportada por el sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente su búfer de audio si el contador de desbordamiento está aumentando o escuchas chasquidos durante la reproducción. @@ -7826,7 +8119,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Diagnóstico y sugerencias - + Downsize your audio buffer to improve Mixxx's responsiveness. Disminuya su búfer de audio para mejorar la velocidad de respuesta de Mixxx. @@ -7873,7 +8166,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Configuración de Vinilo - + Show Signal Quality in Skin Mostrar Calidad de Señal en la apariencia @@ -7909,46 +8202,51 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y + Pitch estimator + + + + Deck 1 Plato 1 - + Deck 2 Plato 2 - + Deck 3 Plato 3 - + Deck 4 Plato 4 - + Signal Quality Calidad de Señal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Con tecnología de xwax - + Hints Sugerencias - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione los dispositivos de sonico para el Control por Vinilo en el Panel de Hardware de Sonido. @@ -7956,58 +8254,58 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + Top Arriba - + Center Centrado - + Bottom Abajo - + 1/3 of waveform viewer options for "Text height limit" 1/3 de visualización de forma de onda - + Entire waveform viewer Visor de forma de onda completa - + 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. @@ -8025,22 +8323,17 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Tasa de fotograma - + OpenGL Status Estado de OpenGL - + Displays which OpenGL version is supported by the current platform. Muestra qué versión de OpenGL es soportada por la plataforma actual. - - Normalize waveform overview - Normalizar vista de forma de onda - - - + Average frame rate Refresco de pantalla promedio @@ -8056,7 +8349,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Nivel de zoom por defecto - + Displays the actual frame rate. Muestra la tasa de refresco actual. @@ -8091,7 +8384,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Graves - + Show minute markers on waveform overview Mostrar marcadores de minutos en la vista de forma de onda @@ -8136,7 +8429,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Ganancia visual global - + 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. La vista general de forma de onda muestra la forma de onda de la pista entera. @@ -8205,22 +8498,22 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se pt - + Caching Almacenamiento en caché - + 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 almacena en caché las formas de onda de las pistas en el disco la primera vez que se carga una pista. Esto reduce el uso de la CPU cuando se está jugando en vivo, pero requiere espacio en disco adicional. - + Enable waveform caching Habilitar el almacenamiento en caché de forma de onda - + Generate waveforms when analyzing library Generar formas de onda cuando se analiza la biblioteca @@ -8236,7 +8529,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se - + Type Tipo @@ -8266,12 +8559,58 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Mover the marcador de posición en la pista a la izquierda, derecha o centro (Defabrica). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Visualizar formas de onda - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Las formas de onda claras en caché @@ -8763,7 +9102,7 @@ Carpeta: %2 BPM: - + Location: Ubicación: @@ -8778,27 +9117,27 @@ Carpeta: %2 Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Ajusta el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ajusta el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostrar los BPMs de la pista seleccionada. @@ -8853,49 +9192,49 @@ Carpeta: %2 Género - + ReplayGain: Ganancia de repetición: - + Sets the BPM to 200% of the current value. Ajusta el BPM al 200% del valor actual. - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + Clear BPM and Beatgrid Borrar el BPM y la cuadrícula de tempo - + Move to the previous item. "Previous" button Mover al elemento anterior. - + &Previous &Previo - + Move to the next item. "Next" button Mover al siguiente elemento. - + &Next &Siguiente @@ -8920,12 +9259,12 @@ Carpeta: %2 Color - + Date added: Fecha de adición: - + Open in File Browser Abrir en el explorador de archivos @@ -8935,12 +9274,17 @@ Carpeta: %2 Tasa de muestreo: - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8949,90 +9293,90 @@ Utiliza este ajuste si tus pistas tienen un tempo constante (ej. la mayoría de A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en pistas que tienen cambios de tempo. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Ajusta el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Incrementa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Incrementa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee siguiendo el ritmo para establecer el BPM. - + Tap to Beat Pulse siguiendo el ritmo - + Hint: Use the Library Analyze view to run BPM detection. Truco: Use la vista de análisis en la biblioteca para ejecutar la detección de BPM. - + Save changes and close the window. "OK" button Guardar cambios y cerrar la ventana. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar cambios y cerrar. - + Save changes and keep the window open. "Apply" button Guardar cambios y mantener abierta la ventana. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) (sin color) @@ -9189,7 +9533,7 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en &OK - + (no color) (sin color) @@ -9391,27 +9735,27 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Rubberband R3 (near-hi-fi quality) Banda elástica R3 (calidad casi alta fidelidad) - + Unknown, using Rubberband (better) Desconocido, utilizando Banda elástica (mejor) - + Unknown, using Soundtouch Desconocido, usando Soundtouch @@ -9626,15 +9970,15 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en 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 @@ -9646,57 +9990,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9704,37 +10048,37 @@ de OpenGL. Library - + This or a parent directory is already in your library. Este directorio o su superior ya se encuentra en tu biblioteca. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Este directorio o el indicado no existe o es inaccesible. Cancelando la operación para evitar inconsistencias de biblioteca. - - + + This directory can not be read. Este directorio no puede ser leído. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ha ocurrido un error desconocido. Cancelando la operación para evitar inconsistencias de biblioteca - + Can't add Directory to Library No se pudo agregar el directorio a la biblioteca - + Could not add <b>%1</b> to your library. %2 @@ -9743,27 +10087,27 @@ Cancelando la operación para evitar inconsistencias de biblioteca %2 - + Can't remove Directory from Library No se pudo remover el directorio de la biblioteca. - + An unknown error occurred. Ha ocurrido un error desconocido. - + This directory does not exist or is inaccessible. Este directorio no existe o es inaccesible. - + Relink Directory Reenlazar directorio - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9775,22 +10119,22 @@ Cancelando la operación para evitar inconsistencias de biblioteca 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. @@ -9928,12 +10272,12 @@ Do you really want to overwrite it? Pistas Ocultas - + Export to Engine DJ Exportar a Engine DJ - + Tracks Pistas @@ -9941,37 +10285,37 @@ 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 @@ -9981,213 +10325,213 @@ Do you really want to overwrite it? apariencia - + Allow Mixxx to hide the menu bar? ¿Permitir a Mixxx ocultar la barra de menú? - + Hide Always show the menu bar? Ocultar - + Always show Mostrar siempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra de menú de Mixxx ha sido ocultada y se puede alternar presionando la tecla <b>Alt</b>. <br><br>Haz clic en <b>%1</b> para aceptar. <br><br>Haz clic en <b>%2</b> para desactivarlo, por ejemplo si usas Mixxx sin un teclado. <br><br>Puedes cambiar este ajuste en cualquier momento en Preferencias -> Interfaz. <br> - + Ask me again Pregúntame de nuevo - - + + 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? No se ha seleccionado un dispositivo de Entrada para este micrófono. ¿Deseas escoger uno ahora? - + There is no input device selected for this auxiliary. Do you want to select an input device? No se ha seleccionado un dispositivo de entrada para este Auxiliar. ¿Deseas escoger uno ahora? - + Scan took %1 El escaneo tomo %1 - + No changes detected. No se han detectado cambios - + %1 tracks in total %1 pistas en total - + %1 new tracks found Encontradas %1 pistas nuevas - + %1 moved tracks detected %1 pistas movidas detectadas - + %1 tracks are missing (%2 total) %1 pistas perdidas (%2 en total) - + %1 tracks have been rediscovered %1 pistas han sido reencontradas - + Library scan finished Escaneo de la biblioteca terminado - + 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 Renderizado directo 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. 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><b>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? @@ -10203,13 +10547,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reproducción @@ -10219,58 +10563,63 @@ Do you want to select an input device? Aleatorizar lista de reproducción - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Las listas de reproducción son listar ordenadas de pistas que te permiten planificar tus sesiones de DJ. - + 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. Podría ser necesario saltar algunas pistas en tu lista de reproducción planificada, o añadir algunas pistas diferentes, con el fin de mantener la energía de tu audiencia. - + 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 @@ -10369,59 +10718,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 @@ -10535,69 +10884,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabina - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier Bus izquierdo - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus derecho - + Invalid Bus + Audio path indetifier Bus inválido - + Deck + Audio path indetifier Plato - + Record/Broadcast + Audio path indetifier Grabación / Emisión en vivo - + Vinyl Control + Audio path indetifier Control de vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de ruta %1 desconocida @@ -10940,47 +11302,49 @@ Si la amplitud es cero, este parámetro permite mover la posición manualmente p Ancho - + Metronome Metrónomo - + + The Mixxx Team Equipo de Mixxx - + Adds a metronome click sound to the stream Añade el sonido de tic tac de un metrónomo a la señal de salida - + BPM BPM - + Set the beats per minute value of the click sound Define las pulsaciones por minuto del tic tac - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved Sincroniza el BPM con el de la pista, si se puede obtener - + + Gain Ganancia - + Set the gain of metronome click sound Configura la ganancia del sonido del metrónomo @@ -11784,14 +12148,14 @@ Todo a la derecha: final del período La grabación OGG no está soportada. La librería OGG/Vorbis podría no inicializarse. - - + + encoder failure falla del codificador - - + + Failed to apply the selected settings. Fallo al aplicar los ajustes seleccionados. @@ -11931,7 +12295,7 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"La cantidad de amplificación aplicada a la señal de audio. A niveles más altos, el audio estará más distorsionado. - + Passthrough Paso @@ -11983,31 +12347,102 @@ Consejo: compensa las voces de "ardillitas" o "gruñonas"Compensación / Makeup - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - El botón Auto Makeup activa la ganancia compensatoria automática -para mantener la señal entrante y saliente tan sonoras como sea posible. + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + El botón Auto Makeup activa la ganancia compensatoria automática +para mantener la señal entrante y saliente tan sonoras como sea posible. + + + + Off + Apagado + + + + On + Encendido + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Límite (Threshold, dBFS) + + + + + Threshold + Límite + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Apagado + + Knee (dB) + - - On - Encendido + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Límite (Threshold, dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Límite + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12039,6 +12474,7 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e Knee (dBFS) + Knee Knee @@ -12049,11 +12485,13 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e La perilla de Knee es utilizada para lograr una curva de compresión redondeada. + Attack (ms) Ataque (ms) + Attack Ataque @@ -12066,11 +12504,13 @@ will set in once the signal exceeds the threshold la compresión una vez que la señal supere el Límite. + Release (ms) Liberación (Release, ms) + Release Release @@ -12101,12 +12541,12 @@ pueden introducir un efecto de "bombeo" y/o distorsión. varios - + built-in nativo - + missing no encontrado @@ -12141,42 +12581,42 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Stem #%1 - + Empty Vacío - + Simple Simple - + Filtered Filtrado - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Agrupado - + Unknown Desconocido @@ -12437,193 +12877,193 @@ pueden introducir un efecto de "bombeo" y/o distorsión. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontró un problema - + Could not allocate shout_t No se pudo asignar shout_t - + Could not allocate shout_metadata_t No se pudo asignar shout_metadata_t - + Error setting non-blocking mode: Error al establecer el modo "sin bloqueo": - + Error setting tls mode: Error al configurar el modo tls: - + Error setting hostname! ¡Error al establecer el nombre de host! - + Error setting port! ¡Error al establecer el puerto! - + Error setting password! ¡Error al establecer la contraseña! - + Error setting mount! ¡Error al establecer el punto de montaje! - + Error setting username! ¡Error al establecer el nombre de usuario! - + Error setting stream name! ¡Error al establecer el nombre de la emisión! - + Error setting stream description! ¡Error al establecer la descripción de la emisión! - + Error setting stream genre! ¡Error al establecer el género de la emisión! - + Error setting stream url! ¡Error al establecer la URL de la emisión! - + Error setting stream IRC! ¡Error de ajuste de retransmisión en IRC! - + Error setting stream AIM! ¡Error de ajuste de retransmisión en AIM! - + Error setting stream ICQ! ¡Error de ajuste de retransmisión en ICQ! - + Error setting stream public! Error al iniciar la emisión pública! - + Unknown stream encoding format! ¡Formato de codificación de transmisión desconocido! - + Use a libshout version with %1 enabled Usar una versión de libshout con %1 activado - + Error setting stream encoding format! Error ajuste formato de codificación en emisión! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Transmitir a 96 kHz con Ogg Vorbis no está soportado actualmente. Por favor intente una frecuencia de muestreo diferente o cambie a una codificación diferente. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Consulta https://github.com/mixxxdj/mixxx/issues/5701 para más información. - + Unsupported sample rate Tasa de muestreo no soportada - + Error setting bitrate Error al establecer la tasa de bits - + Error: unknown server protocol! ¡Error: protocolo del servidor desconocido! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast solo soporta codificadores MP3 y AAC - + Error setting protocol! ¡Error al establecer el protocolo! - + Network cache overflow Caché de red excedido - + Connection error Error de connexión - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de las fuentes de emisión en vivo ha lanzado este error:<br><b>Error con la fuente '%1':</b><br> - + Connection message Mensaje de conexión - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensaje de la fuente de emisión en vivo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Se ha perdido la conexión al servidor de emisión y han fallado %1 intentos de reconexión. - + Lost connection to streaming server. Se ha perdido la conexión al servidor de emisión - + Please check your connection to the Internet. Comprueba tu conexión a internet. - + Can't connect to streaming server No se puede conectar al servidor de emisión - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12631,7 +13071,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoftwareWaveformWidget - + Filtered Filtrada @@ -12639,23 +13079,23 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoundManager - - + + a device un dispositivo - + An unknown error occurred Ocurrió un error desconocido - + Two outputs cannot share channels on "%1" Dos salidas no pueden usar los mismos canales de %1 - + Error opening "%1" Error al abrir "%1" @@ -12840,7 +13280,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Spinning Vinyl Vinilo virtual @@ -13022,7 +13462,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Cover Art Carátula @@ -13212,243 +13652,243 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la ganancia del filtro de graves en cero, mientras está activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Muestra el tempo de la pista cargada, en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Clave - + BPM Tap Golpeo de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el BPM para que coincida con las pulsaciones realizadas. - + Adjust BPM Down Reduce el BPM - + When tapped, adjusts the average BPM down by a small amount. Cuando se pulsa, reduce el BPM promedio un poco. - + Adjust BPM Up Aumenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Cuando se pulsa, aumenta el BPM promedio un poco. - + Adjust Beats Earlier Mueve la cuadrícula un poco antes - + When tapped, moves the beatgrid left by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la izquierda. - + Adjust Beats Later Mueve la cuadrícula un poco después - + When tapped, moves the beatgrid right by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la derecha. - + Tempo and BPM Tap Golpeo de Tempo y BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar la sección de vinilo giratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. Alternar el bloqueo tonal durante la reproducción puede producir una pequeña distorsión de audio. - + Toggle visibility of Loop Controls Cambia la visibilidad de los Controles de Bucles - + Toggle visibility of Beatjump Controls Cambia la visibilidad de los Controles de Salto de Ritmo - + Toggle visibility of Rate Control Alternar visibilidad del control de velocidad - + Toggle visibility of Key Controls Cambia la visibilidad de los Controles de Clave - + (while previewing) (mientras se previsualiza) - + Places a cue point at the current position on the waveform. Coloca un punto de Cue en la posición actual de la forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Detiene la pista en el punto cue, O BIEN va al punto cue y reproduce en soltar (modo CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Establece el punto Cue (Modo Pioneer/Mixxx/Numark), establece el punto Cue y reproduce en soltar (modo CUP) O BIEN hace una preescuha del mismo (Modo Denon). - + Is latching the playing state. Está reteniendo el estado de reproducción. - + Seeks the track to the cue point and stops. Lleva la pista al punto de Cue y para. - + Play Reproducir - + Plays track from the cue point. Reproduce la pista desde el punto Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envía el audio del canal seleccionado a la salida de auriculares, seleccionada en Preferencias -> Hardware de Sonido - + (This skin should be updated to use Sync Lock!) (Esta carátula debería actualizarse para utilizar Bloqueo de Sincronización!) - + Enable Sync Lock Habilitar Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. Pulse para sincronizar el tiempo con otras pistas en reproducción o líder de sincronización. - + Enable Sync Leader Habilitar Sync Lock - + When enabled, this device will serve as the sync leader for all other decks. Cuando está habilitado, este dispositivo servirá como líder de sicronización para todas las otros platos. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Es relevante cuando una pista con tempo dinámico es cargada a un deck líder de sincronización. En ese caso, otros dispositivos sincronizados adoptarán el tempo cambiante. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Cambia la velocidad de reproducción de la pista (afecta tanto el tempo como el tono). Si está habilitado el bloqueo, únicamente afecta al tempo. - + Tempo Range Display Visualizador del rango de tempo - + Displays the current range of the tempo slider. Muestra el rango actual del deslizador de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Se recupera la pista expulsada cuando no hay ninguna pista cargada, es decir, vuelve a cargar la pista que se expulsó en último lugar (de cualquier deck). - + Delete selected hotcue. Elimina la hotcue seleccionada. - + Track Comment Comentario de la pista - + Displays the comment tag of the loaded track. Muestra la etiqueta de comentario de la pista cargada. - + Opens separate artwork viewer. Abre el visualizador separado de carátulas. - + Effect Chain Preset Settings Configuraciones de Preconfiguración de Cadena de Efectos - + Show the effect chain settings menu for this unit. Muestra el menú de las configuraciones de las cadenas de efectos para esta unidad. - + Select and configure a hardware device for this input Selecciona y configura un dispositivo de hardware para esta entrada - + Recording Duration Duración de la grabación @@ -13671,948 +14111,984 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la velocidad de reproducción baja (pequeña cantidad) cuando se activa. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el tempo para coincidir con la frecuencia de pulsaciones. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Rate Tap and BPM Tap Frecuencia de pulsaciones y de BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/cuadrícula de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/Cuadrícula de tiempo para la pista cargada. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/cuadrícula de tiempo - + Tempo and Rate Tap Toques de Tempo y Frecuencia - + Tempo, Rate Tap and BPM Tap Toques de Tempo, Frecuencia y BPM - + Shift cues earlier Cambia marcas antes - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Cambia marcas importadas desde Serato o Rekordbox si están ligeramente desfazadas. - + Left click: shift 10 milliseconds earlier Clic izquierdo: adelantar 10 milisegundos - + Right click: shift 1 millisecond earlier Clic derecho: adelantar 1 milisegundo - + Shift cues later Retrasar cues - + Left click: shift 10 milliseconds later Clic izquierdo: retrasar 10 milisegundos - + Right click: shift 1 millisecond later Clic derecho: retrasar 1 milisegundo - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Arrastra un botón de Hotcue aquí para continuar reproduciendo después de soltar la hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Sugerencia: cambie el modo por defecto de las cues en Preferencias -> Platos. - + Mutes the selected channel's audio in the main output. Silencia el audio del canal seleccionado en la salida principal. - + Main mix enable Activador de mezcla principal - + Hold or short click for latching to mix this input into the main output. Clic sostenido o corto para enganchar, para mezclar esta entrada con la salida principal. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si la hotcue es una cue de bucle, activa el bucle y salta hacia él si se encuentra detrás de la posición de reproducción. - + If the play position is inside an active loop, stores the loop as loop cue. Si la posición de reproducción se encuentra dentro de un bucle activo, almacena el bucle como una hotcue de bucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Arrastrar este botón dentro de otro botón de hotcue para moverlo hacia este (cambiando su número). Si la otra hotcue ya se encuentra definida, las dos son intercambiadas. - + Expand/Collapse Samplers Expandir/contraer samplers - + Toggle expanded samplers view. Alternar la vista expandida de los samplers. - + Displays the duration of the running recording. Muestra la duración de la grabación en curso. - + Auto DJ is active Auto DJ se encuentra activo - + Red for when needle skip has been detected. Rojo cuando se detecta un salto de aguja. - + Hot Cue - Track will seek to nearest previous hotcue point. Acceso Directo - La pista buscará el punto anterior más cercano acceso directo. - + Sets the track Loop-In Marker to the current play position. Establece la marca de inicio de bucle a la posición actual - + Press and hold to move Loop-In Marker. Mantener presionado para mover la marca de inicio de bucle. - + Jump to Loop-In Marker. Ir a la marca de inicio de bucle. - + Sets the track Loop-Out Marker to the current play position. Establece la marca de fin de bucle a la posición actual. - + Press and hold to move Loop-Out Marker. Mantener presionado para mover la marca de fin de bucle. - + Jump to Loop-Out Marker. Ir a la marca de fin de bucle. - + If the track has no beats the unit is seconds. Si la pista no tiene pulsaciones, la unidad es segundos. - + Beatloop Size Pulsaciones del bucle - + Select the size of the loop in beats to set with the Beatloop button. Define el tamaño del bucle en pulsaciones a usar cuando se pulse el botón de bucle de pulsaciones. - + Changing this resizes the loop if the loop already matches this size. Al cambiar este valor, cambiará el tamaño del bucle existente, si tenía el tamaño anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduce a la mitad el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Dobla el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Start a loop over the set number of beats. Activa un bucle con la cantidad definida de pulsaciones. - + Temporarily enable a rolling loop over the set number of beats. Activa temporalmente un bucle de continuación con la cantidad de pulsaciones definidas. - + Beatloop Anchor Ancla del bucle de pulsaciones - + Define whether the loop is created and adjusted from its staring point or ending point. Define si el bucle es creado y ajustado desde su punto de inicio o de final. - + Beatjump/Loop Move Size Tamaño del salto de pulsaciones/Desplazamiento del bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la cantidad de pulsaciones a saltar o a mover el bucle con los botones de avance/retroceso. - + Beatjump Forward Avanzar en pulsaciones - + Jump forward by the set number of beats. Avanza la pista la cantidad definida de pulsaciones. - + Move the loop forward by the set number of beats. Avanza el bucle en la cantidad definida de pulsaciones. - + Jump forward by 1 beat. Avanza 1 pulsación. - + Move the loop forward by 1 beat. Avanza el bucle 1 pulsación. - + Beatjump Backward Retrocede en pulsaciones - + Jump backward by the set number of beats. Retrocede la cantidad de pulsaciones definida. - + Move the loop backward by the set number of beats. Retrocede el bucle la cantidad de pulsaciones definida. - + Jump backward by 1 beat. Retrocede 1 pulsación. - + Move the loop backward by 1 beat. Retrocede el bucle 1 pulsación. - + Reloop Repite el bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle está por delante de la posición actual, este no se activará hasta que se llege a él. - + Works only if Loop-In and Loop-Out Marker are set. Solo funciona si las marcas de inicio y fin de bucle estan definidas. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, va a la posición de inicio de bucle y se detiene. - + Displays the elapsed and/or remaining time of the track loaded. Muestra el tiempo transcurrido y/o restante de la pista cargada. - + Click to toggle between time elapsed/remaining time/both. Pulsar para cambiar entre tiempo transcurrido/restante/ambos - + Hint: Change the time format in Preferences -> Decks. Sugerencia: cambie el formato de tiempo en Preferencias -> Platos. - + Show/hide intro & outro markers and associated buttons. Mostrar/ocultar marcadores de intro y outro, y sus botones asociados. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador Inicial de Entrada - - - - + + + + If marker is set, jumps to the marker. Si el marcador se encuentra definido, salta al marcador. - - - - + + + + If marker is not set, sets the marker to the current play position. Si el marcador no se encuentra definido, lo configura a la posición de reproducción actual. - - - - + + + + If marker is set, clears the marker. Si el marcador se encuentra definido, lo elimina. - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste la mezcla de la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + D/W mode: Crossfade between dry and wet Modo D/W: fundido cruzado entre seco y húmedo - + D+W mode: Add wet to dry Modo D+W: agregue húmedo a seco - + Mix Mode Modo mezcla - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste cómo se mezcla la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + 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 seco / húmedo (líneas cruzadas): Mezcle los fundidos cruzados de la perilla entre seco y húmedo. Use esto para cambiar el sonido de la pista con EQ y efectos de 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 seco + húmedo (línea seca plana): la perilla de mezcla agrega húmedo a seco. Use esto para cambiar solo la señal efectuada (húmeda) con EQ y efectos de filtro. + Modo Seco+Húmedo (línea seca plana): La perilla de mezcla agrega mojado a seco +Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efectos de filtrado. - + Route the main mix through this effect unit. Enruta la mezcla principal a través de esta unidad de efectos. - + Route the left crossfader bus through this effect unit. Enruta el bus izquierdo del crossfader a través de la unidad de efectos. - + Route the right crossfader bus through this effect unit. Enruta el bus derecho del crossfader a través de la unidad de efectos - + Right side active: parameter moves with right half of Meta Knob turn Derecha activo: el parámetro se mueve al mover la mitad derecha del control Meta. - + Stem Label Etiqueta de stem - + Name of the stem stored in the stem file Nombre del stem almacenado en el archivo de stem - + Text is displayed in the stem color stored in the stem file El texto es presentado con el color del stem almacenado en el archivo de stem - + this stem color is also used for the waveform of this stem este color de stem también es usado en la forma de onda de este stem - + Stem Mute Silenciar stem - + Toggle the stem mute/unmuted Alterna el silencio del stem - + Stem Volume Knob Perilla de volumen del stem - + Adjusts the volume of the stem Ajusta el volumen del stem - + Skin Settings Menu Menú de las opciones de la Apariencia - + Show/hide skin settings menu Muestra/esconde el menú de opciones de la Apariencia - + Save Sampler Bank Guardar banco de muestras - + Save the collection of samples loaded in the samplers. Guarda la colección de samples cargada en los samplers. - + Load Sampler Bank Cargar banco de muestras - + Load a previously saved collection of samples into the samplers. Carga una colección de samples previamente guardada en los samplers. - + Show Effect Parameters Mostrar parámetros de efectos - + Enable Effect Activar efecto - + Meta Knob Link Enlace de la rueda Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura cómo le afecta a este parámetro la rueda Meta. - + Meta Knob Link Inversion Inversión del enlaze de la rueda Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invierte la dirección en la que se mueve el parámetro al mover la rueda Meta. - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Previous Chain Cadena anterior - + Next/Previous Chain Cadena siguiente/anterior - + Clear Borrar - + Clear the current effect. Borra el efecto actual. - + Toggle Conmutar - + Toggle the current effect. Conmuta el efecto actual. - + Next Siguente - + Clear Unit Limpiar unidad - + Clear effect unit. Unidad claro efecto. - + Show/hide parameters for effects in this unit. Muestra/esconde los parámetros de los efectos de esta unidad. - + Toggle Unit Conmutar la unidad - + Enable or disable this whole effect unit. Activa o desactiva la unidad de efectos. - + Controls the Meta Knob of all effects in this unit together. Controla a la vez las ruedas Meta de todos los efectos asociados a esta unidad. - + Load next effect chain preset into this effect unit. Carga el siguiente preajuste de efectos en esta unidad de efectos. - + Load previous effect chain preset into this effect unit. Carga el anterior preajuste de efectos en esta unidad de efectos. - + Load next or previous effect chain preset into this effect unit. Carga el siguiente o anterior preajuste de efectos en esta unidad de efectos. - - - - - - - - - + + + + + + + + + Assign Effect Unit Asignar la unidad de efectos - + Assign this effect unit to the channel output. Asigna esta unidad de efectos a la salida del canal. - + Route the headphone channel through this effect unit. Redirige la salida de auriculares a través de la unidad de efectos. - + Route this deck through the indicated effect unit. Redirige este plato a través de la unidad de efectos indicada. - + Route this sampler through the indicated effect unit. Redirige este reproductor a través de la unidad de efectos indicada. - + Route this microphone through the indicated effect unit. Redirige este micrófono a través de la unidad de efectos indicada. - + Route this auxiliary input through the indicated effect unit. Redirige la entrada auxiliar a través de la unidad de efectos indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. La unidad de efectos debe estar asignada a un plato o otra fuente de sonido para oír el efecto. - + Switch to the next effect. Pasa al siguiente efecto. - + Previous Anterior - + Switch to the previous effect. Pasa al efecto anterior. - + Next or Previous Siguiente o Anterior - + Switch to either the next or previous effect. Pasa al siguiente o anterior efecto. - + Meta Knob Rueda Meta - + Controls linked parameters of this effect Controla los parámetros enlazados del efecto - + Effect Focus Button Botón de foco de efecto - + Focuses this effect. Pone el foco en el efecto. - + Unfocuses this effect. Quita el foco del efecto. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulta la página web de tu controlador en la wiki del Mixxx para más información - + Effect Parameter parámetro de efecto - + Adjusts a parameter of the effect. Ajusta un parámetro del efecto. - + Inactive: parameter not linked Inactivo: parámetro no enlazado - + Active: parameter moves with Meta Knob Activo: el parámetro se mueve con la rueda Meta - + Left side active: parameter moves with left half of Meta Knob turn Izquierda activo: el parámetro se mueve con la primera mitad de la rueda Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Izquierda y derecha activo: el parámetro recorre todo el rango con la primera mitad de la rueda Meta, y vueve atrás con la segunda mitad - - + + Equalizer Parameter Kill Parámetro de supresión del ecualizador - - + + Holds the gain of the EQ to zero while active. Mantiene la ganáncia de EQ a cero mientras está activo. - + Quick Effect Super Knob Rueda Súper de efecto rápido - + Quick Effect Super Knob (control linked effect parameters). Rueda Súper de efecto rápido (controla los parámetros de efecto asociados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Nota: Puedes cambiar el efecto rápido por defecto en Preferéncias > Ecualizadores. - + Equalizer Parameter ecualizador paramétrico - + Adjusts the gain of the EQ filter. Ajusta la ganáncia del filtro de EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Nota: Se puede cambiar el modo de EQ por defecto en Preferencias > Ecualizadores. - - + + Adjust Beatgrid Ajustar cuadrícula de tempo - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la cuadrícula de tempo para que el golpe más cercano se alinee con la posición actual de reproducción. - - + + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + If quantize is enabled, snaps to the nearest beat. Si la cuantización está activada, se acerca al compás más cercano. - + Quantize Cuantizar - + Toggles quantization. Conmutar la cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Cuando está activada, los bucles y cue se alinean con el compás más cercano. - + Reverse Reversa - + Reverses track playback during regular playback. Reproduce en reversa, durante reproducción normal. - + Puts a track into reverse while being held (Censor). Pone la pista en reversa mientras se mantiene presionado. - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducción se continuará en el punto al que habría llegado la pista si no hubiese puesto en reversa. - - - + + + Play/Pause Reproducir/Pausar - + Jumps to the beginning of the track. Salta al principio de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) y la fase de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Sync and Reset Key Sincroniza y resetea la tonalidad - + Increases the pitch by one semitone. Incrementa el tono en una seminota. - + Decreases the pitch by one semitone. Decrementa el tono en una seminota. - + Enable Vinyl Control Activar vinilo de control - + When disabled, the track is controlled by Mixxx playback controls. Si está desactivado, los controles de reproducción del Mixxx controlan la pista. - + When enabled, the track responds to external vinyl control. Si está activado, el control de vinilo externo controla la pista. - + Enable Passthrough Activa el paso de audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer de audio es demasiado pequeño para llevar a cabo todo el procesamiento de audio. - + Displays cover artwork of the loaded track. Muestra la carátula de la pista cargada. - + Displays options for editing cover artwork. Muestra las opciones de edición de carátula. - + Star Rating Puntuación - + Assign ratings to individual tracks by clicking the stars. Asigna la puntuación de cada pista pulsando en las estrellas. @@ -14639,7 +15115,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Right click hotcues to edit their labels and colors. - Clic derecho en hotcues para editar sus etiquetas y colores. + Click derecho en los accesos directos para editar sus etiquetas y colores. @@ -14747,33 +15223,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Intensidad de atenuación al usar el Micrófono - + Prevents the pitch from changing when the rate changes. Evita que el tono cambie al cambiar la velocidad. - + Changes the number of hotcue buttons displayed in the deck - Cambia el número de botones de acceso directo que se muestran en la cubierta + Cambia el número de botones de acceso directo mostrados en el deck - + Starts playing from the beginning of the track. Comienza la reproducción desde el principio de la pista. - + Jumps to the beginning of the track and stops. Salta al principio de la pista y se detiene. - - + + Plays or pauses the track. Reproduce o pausa la pista. - + (while playing) (estando en reproducción) @@ -14793,215 +15269,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Medidor de volumen del canal principal R - + (while stopped) (mientras está parado) - + Cue Cue - + Headphone Auriculares - + Mute Silenciar - + Old Synchronize Sincronización antígua - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Se sincroniza con la primera pista (en orden numérico) que está sonando y tiene BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hay pistas en reprodución, se sincroniza con la primera pista que tenga BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Mantener pulsado durante un segundo para activar la sincronización fija para este plato. - + 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. Los platos con la sincronización bloqueada reproducirán todos al mismo tempo, y si además tienen la quantización activada, también se alinearán los compases. - + Resets the key to the original track key. Resetea la clave musical a la original de la pista. - + Speed Control Control de velocidad - - - + + + Changes the track pitch independent of the tempo. Cambia el tono de la pista independientemente del tempo. - + Increases the pitch by 10 cents. Aumenta el tono 10 centésimas. - + Decreases the pitch by 10 cents. Reduce el tono 10 centésimas. - + Pitch Adjust Ajuste de velocidad - + Adjust the pitch in addition to the speed slider pitch. Ajusta la velocidad añadiendo al cambio del deslizador de velocidad. - + Opens a menu to clear hotcues or edit their labels and colors. Abre un menú para limpiar los hotcues o editar sus etiquetas y colores. - + Drag this button onto a Play button while previewing to continue playback after release. Arrastre este botón a un boton de Play durante la preescucha para continuar la reproducción tras soltarlo. - + Dragging with Shift key pressed will not start previewing the hotcue. Arrastrar mientras presiona la tecla Shift no iniciará la preescucha de la hotcue. - + Record Mix Grabar mezcla - + Toggle mix recording. Conmutar la grabación de la mezcla. - + Enable Live Broadcasting Activar la emisión en vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Provides visual feedback for Live Broadcasting status: Da una indicación acerca del estado de la emisión en vivo: - + disabled, connecting, connected, failure. desactivado, conectando, conectado, fallo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Cuando está activado, el plato reproduce directamente el audio que recibe por la entrada de vinilo. - + Playback will resume where the track would have been if it had not entered the loop. La reproducción se reanudará en el punto al que habría llegado la pista si no hubiese entrado en el bucle. - + Loop Exit Salida del bucle - + Turns the current loop off. Desactiva el bucle actual. - + Slip Mode Modo Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cuando está activado, la reproducción continúa en silencio mientras dura el bucle, la reproducción hacia atrás, scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Una vez desactivado, la reproducción (audible) seguirá donde la pista habría estado. - + Track Key The musical key of a track Tonalidad de la pista - + Displays the musical key of the loaded track. Muestra la clave musical de la pista cargada. - + Clock Reloj - + Displays the current time. Muestra la hora actual. - + Audio Latency Usage Meter Medidor de Latencia de Audio - + Displays the fraction of latency used for audio processing. Muestra la parte de latencia usada para el proceso de audio. - + A high value indicates that audible glitches are likely. Un valor alto indica que se pueden percibir ruidos. - + Do not enable keylock, effects or additional decks in this situation. No activar el bloqueo de tonalidad, los efectos o los platos adicionales en este caso. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latencia de Audio @@ -15041,259 +15517,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activa el control de vinilo desde el Menú -> Opciones. - + Displays the current musical key of the loaded track after pitch shifting. Muestra la clave musical actual para la pista cargada teniendo en cuenta el cambio de tonalidad. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Rebobinado rápido a través de la pista. - + Fast Forward Avance Rápido - + Fast forward through the track. Avance Rápido a través de la pista. - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Cambia la tonalidad a una clave musical que permite la transición harmónica de un plato a otro. Es necesario que se haya detectado la clave en ambos platos. - - - + + + Pitch Control Control del pitch - + Pitch Rate Ritmo de cambio de tonalidad - + Displays the current playback rate of the track. Muestra el ritmo de reproducción actual de la pista. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Estando activo la pista se repetirá si se pasa del final o si retrocede antes del comienzo. - + Eject Expulsar - + Ejects track from the player. Expulsa la pista del reproductor. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Si el hotcue está establecido, salta al hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Si el hotcue no está establecido, establece el hotcue en la actual posición de reproducción. - + Vinyl Control Mode Modo de control de vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - la posicion dentro del tema corresponde a la posicion y velocidad de la aguja. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - la velocidad del tema corresponde a la velocidad de la aguja independientemente de la posicion. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - la velocidad del tema corresponde a la ultima velocidad conocida independientemente de lo que se recibe de la aguja. - + Vinyl Status Estado del vinilo - + Provides visual feedback for vinyl control status: Provee retroalimentación visual sobre el estado del control de vinilo: - + Green for control enabled. Verde para control activo. - + Blinking yellow for when the needle reaches the end of the record. Amarillo parpadeante cuando la aguja alcanza el final de la grabación. - + Loop-In Marker Marcador de inicio de bucle - + Loop-Out Marker Marcador de fin de bucle - + Loop Halve Reducir bucle a la mitad - + Halves the current loop's length by moving the end marker. Reduce a la mitad la longitud del bucle actual, moviendo la marca de fin. - + Deck immediately loops if past the new endpoint. El plato vuelve al inicio del bucle inmediatamente si se ha superado el nuevo punto final. - + Loop Double Aumentar bucle al doble - + Doubles the current loop's length by moving the end marker. Aumenta al doble la longitud del bucle actual, moviendo la marca de fin. - + Beatloop Bucle de pulsaciones - + Toggles the current loop on or off. Activa o desactiva el bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Funciona sólo si se han definido las marcas de inicio y fin de bucle. - + Vinyl Cueing Mode Modo de Cue de Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina cómo los puntos Cue son tratados en el modo de control Relativo de Vinilos: - + Off - Cue points ignored. Off - Los puntos CUE se ignoran. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Cue - si se pone la aguja mas allá del punto cue, se irá al punto Cue de la pista. - + Track Time Tiempo de pista - + Track Duration Duración de la Pista - + Displays the duration of the loaded track. Muestra la duración de la pista cargada. - + Information is loaded from the track's metadata tags. Información cargada desde el tag de metadatos de las pistas. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Muestra el artista de la pista cargada. - + Track Title Título de la pista - + Displays the title of the loaded track. Muestra el título de la pista cargada. - + Track Album Álbum de la pista - + Displays the album name of the loaded track. Muestra el nombre del álbum de la pista cargada. - + Track Artist/Title Artista/Título de la pista - + Displays the artist and title of the loaded track. Muestra el artista y el título de la pista cargada. @@ -15524,47 +16000,75 @@ Carpeta: %2 WCueMenuPopup - + Cue number Número de cue - + Cue position Posición Marca - + Edit cue label - + Editar etiqueta de marca - + Label... Etiqueta... - + Delete this cue Borrar esta marca - - Toggle this cue type between normal cue and saved loop - Alterna el tipo de esta cue entre cue normal y bucle guardado + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic izquierdo: usar el tamaño anterior o el del bucle actual como el tamaño de bucle + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic derecho: usar la posición de reproducción actual como final del bucle si se encuentra después de la cue + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Hotcue #%1 @@ -15689,323 +16193,363 @@ Carpeta: %2 + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear &nueva Playlist - + Create a new playlist Crear una nueva lista de reproducción - + Ctrl+n Ctrl+N - + Create New &Crate Crear un nuevo&cajón - + Create a new crate Crear un nuevo cajón - + Ctrl+Shift+N Ctrl+Mayús+N - - + + &View &Vista - + Auto-hide menu bar Auto-ocultar barra de menú - + Auto-hide the main menu bar when it's not used. Auto-ocultar la barra de menú principal cuando no es utilizada. - + May not be supported on all skins. Puede no estar disponible para todas las apariencias. - + Show Skin Settings Menu Mostrar menú de ajustes de aspecto - + Show the Skin Settings Menu of the currently selected Skin Mostrar el menú de ajustes de aspecto del seleccionado actualmente - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar seccion del microfono - + Show the microphone section of the Mixxx interface. Muestra la sección de control de micrófono de la interfaz de Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar la Sección de Control de Vinilo - + Show the vinyl control section of the Mixxx interface. Muestra la sección de control de vinilo de la interfaz de Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar el reproductor de preescucha - + Show the preview deck in the Mixxx interface. Muestra el reproductor de preescucha en la interfaz de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Muestra carátulas - + Show cover art in the Mixxx interface. Muestra las carátulas en la interfaz de Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Space Menubar|View|Maximize Library Espacio - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Mostrar Mixxx a pantalla completa - + &Options &Opciones - + &Vinyl Control Control de &vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con codigo de tiempo en bandejas externas para controlar Mixxx - + Enable Vinyl Control &%1 Habilita el Control por Vinilo &%1 - + &Record Mix &Grabar Mezcla - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar transmisión en &vivo - + Stream your mixes to a shoutcast or icecast server Transmite tus mezclas a un servidor shoutcast o icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar Atajos de &Teclado - + Toggles keyboard shortcuts on or off Activa o desactiva los atajos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar la configuración de Mixxx (p.ej.: reproducción, MIDI, controles) - + &Developer &Desarrollador - + &Reload Skin &Recargar apariencia - + Reload the skin Recargar la apariencia - + Ctrl+Shift+R Ctrl+Mayús+R - + Developer &Tools U&tilidades de desarrollador - + Opens the developer tools dialog Abre el cuadro de diálogo de herramientas de desarrollo - + Ctrl+Shift+T Ctrl+Mayús+T - + Stats: &Experiment Bucket Estadísticas: Contadores &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el modo experimental. Recoje estadísticas en los contadores EXPERIMENT. - + Ctrl+Shift+E Ctrl+Mayús+E - + Stats: &Base Bucket Estadísticas: contadores &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el modo base. Recoje estadísticas en los contadores BASE. - + Ctrl+Shift+B Ctrl+Mayús+B - + Deb&ugger Enabled Dep&uración activada - + Enables the debugger during skin parsing Activa el depurador durante el análisis de la máscara - + Ctrl+Shift+D Ctrl+Mayús+D - + &Help Ay&uda - + Show Keywheel menu title Mostrar rueda de notas @@ -16022,74 +16566,74 @@ Carpeta: %2 Exportar biblioteca al formato Engine DJ - + Show keywheel tooltip text Mostrar rueda de notas - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Soporte &comunitario - + Get help with Mixxx Obtener ayuda con Mixxx - + &User Manual Manual de &usuario - + Read the Mixxx user manual. Lea el manual de usuario de Mixxx. - + &Keyboard Shortcuts Atajos de &Teclado - + Speed up your workflow with keyboard shortcuts. Trabaja más rápidamente usando los atajos de teclado. - + &Settings directory &Directorio de configuración - + Open the Mixxx user settings directory. Abre el directorio de configuración de usuario de Mixxx. - + &Translate This Application &Traducir esta aplicación - + Help translate this application into your language. Ayude a traducir esta aplicación a su idioma. - + &About &Acerca de - + About the application Acerca de la aplicación @@ -16097,25 +16641,25 @@ Carpeta: %2 WOverview - + Passthrough Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Listo para reproducir, analizando... - - + + Loading track... Text on waveform overview when file is cached from source Cargando pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizando... @@ -16124,25 +16668,13 @@ Carpeta: %2 WSearchLineEdit - - Clear input - Clear the search bar input field - Borrar el texto - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input Borrar el texto @@ -16153,93 +16685,87 @@ Carpeta: %2 Buscar... - + Clear the search bar input field Limpia el campo de entrada de la barra de búsqueda - - Enter a string to search for - Introducir el texto a buscar + + Return + Volver - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operadores como bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Para más información vea el Manual de Usuario> Biblioteca Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Atajo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Poner el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retroceso + + Additional Shortcuts When Focused: + - Shortcuts - Atajos + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Volver + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Activa la búsqueda antes del tiempo de espera de "búsqueda mientras escribe" o salte a la vista de pistas después + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Espacio - + Toggle search history Shows/hides the search history entries Alternar historial de búsqueda - + Delete or Backspace Borrar o Retorno - - Delete query from history - Borrar Consulta del Historial - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Salir de la busqueda + + Delete query from history + Borrar Consulta del Historial @@ -16323,625 +16849,640 @@ Carpeta: %2 WTrackMenu - + Load to Cargar en - + Deck Plato - + Sampler Reproductor de muestras - + Add to Playlist Añadir a la lista de reproducción - + Crates Cajones - + Metadata Metadatos - + Update external collections Actualizar colecciones externas - + Cover Art Carátula - + Adjust BPM Ajustar BPM - + Select Color Seleccionar color - - + + Analyze Analizar - - + + Delete Track Files Borrar Archivos de Pistas - + 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) - + Preview Deck Reproductor de preescucha - + Remove Quitar - + Remove from Playlist Eliminar de la lista de reproducción - + Remove from Crate Eliminar de la caja - + Hide from Library Ocultar de la biblioteca - + Unhide from Library Volver a mostrar en la biblioteca - + Purge from Library Eliminar de la biblioteca - + Move Track File(s) to Trash Mover archivo(s) de seguimiento a la papelera - + Delete Files from Disk Borrar Archivos del Disco - + Properties Propiedades - + Open in File Browser Abrir en el explorador de archivos - + Select in Library Selecciona en Biblioteca - + Import From File Tags Importar de los metadatos del fichero - + Import From MusicBrainz Importar de MusicBrainz - + Export To File Tags Exportar a metadatos del fichero - + BPM and Beatgrid BPM y cuadrícula de tempo - + Play Count Reproducciones - + Rating Puntuación - + Cue Point Punto CUE - - + + Hotcues Hotcues - + Intro - + Intro - + Outro - + Outro - + Key Clave - + ReplayGain Ganancia de reproducción - + Waveform Forma de onda - + Comment Comentario - + All Todos - + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Sort hotcues by position Ordenar hotcues por posición - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Desplazar la cuadrícula de tiempo medio beat - + Reanalyze Reanalizar - + Reanalyze (constant BPM) Reanalizar (BPM constante) - + Reanalyze (variable BPM) Reanalizar (BPM variable) - + Update ReplayGain from Deck Gain Actualizar ReplayGain desde la Ganancia de Plato - + Deck %1 Plato %1 - + Importing metadata of %n track(s) from file tags Importación de metadatos de %n pista a partir de las etiquetas del archivoImportación de metadatos de %n pistas a partir de las etiquetas de los archivosImportación de metadatos de %n pista(s) a partir de las etiquetas del archivo - + Marking metadata of %n track(s) to be exported into file tags Haciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivos - - + + 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 Añadir a nueva caja - + Scaling BPM of %n track(s) Escalando BPM de %n pista(s)Escalando BPM de %n pista(s)Escalando BPM de %n pista(s) - + Undo BPM/beats change of %n track(s) Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s) - + Locking BPM of %n track(s) Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s) - + Unlocking BPM of %n track(s) Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s) - + Setting rating of %n track(s) Definiendo evaluación de %n pistaDefiniendo evaluación de %n pistasDefiniendo evaluación de %n pista(s) - + Setting color of %n track(s) configuración de color de %n pista(s)configuración de color de %n pista(s)configuración de color de %n pista(s) - + Resetting play count of %n track(s) Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s) - + Resetting beats of %n track(s) Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s) - + Clearing rating of %n track(s) Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s) - + Clearing comment of %n track(s) Borrando comentarios de %n pistaBorrando comentarios de %n pistasBorrando comentarios de %n pista(s) - + Removing main cue from %n track(s) Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s) - + Removing outro cue from %n track(s) Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s) - + Removing intro cue from %n track(s) Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s) - + Removing loop cues from %n track(s) Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s) - + Removing hot cues from %n track(s) Removiendo los hot cues de %n pista(s)Removiendo los hot cues de %n pista(s)Removiendo los accesos directos de %n pista(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Ordenando hotcues de %n pista por posición (removiendo desfases)Ordenando hotcues de %n pistas por posición (removiendo desfases)Ordenando hotcues de %n pistas(s) por posición (removiendo desfases) - + Sorting hotcues of %n track(s) by position Ordenando hotcues de %n pista por posiciónOrdenando hotcues de %n pistas por posiciónOrdenando hotcues de %n pista(s) por posición - + Resetting keys of %n track(s) Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s) - + Resetting replay gain of %n track(s) Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s) - + Resetting waveform of %n track(s) Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s) - + Resetting all performance metadata of %n track(s) Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s) - + Move these files to the trash bin? ¿Mover estos archivos a la papelera? - + Permanently delete these files from disk? ¿Eliminar permanentemente estos archivos del disco? - - + + This can not be undone! ¡Esto no puede ser revertido! - + Cancel Cancelar - + Delete Files Eliminar archivos - + Okay Okey - + Move Track File(s) to Trash? ¿Mover los archivos de seguimiento a la papelera? - + Track Files Deleted Pistas eliminadas - + Track Files Moved To Trash Archivos de seguimiento movidos a la papelera - + %1 track files were moved to trash and purged from the Mixxx database. %1 archivos de pista fueron movidos a la papelera y purgados de la base de datos de Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 archivos de pistas han sido eliminados y se ha purgado de la base de datos de Mixxx. - + Track File Deleted Archivo de Pista Eliminado - + Track file was deleted from disk and purged from the Mixxx database. El archivo de pista ha sido eliminado del disco y purgado de la base de datos de Mixxx - + The following %1 file(s) could not be deleted from disk No se han podido eliminar del disco los siguientes %1 archivo(s) - + This track file could not be deleted from disk Este archivo de pista no se ha podido borrar del disco - + Remaining Track File(s) Renombrando archivo(s) de pista - + Close Cerrar - + Clear Reset metadata in right click track context menu in library Climpiar - + Loops Bucles - + Clear BPM and Beatgrid Limpia las BPM y la cuadrícula de tiempo - + Undo last BPM/beats change Revertir el último cambio de BPM/pulsaciones - + Move this track file to the trash bin? ¿Mover este archivo de pista a la papelera? - + Permanently delete this track file from disk? ¿Eliminar permanentemente este archivo de pista del disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Todos los platos donde estas pistas hayan sido cargadas se detendrán, y las pistas serán expulsadas. - + All decks where this track is loaded will be stopped and the track will be ejected. Todos los platos donde esta pista haya sido cargada se detendrán, y la pista será expulsada. - + Removing %n track file(s) from disk... Removiendo %n archivo(s) de pista del disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: si estás en la vista Ordenador o Grabación tienes que volver a hacer clic en la vista actual para ver los cambios. - + Track File Moved To Trash Archivo de seguimiento movido a la papelera - + Track file was moved to trash and purged from the Mixxx database. El archivo de seguimiento se ha movido a la papelera y se ha eliminado de la base de datos de Mixxx. - + Don't show again during this session No mostrar nuevamente durante esta sesión - + The following %1 file(s) could not be moved to trash El/los siguiente(s) %1 archivo(s) no pudieron ser movidos a la papelera - + This track file could not be moved to trash Este archivo de pista no se ha podido mover a la papelera + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Setting cover art of %n track(s)Setting cover art of %n track(s)Poniendo portadas de %n pista(s) - + Reloading cover art of %n track(s) Reloading cover art of %n track(s)Reloading cover art of %n track(s)Recarga de portadas de %n pista(s) @@ -16995,37 +17536,37 @@ Carpeta: %2 WTrackTableView - + Confirm track hide Confirmar ocultar pista - + Are you sure you want to hide the selected tracks? ¿Estas seguro de que quieres ocultar las pistas seleccionadas? - + Are you sure you want to remove the selected tracks from AutoDJ queue? ¿Esta seguro de que quiere eliminar las pistas seleccionadas de la cola del AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Estás seguro que quieres eliminar las pistas seleccionada de este cajón? - + Are you sure you want to remove the selected tracks from this playlist? ¿Esta seguro de que desea eliminar las pistas seleccionadas de la lista de reproducción? - + Don't ask again during this session No volver a preguntar durante esta sesión - + Confirm track removal Confirmar eliminación del track @@ -17033,12 +17574,12 @@ Carpeta: %2 WTrackTableViewHeader - + Show or hide columns. Mostrar u ocultar columnas. - + Shuffle Tracks Mezclar pistas @@ -17068,7 +17609,7 @@ Carpeta: %2 decks - platos + decks @@ -17076,22 +17617,22 @@ Carpeta: %2 Biblioteca - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers Controladores - + 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. @@ -17241,7 +17782,7 @@ Pulse Aceptar para salir. No network access - + Sin conexión a la red @@ -17249,6 +17790,24 @@ Pulse Aceptar para salir. La solicitud de la red no ha empezado + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17257,4 +17816,27 @@ Pulse Aceptar para salir. Ningún efecto cargado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_es_MX.qm b/res/translations/mixxx_es_MX.qm index e3cb0052d4fa..c58baf73f854 100644 Binary files a/res/translations/mixxx_es_MX.qm and b/res/translations/mixxx_es_MX.qm differ diff --git a/res/translations/mixxx_es_MX.ts b/res/translations/mixxx_es_MX.ts index 34b533950659..3a4feaefa5dd 100644 --- a/res/translations/mixxx_es_MX.ts +++ b/res/translations/mixxx_es_MX.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Cajas - + Enable Auto DJ Activar Auto DJ - + Disable Auto DJ Desactivar Auto DJ - + Clear Auto DJ Queue Limpiar la cola de Auto DJ - + Remove Crate as Track Source Remover Crate como Fuente de Archivos - + Auto DJ DJ Automatico - + Confirmation Clear Confirmación limpiada - + Do you really want to remove all tracks from the Auto DJ queue? Realmente quieres eliminar todas las pistas de la cola de Auto DJ? - + This can not be undone. ¡Esto no puede ser revertido! - + Add Crate as Track Source Añadir Crate como Fuente de Archivos @@ -223,7 +231,7 @@ - + Export Playlist Exportar lista de reproducción @@ -277,13 +285,13 @@ - + 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 @@ -298,12 +306,12 @@ ¿Desea realmente eliminar la lista de reproducción<b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca de tiempo @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. No se puede cargar la pista @@ -362,7 +370,7 @@ Canales - + Color Color @@ -377,7 +385,7 @@ Compositor - + Cover Art Portada @@ -387,7 +395,7 @@ Fecha de Agregado - + Last Played Última reproducción @@ -417,7 +425,7 @@ Tono - + Location Ubicación @@ -427,7 +435,7 @@ Resumen - + Preview Vista Previa @@ -467,7 +475,7 @@ Año - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recuperando imagen... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. No se puede usar el almacen de contraseñas seguro: el acceso al almacen ha fallado. - + Secure password retrieval unsuccessful: keychain access failed. No se ha podido obtener la contraseña: El acceso al almacen de claves a fallado. - + Settings error Error de configuración - + <b>Error with settings for '%1':</b><br> <b>Error en ajuste en '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Procesar @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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 @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx es un software de DJ de código abierto. Para más información, ver: - + Starts Mixxx in full-screen mode Iniciar Mixxx en modo pantalla completa - + Use a custom locale for loading translations. (e.g 'fr') Utiliza un locale personalizado para cargar traducciones. (ej. 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directorio de nivel superior donde Mixxx debería buscar sus archivos de recursos tales como mapeos MIDI, anulando la ubicación de instalación predeterminada. - + Path the debug statistics time line is written to Ruta a donde las estadísticas de depuración de la línea de tiempo son escritas. - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Causa que Mixxx muestre/registre todos los datos del controlador que recibe y las funciones en script que cargue - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! El mapeo del controlador generará advertencias y errores más agresivos cuando detecte un mal uso de las APIs del controlador. Los nuevos mapeos de controladores deben desarrollarse con esta opción activada. - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Habilita el modo desarrollador. Incluye información extra en el registro, estadísticas sobre el desempeño, y un menú de herramientas para el Desarrollador. - + Top-level directory where Mixxx should look for settings. Default is: Directorio de nivel superior en donde Mixxx debería buscar por sus parámetros. Por defecto es : - + Starts Auto DJ when Mixxx is launched. Arranca Auto DJ cuando se inicia Mixxx - + Rescans the library when Mixxx is launched. Re escanea la librería cuando se inicia Mixxx - + Use legacy vu meter Utilizar el vúmetro antiguo - + Use legacy spinny Usar diseño de plato antiguo - - Loads experimental QML GUI instead of legacy QWidget skin - Carga la Interfaz de Usuario QML experimental, en lugar de la skin de legado QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Habilita el modo seguro. Deshabilita formas de onda en OpenGL, y widgets de vinilos giratorios. Intenta esta opción si Mixxx se bloquea al iniciar. - + [auto|always|never] Use colors on the console output. [auto|always|never] Utiliza colores en la salida de la consola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ debug - Arriba + Mensajes de Depuración/Desarrollador trace - Arriba + Perfilar mensajes - + 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. Establece el nivel del registro en el cual el búfer de registro es descargado el registro de mixxx. <level> es uno de los valores definidos en --nivel de bitácora de arriba. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Configura el tamaño máximo del archivo mixxx.log en bytes. Usa -1 para ilimitado. Por defecto es 100 MB, como en 1e5 o 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrumpe (SIGINT) Mixxx, si un DEBUG_ASSERT es evaluado a falso. Bajo un depurador podrás continuar después. - + Overrides the default application GUI style. Possible values: %1 Anula el estilo por defecto de la interfaz de usuario de la aplicación. Valores posibles: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carga los archivos de música especificados al iniciar. Cada archivo que especifiques será cargado en el siguiente deck virtual. - + Preview rendered controller screens in the Setting windows. Previsualizar pantallas renderizadas del controlador en las ventanas de Ajustes @@ -984,2557 +997,2585 @@ trace - Arriba + Perfilar mensajes ControlPickerMenu - + Headphone Output Salida de Audífonos - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Vista previa Deck %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restaurar a defabrica - + Effect Rack %1 Rack de Efecto %1 - + Parameter %1 Parámetro %1 - + Mixer Mezclar - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mezcla en auriculares (pre/main) - + Toggle headphone split cueing Alternar preescucha dividida de auriculares - + Headphone delay Delay en auriculares - + Transport Transporte - + Strip-search through track Navegación por toda la pista - + Play button Botón de reproducción - - + + Set to full volume Ajustar volumen al máximo - - + + Set to zero volume Ajustar volumen al mínimo - + Stop button Botón de paro - + Jump to start of track and play Saltar al inicio y reproducir - + Jump to end of track Saltar al final - + Reverse roll (Censor) button Botón Reproduce hacia atrás (con censura) - + Headphone listen button Botón de escucha de auriculares - - + + Mute button Botón para silenciar MUTE - + Toggle repeat mode Conmutar modo repetición - - + + 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 - + Toggle slip mode Conmutar el modo deslizante - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Disminuir BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Disminuir BPM en 0,1 - + BPM tap button Botón de BPM manual - + Toggle quantize mode Conmutar el modo de cuantización - + One-time beat sync (tempo only) Sincronizar por unica vez (sólo el tempo) - + One-time beat sync (phase only) Sincronizar por unica vez (sólo la fase) - + Toggle keylock mode Conmutar bloqueo tonal - + Equalizers - + Ecualizadores - + Vinyl Control - Control de vinilo + Control de Vinilos - + 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 - + Slot %1 Ranura %1 - + Headphone Mix Mezcla de Auriculares - + Headphone Split Cue Salida partida por auriculares - + Headphone Delay Retardo de auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de Retroceso Rápido - + Fast Forward Avance Rápido - + Fast Forward button Botón de Avance Rápido - + Strip Search Navegación de pista - + Play Reverse Reproducir hacia atrás - + Play Reverse button Botón de Reproducción hacia atrás - + Reverse Roll (Censor) Reproducción hacia atrás (Censura) - + Jump To Start Saltar al Inicio - + Jumps to start of track Saltar al inicio de la pista - + Play From Start Reproducir Desde el Comienzo - + Stop Detener - + Stop And Jump To Start Detener y Saltar al Principio - + Stop playback and jump to start of track Detener reproducción y saltar al inicio de la pista - + Jump To End Saltar al final - + Volume Volumen - - - + + + Volume Fader Deslizador de Volumen - - + + Full Volume Volumen máximo - - + + Zero Volume Volumen cero - + Track Gain Ganancia de pista - + Track Gain knob Rueda de ganancia de pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escuchar por auriculares - + Headphone listen (pfl) button Botón de escucha con auriculares (pfl) - + Repeat Mode Modo de repetición - + Slip Mode Modo Slip - - + + Orientation Orientación - - + + Orient Left Orientar a la izquierda - - + + Orient Center Orientar al centro - - + + Orient Right Orientar a la derecha - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Golpeo de BPM - + Adjust Beatgrid Faster +.01 Acelerar la cuadrícula de tempo en +,01 - + Increase track's average BPM by 0.01 Incrementa el BPM promedio de la pista en 0,01 - + Adjust Beatgrid Slower -.01 Ralentizar la cuadrícula de tempo en -,01 - + Decrease track's average BPM by 0.01 Disminuye el BPM promedio de la pista en 0,01 - + Move Beatgrid Earlier Mover la cuadrícula de tempo antes en el tiempo - + Adjust the beatgrid to the left Ajusta la cuadrícula de tempo hacia la izquierda - + Move Beatgrid Later Mover la cuadrícula de tempo después en el tiempo - + Adjust the beatgrid to the right Ajusta la cuadrícula de tempo hacia la derecha - + Adjust Beatgrid Ajustar cuadrícula de tempo - + Align beatgrid to current position Alinea la cuadrícula de tempo a la posición actual - + Adjust Beatgrid - Match Alignment Ajustar la cuadrícula de tempo - Concidir alineación - + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + Quantize Mode Modo Cuantizado - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar pulsaciones al momento - + Sync Tempo One-Shot Sincronizar tempo al momento - + Sync Phase One-Shot 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 - + High EQ Ecualización de Agudos - + Mid EQ Ecualización de Medios - - + + Main Output Salida Principal - + Main Output Balance Balance Salida Principal - + Main Output Delay Retardo Salida Principal - + Main Output Gain Ganancia Salida Principal - + Low EQ 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) Agregar a la lista de DJ Automatico (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) Agregar a la lista de DJ Automatico (Inicio) - + 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 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 - + Show/hide the microphone & auxiliary section Muestra/oculta la sección del micrófono y el auxiliar - + 4 Effect Units Show/Hide Mostrar/Ocultar 4 Unidades de Efectos - + Switches between showing 2 and 4 effect units Cambia entre mostrar 2 y 4 unidades de efectos - + Mixer Show/Hide Mostrar/Ocultar Mezclador - + Show or hide the mixer. Mostrar u ocultar el mezclador. - + Cover Art Show/Hide (Library) Mostrar/Ocultar Portadas (Biblioteca) - + Show/hide cover art in the library Muestra/oculta las portadas en la biblioteca - + 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 - + Headphone Gain Ganancia del auricular - + Headphone gain Ganancia de auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque sincronización el tempo (y la fase con la cuantización habilitada), mantenga presionado para habilitar la sincronización permanente. - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unidad de Efectos %1 - + Button Parameter %1 Parámetro %1 del botón. - + Skin Apariencia - + Controller Controlador - + Crossfader / Orientation Crossfader / Orientación - + Main Output gain Ganancia Salida Principal - + Main Output balance Balance Salida Principal - + Main Output delay Retardo Salida Principal - + Headphone Auriculares - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Suprime %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Expulsa o recupera la pista, es decir, carga la última pista expulsada (de cualquier deck).<br>Pulsa dos veces para cargar la última pista sustituida. En decks vacíos carga la penúltima pista expulsada. - + BPM / Beatgrid BPM / Cuadrícula de Tempo - + Halve BPM Reducir a la mitad los BPM - + Multiply current BPM by 0.5 Multiplica los BPM por 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplica el BPM actual por 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplica el BPM actual por 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplica el BPM actual por 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplica el BPM actual por 1.5 - + Double BPM Dobla los BPM - + Multiply current BPM by 2 Multiplica el BPM actual por 2 - + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Tempo tap button Botón del Tempo Tap - + Move Beatgrid Desplaza la grilla de tiempo - + Adjust the beatgrid to the left or right Ajusta la grilla de tiempo a la izquierda o a la derecha - + Move Beatgrid Half a Beat Desplaza la cuadricula de tiempo medio pulso - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/grilla de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/grilla de tiempo para la pista cargada - + Sync / Sync Lock Sincronizar / Bloqueo Sincronización - + Internal Sync Leader Sincronización Líder Interno - + Toggle Internal Sync Leader Conmutar el modo Sincronización Líder Interno - - + + Internal Leader BPM BPM Líder Interno - + Internal Leader BPM +1 BPM Líder Interno +1 - + Increase internal Leader BPM by 1 Incrementar BPM líder interno en 1 - + Internal Leader BPM -1 BPM Líder Interno -1 - + Decrease internal Leader BPM by 1 Disminuir BPM líder interno en 1 - + Internal Leader BPM +0.1 BPM Líder Interno +0.1 - + Increase internal Leader BPM by 0.1 Incrementar BPM líder interno en 0.1 - + Internal Leader BPM -0.1 BPM Líder Interno -0.1 - + Decrease internal Leader BPM by 0.1 Disminuir BPM Líder Interno en 0.1 - + Sync Leader Líder de Sicronización - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modo de Sicronización 3-State Toggle / Indicador (Off, Soft Leader, Explicit Leader) - + Speed LFO - + Decrease Speed (Fine) Reducir velocidad (fino) - + Pitch (Musical Key) Tono (Clave Musical) - + Increase Pitch Incrementar Tono - + Increases the pitch by one semitone Incrementar el tono por un semitono - + Increase Pitch (Fine) Incrementar Tono (Fino) - + Increases the pitch by 10 cents Incrementa el tono por 10 céntimos - + Decrease Pitch Decrementar Tono - + Decreases the pitch by one semitone Decrementa el tono por un semitono - + Decrease Pitch (Fine) Decrementar Tono (Fino) - + Decreases the pitch by 10 cents Decrementa el tono por 10 céntimos - + Keylock Bloqueo tonal - + CUP (Cue + Play) CUP (Cue + Play) - + Shift cue points earlier Cambiar puntos marcado antes - + Shift cue points 10 milliseconds earlier Cambiar puntos marcado 10 milisegundos antes - + Shift cue points earlier (fine) Cambiar puntos marcado antes (fino) - + Shift cue points 1 millisecond earlier Cambiar puntos marcado 1 milisegundo antes - + Shift cue points later Cambiar puntos marcado después - + Shift cue points 10 milliseconds later Cambiar puntos marcado 10 milisegundos después - + Shift cue points later (fine) Cambiar puntos marcado después (fino) - + Shift cue points 1 millisecond later Cambiar puntos marcado 1 milisegundo después - - + + Sort hotcues by position Ordenar hotcues por posición - - + + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Hotcues %1-%2 Accesos Directos %1-%2 - + Intro / Outro Markers Marcadores de Entrada / Salida - + Intro Start Marker Marcador Inicial de Entrada - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + intro start marker marcador inicial de entrada - + intro end marker marcador final de entrada - + outro start marker marcador inicial de salida - + outro end marker marcador final de salida - + Activate %1 [intro/outro marker Activar %1 - + Jump to or set the %1 [intro/outro marker Saltar a o poner el %1 - + Set %1 [intro/outro marker Poner %1 - + Set or jump to the %1 [intro/outro marker Poner o saltar al %1 - + Clear %1 [intro/outro marker Limpiar %1 - + Clear the %1 [intro/outro marker Limpiar el %1 - + if the track has no beats the unit is seconds si la pista no tiene pulsaciones la unidad es segundos - + 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 %1 Beats set from its end point Bucle de %1 pulsaciones desde su punto final - + Loop Roll %1 Beats set from its end point Definir serie de bucles de %1 pulsaciones desde su punto final - + Create %1-beat loop with the current play position as loop end Crea un bucle de 1%-beat con la posición de reproducción actual como final del bucle - + Create temporary %1-beat loop roll with the current play position as loop end Crea un redoble de bucle temporal de %1-pulsos con la posición de reproducción actual como final del bucle - + Loop Beats Bucle de pulsos - + Loop Roll Beats Redoble de bucle de pulsos - + Go To Loop In Ir al Loop de entrada - + Go to Loop In button Ir al botón Loop de entrada - + Go To Loop Out Ir al Loop de salida - + Go to Loop Out button Ir al botón Loop de salida - + 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 Salto de pulso - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica qué marcadores de bucle permanecen estáticos al ajustar el tamaño o es ajustado según la posición actual - + Beat Jump / Loop Move Forward Salto de pulso / Bucle hacia adelante - + Beat Jump / Loop Move Backward Salto de pulsaciones / Movimiento del Bucle Atrás - + Loop Move Forward Movimiento del Bucle Adelante - + Loop Move Backward Bucle en reversa - + Remove Temporary Loop Remueve el bucle temporal - + Remove the temporary loop Remueve el bucle temporal - + 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. - + Sort focused column Ordenar columna enfocada - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordena la columna de la celda que está enfocada, equivale a hacer click en su encabezado - + 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 Cargar Pista y Reproducir - + Add to Auto DJ Queue (replace) Añadir a la lista de DJ Automático (reemplazar) - + Replace Auto DJ Queue with selected tracks Reemplaza la cola de Auto DJ con las pistas seleccionadas - + Select next search history Selecciona siguiente búsqueda del historial - + Selects the next search history entry Selecciona la siguiente entrada de búsqueda del historial - + Select previous search history Seleccionar entrada previa de búsqueda del historial - + Selects the previous search history entry Selecciona la entrada previa de búsqueda del historial - + Move selected search entry Mover entrada de búsqueda seleccionada - + Moves the selected search history item into given direction and steps Mueve el elemento de la búsqueda histórica seleccionado en la dirección dada y pasa - + Clear search Eliminar búsqueda - + Clears the search query Limpia la búsqueda - - + + Select Next Color Available Selecciona el próximo color disponible - + Select the next color in the color palette for the first selected track Selecciona el próximo color en la paleta de colores para la primera pista seleccionada - - + + Select Previous Color Available Selecciona el anterior color disponible - + Select the previous color in the color palette for the first selected track Selecciona el color anterior en la paleta de colores para la primera pista seleccionada - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Asignación de Unidad de Efectos - + 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 Valor del parámetro del botón - + 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 DJ Automatico - + Auto DJ Shuffle Auto DJ Aleatorio - + Auto DJ Skip Next Quitar la siguiente en Auto DJ - + Auto DJ Add Random Track Añade una pista aleatoria al Auto DJ - + Add a random track to the Auto DJ queue Añade una pista aleatoria a la fila del Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mostrar/Ocultar Micrófono y Auxiliar - + Waveform Zoom Reset To Default Reestablece el zoom de la forma de onda - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Restablece el nivel de zoom de la forma de onda al valor por defecto seleccionado en Preferencias > Formas de onda - + Select the next color in the color palette for the loaded track. Selecciona el próximo color en la paleta de colores para la pista cargada. - + Select previous color in the color palette for the loaded track. Selecciona el color anterior en la paleta de colores para la pista cargada. - + Navigate Through Track Colors Navegar a través de los colores de las pistas - + Select either next or previous color in the palette for the loaded track. Selecciona cualquiera de los colores siguientes o anteriores en la paleta de colores para la pista cargada. - + Start/Stop Live Broadcasting Inicia/Detiene Transmisión En Vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Start/stop recording your mix. Inicia/Detiene la grabación de tu mezcla. - - + + + Deck %1 Stems + + + + + Samplers Muestreadores / 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) Mostrar/ocultar carátulas (en Decks) - + Show/hide cover art in the main decks Mostrar/ocultar carátulas en los platos principales. - + 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) Mostrar/ocultar los vinilos giratorios (todos los platos) - + Show/Hide all spinnies Mostrar/ocultar todos los giradores - + Toggle Waveforms Alternar formas de onda - + Show/hide the scrolling waveforms. Mostrar/ocultar las formas de onda deslizantes - + 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 Agregar una estrella - + Increase the track rating by one star Incrementa la puntuación de la pista en una estrella - + Star Rating Down Quitar una estrella - + Decrease the track rating by one star Reduce la puntuación de la pista en una estrella @@ -3547,6 +3588,159 @@ trace - Arriba + Perfilar mensajes Desconocido + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + You can ignore this error for this session but you may experience erratic behavior. Puedes ignorar este error durante esta sesión, pero podrías experimentar problemas impredecibles. - + Try to recover by resetting your controller. Prueba de corregirlo reseteando la controladora. - + Controller Mapping Error Error del mapa de controlador - + The mapping for your controller "%1" is not working properly. El mapa de tu controlador "%1" no funciona correctamente. - + The script code needs to be fixed. El código del script necesita ser reparado. @@ -3682,27 +3876,27 @@ trace - Arriba + Perfilar mensajes ControllerScriptEngineLegacy - + Controller Mapping File Problem Problema del archivo del mapa de controlador - + The mapping for controller "%1" cannot be opened. El mapa del controlador "%1" no puede ser abierto. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. La funcionalidad provista por este mapa de controlador será desactivada hasta que el problema sea resuelto. - + File: Archivo: - + Error: Error: @@ -3735,7 +3929,7 @@ trace - Arriba + Perfilar mensajes - + Lock Bloquear @@ -3765,7 +3959,7 @@ trace - Arriba + Perfilar mensajes Fuente de pistas para Auto DJ - + Enter new name for crate: Escriba un nuevo nombre para el cajón: @@ -3782,22 +3976,22 @@ trace - Arriba + Perfilar mensajes 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 @@ -3807,28 +4001,28 @@ trace - Arriba + Perfilar mensajes Haz una caja para tu próximo concierto, para tus temas electrohouse favoritos o para tus temas más solicitados. - + Confirm Deletion Confirmar Borrado - - - + + + 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) - + M3U Playlist (*.m3u) Lista de Reproducción M3U (*.m3u) @@ -3849,17 +4043,17 @@ trace - Arriba + Perfilar mensajes Los cajones permiten organizar tu música como tu quieras! - + Do you really want to delete crate <b>%1</b>? ¿Quieres eliminar la caja <b>%1</b>? - + 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. @@ -3954,12 +4148,12 @@ trace - Arriba + Perfilar mensajes Antiguos colaboradores - + Official Website Sitio web oficial - + Donate Donar @@ -4788,123 +4982,140 @@ Esto podría deberse a que estás usando una skin antigua y este control ya no e DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acción fallida - + You can't create more than %1 source connections. No se pueden crear más de %1 fuentes de emisión en vivo. - + Source connection %1 Fuente de emisión %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Se requiere almenos una fuente de emisión. - + Are you sure you want to disconnect every active source connection? ¿Seguro que deseas desconectar todas las fuentes de emisión activas? - - + + Confirmation required Se necesita confirmación - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' tiene el mismo punto de montaje Icecast que '%2'. No se puede establecer dos conexiones simultáneas al mismo servidor, con el mismo punto de montaje. - + Are you sure you want to delete '%1'? ¿Deseas realmente borrar '%1'? - + Renaming '%1' Renombrando '%1' - + New name for '%1': Nuevo nombre para '%1': - + Can't rename '%1' to '%2': name already in use No se puede renombrar '%1' a '%2': el nombre está en uso @@ -4917,27 +5128,27 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Preferencias de Transmision en Vivo - + Mixxx Icecast Testing Prueba de «Icecast» de Mixxx - + Public stream Transmisión pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nombre de la emisión - + 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. Debido a errores en algunos clientes de transmisión, actualizar dinámicamente los metadatos Ogg Vorbis puede causar interferencias y desconexiones a los oyentes. Marque esta casilla para actualizar los metadatos de todos modos. @@ -4977,67 +5188,72 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Opciones para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinámicamente los metadatos Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Sitio web - + Live mix Mezcla en vivo - + IRC IRC - + Select a source connection above to edit its settings here Selecciona en la lista la fuente de emisión que desees editar - + Password storage Guardado de contraseñas - + Plain text Texto simple - + Secure storage (OS keychain) Almacen seguro (almacen de llaves del SO) - + Genre Genero - + Use UTF-8 encoding for metadata. Usar codificación UTF-8 para los metadatos. - + Description Descripción @@ -5063,42 +5279,42 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Canales - + Server connection Conexión al servidor - + Type Tipo - + Host Servidor - + Login Identificación - + Mount Montar - + Port Puerto - + Password Contraseña - + Stream info Información de la emisión @@ -5108,17 +5324,17 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis Metadatos - + Use static artist and title. Usar texto de artista y título fijos - + Static title Titulo fijo - + Static artist Artista fijo @@ -5177,13 +5393,14 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis DlgPrefColors - - + + + By hotcue number Por número acceso directo - + Color Color @@ -5228,17 +5445,22 @@ No se puede establecer dos conexiones simultáneas al mismo servidor, con el mis + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Cuando se han habilitado los colores de nota, Mixxx mostrará una pista de color asociada con cada nota. - + Enable Key Colors Activar colores de nota - + Key palette Paleta de notas @@ -5246,114 +5468,114 @@ associated with each key. DlgPrefController - + Apply device settings? ¿Aplicar la configuración del dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? La configuración debe ser aplicada antes de iniciar el asistente de aprendizaje. ¿Aplicar la configuración y continuar? - + None Ningún - + %1 by %2 %1 por %2 - + Mapping has been edited Se ha editado el mapeo - + Always overwrite during this session Siempre sobreescribir durante esta sesión - + Save As Guardar como - + Overwrite Sobreescribir - + Save user mapping Guardar mapeo del usuario - + Enter the name for saving the mapping to the user folder. Ingresar el nombre del archivo de mapeo para guardarlo en la carpeta de usuario. - + Saving mapping failed Ha fallado el guardado del mapeo - + A mapping cannot have a blank name and may not contain special characters. El nombre del mapeo no puede estar en blanco, ni contener caracteres especiales. - + A mapping file with that name already exists. Ya existe un archivo de mapeo con el mismo nombre. - + Do you want to save the changes? Quieres guardar los cambios? - + Troubleshooting Solución de problemas - + <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>Si usas este mapeo, tu controlador podría no funcionar correctamente. Por favor selecciona otro mapeo o deshabilita el controlador. </b></font><br><br>Este mapeo fue diseñado para un nuevo Motor de Controladores de Mixxx, y no puede ser usado con tu instalación actual.<br>Tu instalación de Mixxx posee la version del Motor de Controladores %1. Este mapeo requiere una versión del Motor de controladores >=%2.<br><br>Para más información visita la wiki de <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versiones del Motor de Controladores</a>. - + Mapping already exists. El mapeo ya existe. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> ya existe en la carpeta de mapeos de usuario. <br>¿Deseas sobreescribir o guardar con otro nombre? - + Clear Input Mappings Limpiar mapeos de Entrada - + Are you sure you want to clear all input mappings? Está seguro de querer eliminar todos los mapeos de entrada? - + Clear Output Mappings Limpiar mapeos de Salida - + Are you sure you want to clear all output mappings? Está seguro de querer eliminar todos los mapeos de salida? @@ -5371,100 +5593,105 @@ Apply settings and continue? Habilitado - + + Refresh mapping list + + + + Device Info Información del dispositivo - + Physical Interface: Interfase física - + Vendor name: Nombre del fabricante: - + Product name: Nombre del producto: - + Vendor ID ID del proveedor - + VID: VID: - + Product ID ID del producto - + PID: PID: - + Serial number: Número de serie: - + USB interface number: Número de interfaz USB - + HID Usage-Page: Página de uso HID - + HID Usage: Uso de HID: - + Description: Descripción: - + Support: Soporte: - + Screens preview Previsualizar pantallas - + Input Mappings Mapeos de Entrada - - + + Search Buscar - - + + Add Añadir - - + + Remove Quitar @@ -5484,17 +5711,17 @@ Apply settings and continue? Cargar Mapeo: - + Mapping Info Información de mapeo - + Author: Autor: - + Name: Nombre: @@ -5504,28 +5731,28 @@ Apply settings and continue? Asistente de aprendizaje (sólo MIDI) - + Data protocol: Protocolo de datos: - + Mapping Files: Archivos de mapeo - + Mapping Settings Configuración de mapeo - - + + Clear All Limpiar todo - + Output Mappings Mapeos de Salida @@ -5540,21 +5767,21 @@ 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 utiliza "mapeos" para conectar mensajes desde tu controlador a los controles en Mixxx. Si no ves un mapeo de tu controlador en el menu "Cargar Mapeo" cuando hagas click en tu controlador en la barra deslizable izquierda, pudieras descargar uno en línea desde %1. Coloca los archivos XML (.xml) y Javascript (.js) en la "Carpeta de Mapeo del Usuario" luego reinicia Mixxx. Si descargaste un mapeo en un archivo ZIP, extrae los archivos XML y Javascript del archivo ZIP a tu "Carpeta de Mapeo del Usuario" y luego reinicia 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guía de Hardware de DJ de Mixxx - + MIDI Mapping File Format Formato de archivo de mapeos MIDI - + MIDI Scripting with Javascript Programación de Scripts MIDI con Javascript @@ -5684,6 +5911,16 @@ Apply settings and continue? Multi-Sampling Multi-Muestreo + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5713,137 +5950,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sin parpadeo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) mm:ss - Tradicional (grueso) - + s%1zz - Seconds s%1zz - Segundos - + sss%1zz - Seconds (Long) sss%1zz - Segundos (Duración) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosegundos - + Intro start Inicio de la entrada - + Main cue Marcador principal - + First hotcue Primera hotcue - + First sound (skip silence) Primer sonido (saltar silencio) - + Beginning of track Principio de la pista - + Reject Rechazar - + Allow, but stop deck Permitir, pero detener deck - + Allow, play from load point Permitir, reproducir desde el punto de carga - + 4% 4% - + 6% (semitone) 6% (seminota) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6298,62 +6535,62 @@ Siempre puedes arrastrar y tirar pistas en la pantalla para clonar una plataform 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 - + Disabled Desactivado - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx debe ser reiniciado para que el nuevo ajuste de locale, escalado o multi-muestreo tenga efecto. @@ -6390,7 +6627,7 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Analyzer Settings - + Configuración del Analizador @@ -6581,67 +6818,97 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Ver el manual para más detalles - + 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 - + Item is not a directory or directory is missing El ítem no es un directorio, o el directorio no ha sido encontrado - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccionar la Fuente para Biblioteca @@ -6690,262 +6957,267 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Re-escanear directorios al inicio - + Audio File Formats Formatos de archivo de sonido - + Track Table View Vista Tabla de Pistas - + Track Double-Click Action: Acción doble-click de Pista: - + BPM display precision: Precisión al mostrar los BPM: - + Session History Historia de la sesión - + Track duplicate distance Duplicar Distancia de Pista - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Cuando reproduces una pista de nuevo, anéxala al historial de la sesión sólo si más de N otras pistas han sido reproducidas mientras tanto. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Historial de lista de reproducciones con menos de N pistas serán borradas<br/><br/>Nota: la limpieza será realizada durante el inicio y el cierre de Mixxx. - + Delete history playlist with less than N tracks Borrar historial de listado de pistas con menos de N pistas - + Library Font: Fuente para Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks Oscurecer pistas ya tocadas - + Track Search Buscar una pista - + Enable search completions Permitir completar búsquedas - + Enable search history keyboard shortcuts Activar los atajos de teclado del historial de búsqueda - + Percentage of pitch slider range for 'fuzzy' BPM search: Porcentaje del rango del deslizador de pitch para búsqueda de BPM "difuso-variable". - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Este rango será utilizado para buscar BPM "difuso-variable" (~bpm:) en la caja de búsqueda, además de la búsqueda de BPM en el menú contextual Pista > Buscar pistas relacionadas - + Preferred Cover Art Fetcher Resolution Resolución preferida del buscador de carátulas - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Obtén carátulas de coverartarchive.com mediante Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" puede referirse a carátulas muy grandes. - + >1200 px (if available) >1200 px (si está disponible) - + 1200 px (if available) 1200 px (si está disponible) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Directorio de configuración - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. El directorio de configuración de Mixxx contiene la base de datos de la biblioteca, varios archivos de configuración, archivos de bitácoras, datos de análisis de pistas, así como mapeos de controladores personalizados. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Edita estos archivos solo si sabes lo que estás haciendo, y solo cuando Mixxx no esté siendo ejecutado. - + Open Mixxx Settings Folder Abrir Carpeta de Ajustes de Mixxx - + Library Row Height: Alto de la Fila en Biblioteca: - + Use relative paths for playlist export if possible Usar rutas relativas al exportar lista de reproducción cuando sea posible - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincroniza los metadatos de la librería de pistas desde/hacia las etiquetas de archivos - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automáticamente escribe metadatos de las pistas modificadas desde la biblioteca a las etiquetas del archivo y reimporta metadatos desde las etiquetas actualizadas del archivo a la biblioteca - + Synchronize Serato track metadata from/to file tags (experimental) Sincroniza metadatos de la pista de Serato desde/hacia las etiquetas de archivo (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene el color de la pista, la cuadrícula del ritmo, bloqueo de bpm, puntos de marcado, y bucles sincronizados con las etiquetas de archivo SERATO_MARKERS/MARKERS2.<br/><br/>ADVERTENCIA: Habilitando esta opción también habilita la reimportación de metadatos de Serato después de que los archivos han sido modificados afuera de Mixxx. Al reimportar metadatos existentes en Mixxx se remplaza con los metadatos encontrados en las etiquetas de archivos. Los Metadatos personalizados no incluidos en las etiquetas de archivos como los colores de los bucles se perderán. - + Edit metadata after clicking selected track Editar metadatos al clicar en una pista seleccionada - + Search-as-you-type timeout: Tiempo de espera de búsqueda mientras escribe: - + ms ms - + Load track to next available deck Carga la pista en el siguiente plato disponible - + External Libraries Bibliotecas externas - + You will need to restart Mixxx for these settings to take effect. Usted tendrá que reiniciar Mixxx para que esta configuración surta efecto. - + Show Rhythmbox Library Mostrar la librería de Rhythmbox - + Track Metadata Synchronization / Playlists Metadatos de sincronización de pistas / Listas de reproducción - + Add track to Auto DJ queue (bottom) Añadir pista al final de la cola de Auto DJ - + Add track to Auto DJ queue (top) Añadir pista a la cola de Auto DJ (al comienzo) - + Ignore Ignorar - + Show Banshee Library Mostrar la bibiloteca de Banshee - + Show iTunes Library Mostrar la librería de ITunes - + Show Traktor Library Mostrar la librería de Traktor - + Show Rekordbox Library Mostrar la Librería de Rekordbox - + Show Serato Library Mostrar la Librería de Serato - + All external libraries shown are write protected. Todas las bibliotecas mostradas estan protegidas frente a escritura. @@ -7290,33 +7562,33 @@ y te permite ajustar su pitch para lograr mezclas armónicas. DlgPrefRecord - + Choose recordings directory Elegir la carpeta para las grabaciones - - + + Recordings directory invalid Directorio de Grabaciones inválido - + Recordings directory must be set to an existing directory. El directorio de Grabaciones debe configurarse a un directorio existente. - + Recordings directory must be set to a directory. El directorio de Grabaciones debe configurarse a un directorio. - + Recordings directory not writable Directorio de Grabaciones no escribible - + You do not have write access to %1. Choose a recordings directory you have write access to. No tienes acceso de escritura en %1. Escoge un directorio de grabaciones al que tengas acceso de escritura. @@ -7334,43 +7606,55 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Examinar… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidad - + Tags Etiquetas - + Title Título - + Author Autor - + Album Album - + Output File Format Formato de fichero de salida - + Compression Compresión - + Lossy Con pérdidas @@ -7385,12 +7669,12 @@ y te permite ajustar su pitch para lograr mezclas armónicas. Directorio: - + Compression Level Nivel de compresión - + Lossless Sin pérdidas @@ -7523,172 +7807,177 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Por Defecto (mas retardo) - + Experimental (no delay) Experimental (sin retardo) - + Disabled (short delay) Desactivado (poco retardo) - + Soundcard Clock Reloj de la tarjeta de sonido - + Network Clock Reloj de red - + Direct monitor (recording and broadcasting only) Monitorización directa (solo grabación y emisión en vivo) - + Disabled Desactivado - + Enabled Habilitado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Para activar el Planificador en tiempo real (actualmente desactivado), mira %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 muestra una lista de tarjetas de sonido y controladores que podrías considerar para utilizar con Mixxx - + Mixxx DJ Hardware Guide Guía de Hardware DJ de Mixxx - + + Find details in the Mixxx user manual + + + + Information Información - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx debe ser reiniciado para que el cambio de ajuste de RubberBand multi-hilo tenga efecto. - + auto (<= 1024 frames/period) auto (<= 1024 fotogramas/período) - + 2048 frames/period 2048 fotogramas/período - + 4096 frames/period 4096 fotogramas/período - + Are you sure? ¿Estás seguro(a)? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Distribuir los canales estéreo en canales mono para su procesamiento en paralelo podría resultar en la pérdida de la compatibilidad mono y una imagen estéreo difusa. No se recomienda al transmitir en vivo o al grabar. - + Are you sure you wish to proceed? ¿Realmente deseas continuar? - + No No - + Yes, I know what I am doing Sí, se lo que estoy haciendo - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. La entrada de micrófono está desincronizada respecto la grabación y emisión comparado con la señal que se oye. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mide la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Refer to the Mixxx User Manual for details. Para más detalles, lea el manual de usuario de Mixxx. - + Configured latency has changed. La latencia configurada ha cambiado. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Vuelve a medir la latencia total e introducela en la Compensacion de latencia del micrófono para sincronizar el micrófono. - + Realtime scheduling is enabled. La planificación en Tiempo Real está activada. - + Main output only Solo Salida principal - + Main and booth outputs Salidas principal y de cabina - + %1 ms %1 ms - + Configuration error Error de configuración @@ -7755,17 +8044,22 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de vaciado del búfer - + 0 0 @@ -7790,12 +8084,12 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Entrada - + System Reported Latency Latencia reportada por el sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente su búfer de audio si el contador de desbordamiento está aumentando o escuchas chasquidos durante la reproducción. @@ -7825,7 +8119,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Diagnóstico y sugerencias - + Downsize your audio buffer to improve Mixxx's responsiveness. Disminuya su búfer de audio para mejorar la velocidad de respuesta de Mixxx. @@ -7872,7 +8166,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Configuración de Vinilo - + Show Signal Quality in Skin Mostrar Calidad de Señal en la apariencia @@ -7884,7 +8178,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Turntable Input Signal Boost - Amplificación de señal de entrada de Vinilo + Aumento de la Señal de Entrada del Tornamesa @@ -7908,46 +8202,51 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y + Pitch estimator + + + + Deck 1 Plato 1 - + Deck 2 Plato 2 - + Deck 3 Plato 3 - + Deck 4 Plato 4 - + Signal Quality Calidad de Señal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Con tecnología de xwax - + Hints Sugerencias - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione los dispositivos de sonico para el Control por Vinilo en el Panel de Hardware de Sonido. @@ -7955,58 +8254,58 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y DlgPrefWaveform - + Filtered Filtrada - + HSV HSV - + RGB RGB - + Top Arriba - + Center Centrado - + Bottom Abajo - + 1/3 of waveform viewer options for "Text height limit" 1/3 de visualización de forma de onda - + Entire waveform viewer Visor de forma de onda completa - + 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. @@ -8024,22 +8323,17 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Tasa de fotograma - + OpenGL Status Estado de OpenGL - + Displays which OpenGL version is supported by the current platform. Muestra qué versión de OpenGL es soportada por la plataforma actual. - - Normalize waveform overview - Normalizar vista de forma de onda - - - + Average frame rate Refresco de pantalla promedio @@ -8055,7 +8349,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Nivel de zoom por defecto - + Displays the actual frame rate. Muestra la tasa de refresco actual. @@ -8090,7 +8384,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Graves - + Show minute markers on waveform overview Mostrar marcadores de minutos en la vista de forma de onda @@ -8135,7 +8429,7 @@ El objetivo de sonoridad es aproximado y asume que la preganancia de la pista y Ganancia visual global - + 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. La vista general de forma de onda muestra la forma de onda de la pista entera. @@ -8204,22 +8498,22 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se pt - + Caching Almacenamiento en caché - + 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 almacena en caché las formas de onda de las pistas en el disco la primera vez que se carga una pista. Esto reduce el uso de la CPU cuando se está jugando en vivo, pero requiere espacio en disco adicional. - + Enable waveform caching Habilitar el almacenamiento en caché de forma de onda - + Generate waveforms when analyzing library Generar formas de onda cuando se analiza la biblioteca @@ -8235,7 +8529,7 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se - + Type Tipo @@ -8265,12 +8559,58 @@ Elija entre los distintos tipos de visualización para la forma de onda, que se Mover the marcador de posición en la pista a la izquierda, derecha o centro (Defabrica). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Visualizar formas de onda - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Las formas de onda claras en caché @@ -8762,7 +9102,7 @@ Carpeta: %2 BPM: - + Location: Ubicación: @@ -8777,27 +9117,27 @@ Carpeta: %2 Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Ajusta el BPM al 75% del valor actual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ajusta el BPM al 50% del valor actual. - + Displays the BPM of the selected track. Mostrar los BPMs de la pista seleccionada. @@ -8852,49 +9192,49 @@ Carpeta: %2 Genero - + ReplayGain: Ganancia de repetición: - + Sets the BPM to 200% of the current value. Ajusta el BPM al 200% del valor actual. - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + Clear BPM and Beatgrid Borrar el BPM y la cuadrícula de tempo - + Move to the previous item. "Previous" button Mover al elemento anterior. - + &Previous &Previo - + Move to the next item. "Next" button Mover al siguiente elemento. - + &Next &Siguiente @@ -8919,12 +9259,12 @@ Carpeta: %2 Color - + Date added: Fecha de adición: - + Open in File Browser Abrir en el explorador de archivos @@ -8934,12 +9274,17 @@ Carpeta: %2 Tasa de muestreo: - + + Filesize: + + + + Track BPM: BPM de la pista: - + 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. @@ -8948,90 +9293,90 @@ Utiliza este ajuste si tus pistas tienen un tempo constante (ej. la mayoría de A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en pistas que tienen cambios de tempo. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Ajusta el BPM al 66% del valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Incrementa el BPM al 150% del valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Incrementa el BPM al 133% del valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee siguiendo el ritmo para establecer el BPM. - + Tap to Beat Pulse siguiendo el ritmo - + Hint: Use the Library Analyze view to run BPM detection. Truco: Use la vista de análisis en la biblioteca para ejecutar la detección de BPM. - + Save changes and close the window. "OK" button Guardar cambios y cerrar la ventana. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar cambios y cerrar. - + Save changes and keep the window open. "Apply" button Guardar cambios y mantener abierta la ventana. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) (sin color) @@ -9188,7 +9533,7 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en &OK - + (no color) (sin color) @@ -9390,27 +9735,27 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en EngineBuffer - + Soundtouch (faster) Soundtouch (rápido) - + Rubberband (better) Rubberband (mejor) - + Rubberband R3 (near-hi-fi quality) Banda elástica R3 (calidad casi alta fidelidad) - + Unknown, using Rubberband (better) Desconocido, utilizando Banda elástica (mejor) - + Unknown, using Soundtouch Desconocido, usando Soundtouch @@ -9625,15 +9970,15 @@ A menudo resulta en una cuadrícula de mayor calidad, pero no lo hacemos bien en 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 @@ -9645,57 +9990,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9703,37 +10048,37 @@ de OpenGL. Library - + This or a parent directory is already in your library. Este directorio o su superior ya se encuentra en tu biblioteca. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Este directorio o el indicado no existe o es inaccesible. Cancelando la operación para evitar inconsistencias de biblioteca. - - + + This directory can not be read. Este directorio no puede ser leído. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ha ocurrido un error desconocido. Cancelando la operación para evitar inconsistencias de biblioteca - + Can't add Directory to Library No se pudo agregar el directorio a la biblioteca - + Could not add <b>%1</b> to your library. %2 @@ -9742,27 +10087,27 @@ Cancelando la operación para evitar inconsistencias de biblioteca %2 - + Can't remove Directory from Library No se pudo remover el directorio de la biblioteca. - + An unknown error occurred. Ha ocurrido un error desconocido. - + This directory does not exist or is inaccessible. Este directorio no existe o es inaccesible. - + Relink Directory Reenlazar directorio - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9774,22 +10119,22 @@ Cancelando la operación para evitar inconsistencias de biblioteca 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. @@ -9927,12 +10272,12 @@ Do you really want to overwrite it? Pistas Ocultas - + Export to Engine DJ Exportar a Engine DJ - + Tracks Pistas @@ -9940,37 +10285,37 @@ 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 @@ -9980,213 +10325,213 @@ Do you really want to overwrite it? apariencia - + Allow Mixxx to hide the menu bar? ¿Permitir a Mixxx ocultar la barra de menú? - + Hide Always show the menu bar? Ocultar - + Always show Mostrar siempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra de menú de Mixxx ha sido ocultada y se puede alternar presionando la tecla <b>Alt</b>. <br><br>Haz clic en <b>%1</b> para aceptar. <br><br>Haz clic en <b>%2</b> para desactivarlo, por ejemplo si usas Mixxx sin un teclado. <br><br>Puedes cambiar este ajuste en cualquier momento en Preferencias -> Interfaz. <br> - + Ask me again Pregúntame de nuevo - - + + 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? No se ha seleccionado un dispositivo de Entrada para este micrófono. ¿Deseas escoger uno ahora? - + There is no input device selected for this auxiliary. Do you want to select an input device? No se ha seleccionado un dispositivo de entrada para este Auxiliar. ¿Deseas escoger uno ahora? - + Scan took %1 El escaneo tomo %1 - + No changes detected. No se han detectado cambios - + %1 tracks in total %1 pistas en total - + %1 new tracks found Encontradas %1 pistas nuevas - + %1 moved tracks detected %1 pistas movidas detectadas - + %1 tracks are missing (%2 total) %1 pistas perdidas (%2 en total) - + %1 tracks have been rediscovered %1 pistas han sido reencontradas - + Library scan finished Escaneo de la biblioteca terminado - + 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 Renderizado directo 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. - 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><b>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'. + El renderizado directo no está habilitado en tu máquina.<br><br>Esto significa que la pantalla de la forma de onda será muy <br><b>lenta y puede agobiar a tu CPU fuertemente</b>. Ya sea que actualices tu<br>configuración para habilitar renderizado directo, o deshabilitar<br>las pantallas de forma de onda en las preferencias de Mixxx seleccionando <br>"Vacío" como la pantalla de forma de onda en la sección 'Interface'. - - - + + + 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? @@ -10202,13 +10547,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reproducción @@ -10218,58 +10563,63 @@ Do you want to select an input device? Aleatorizar lista de reproducción - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Las listas de reproducción son listar ordenadas de pistas que te permiten planificar tus sesiones de DJ. - + 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. Podría ser necesario saltar algunas pistas en tu lista de reproducción planificada, o añadir algunas pistas diferentes, con el fin de mantener la energía de tu audiencia. - + 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 una nueva lista de reproducción @@ -10368,59 +10718,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 @@ -10534,69 +10884,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabina - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier Bus izquierdo - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus derecho - + Invalid Bus + Audio path indetifier Bus inválido - + Deck + Audio path indetifier Plato - + Record/Broadcast + Audio path indetifier Grabación / Emisión en vivo - + Vinyl Control + Audio path indetifier Control de vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de ruta %1 desconocida @@ -10939,47 +11302,49 @@ Si la amplitud es cero, este parámetro permite mover la posición manualmente p Ancho - + Metronome Metrónomo - + + The Mixxx Team Equipo de Mixxx - + Adds a metronome click sound to the stream Añade el sonido de tic tac de un metrónomo a la señal de salida - + BPM BPM - + Set the beats per minute value of the click sound Define las pulsaciones por minuto del tic tac - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved Sincroniza el BPM con el de la pista, si se puede obtener - + + Gain Ganancia - + Set the gain of metronome click sound Configura la ganancia del sonido del metrónomo @@ -11783,14 +12148,14 @@ Todo a la derecha: final del período La grabación OGG no está soportada. La librería OGG/Vorbis podría no inicializarse. - - + + encoder failure falla del codificador - - + + Failed to apply the selected settings. Fallo al aplicar los ajustes seleccionados. @@ -11930,7 +12295,7 @@ Consejo: compensa las voces de "ardillas" o "gruñonas"La cantidad de amplificación aplicada a la señal de audio. A niveles más altos, el audio estará más distorsionado. - + Passthrough Paso @@ -11977,36 +12342,107 @@ Consejo: compensa las voces de "ardillas" o "gruñonas"Ganancia compensatoria automática - - Makeup - Compensación / Makeup + + Makeup + Compensación / Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + El botón Auto Makeup activa la ganancia compensatoria automática +para mantener la señal entrante y saliente tan sonoras como sea posible. + + + + Off + Apagado + + + + On + Encendido + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Límite (Threshold, dBFS) + + + + + Threshold + Límite + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - El botón Auto Makeup activa la ganancia compensatoria automática -para mantener la señal entrante y saliente tan sonoras como sea posible. + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Apagado + + Knee (dB) + - - On - Encendido + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Límite (Threshold, dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Límite + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12038,6 +12474,7 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e Knee (dBFS) + Knee Knee @@ -12048,11 +12485,13 @@ A una proporción de 1:1, la compresión no tiene efecto, ya que la entrada es e La perilla de Knee es utilizada para lograr una curva de compresión redondeada. + Attack (ms) Ataque (ms) + Attack Ataque @@ -12065,11 +12504,13 @@ will set in once the signal exceeds the threshold la compresión una vez que la señal supere el Límite. + Release (ms) Liberación (Release, ms) + Release Release @@ -12100,12 +12541,12 @@ pueden introducir un efecto de "bombeo" y/o distorsión. varios - + built-in nativo - + missing no encontrado @@ -12140,42 +12581,42 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Stem #%1 - + Empty Vacío - + Simple Simple - + Filtered Filtrado - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Agrupado - + Unknown Desconocido @@ -12436,193 +12877,193 @@ pueden introducir un efecto de "bombeo" y/o distorsión. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontró un problema - + Could not allocate shout_t No se pudo asignar shout_t - + Could not allocate shout_metadata_t No se pudo asignar shout_metadata_t - + Error setting non-blocking mode: Error al establecer el modo "sin bloqueo": - + Error setting tls mode: Error de configuracion del "Modo TLS" - + Error setting hostname! ¡Error al establecer el nombre de host! - + Error setting port! ¡Error al establecer el puerto! - + Error setting password! ¡Error al establecer la contraseña! - + Error setting mount! ¡Error al establecer el punto de montaje! - + Error setting username! ¡Error al establecer el nombre de usuario! - + Error setting stream name! ¡Error al establecer el nombre de la emisión! - + Error setting stream description! ¡Error al establecer la descripción de la emisión! - + Error setting stream genre! ¡Error al establecer el género de la emisión! - + Error setting stream url! ¡Error al establecer la URL de la emisión! - + Error setting stream IRC! ¡Error al configurar el flujo IRC! - + Error setting stream AIM! ¡Error al configurar el flujo AIM! - + Error setting stream ICQ! ¡Error al configurar el flujo ICQ! - + Error setting stream public! Error al iniciar la emisión pública! - + Unknown stream encoding format! ¡Formato de codificación de transmisión desconocido! - + Use a libshout version with %1 enabled Usar una versión de libshout con %1 activado - + Error setting stream encoding format! Error ajuste formato de codificación en emisión! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Transmitir a 96 kHz con Ogg Vorbis no está soportado actualmente. Por favor intente una frecuencia de muestreo diferente o cambie a una codificación diferente. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Consulta https://github.com/mixxxdj/mixxx/issues/5701 para más información. - + Unsupported sample rate Tasa de muestreo no soportada - + Error setting bitrate Error al establecer la tasa de bits - + Error: unknown server protocol! ¡Error: protocolo del servidor desconocido! - + Error: Shoutcast only supports MP3 and AAC encoders Error: Shoutcast solo soporta codificadores MP3 y AAC - + Error setting protocol! ¡Error al establecer el protocolo! - + Network cache overflow Caché de red excedido - + Connection error Error de connexión - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Una de las fuentes de emisión en vivo ha lanzado este error:<br><b>Error con la fuente '%1':</b><br> - + Connection message Mensaje de conexión - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensaje de la fuente de emisión en vivo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Se ha perdido la conexión al servidor de emisión y han fallado %1 intentos de reconexión. - + Lost connection to streaming server. Se ha perdido la conexión al servidor de emisión - + Please check your connection to the Internet. Comprueba tu conexión a internet. - + Can't connect to streaming server No se puede conectar al servidor de emisión - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12630,7 +13071,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoftwareWaveformWidget - + Filtered Filtrada @@ -12638,23 +13079,23 @@ pueden introducir un efecto de "bombeo" y/o distorsión. SoundManager - - + + a device un dispositivo - + An unknown error occurred Ocurrió un error desconocido - + Two outputs cannot share channels on "%1" Dos salidas no pueden usar los mismos canales de %1 - + Error opening "%1" Error al abrir "%1" @@ -12839,7 +13280,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Spinning Vinyl Vinilo virtual @@ -13021,7 +13462,7 @@ pueden introducir un efecto de "bombeo" y/o distorsión. - + Cover Art Portada @@ -13211,243 +13652,243 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la ganancia del filtro de graves en cero, mientras está activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Muestra el tempo de la pista cargada, en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Tono - + BPM Tap Golpeo de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el BPM para que coincida con las pulsaciones realizadas. - + Adjust BPM Down Reduce el BPM - + When tapped, adjusts the average BPM down by a small amount. Cuando se pulsa, reduce el BPM promedio un poco. - + Adjust BPM Up Aumenta el BPM - + When tapped, adjusts the average BPM up by a small amount. Cuando se pulsa, aumenta el BPM promedio un poco. - + Adjust Beats Earlier Mueve la cuadrícula un poco antes - + When tapped, moves the beatgrid left by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la izquierda. - + Adjust Beats Later Mueve la cuadrícula un poco después - + When tapped, moves the beatgrid right by a small amount. En pulsarlo, mueve la cuadrícula de tempo un poco a la derecha. - + Tempo and BPM Tap Golpeo de Tempo y BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar la sección de vinilo giratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. Alternar el bloqueo tonal durante la reproducción puede producir una pequeña distorsión de audio. - + Toggle visibility of Loop Controls Cambia la visibilidad de los Controles de Bucles - + Toggle visibility of Beatjump Controls Cambia la visibilidad de los Controles de Salto de Ritmo - + Toggle visibility of Rate Control Alternar visibilidad del control de velocidad - + Toggle visibility of Key Controls Cambia la visibilidad de los Controles de Clave - + (while previewing) (mientras se previsualiza) - + Places a cue point at the current position on the waveform. Coloca un punto de Cue en la posición actual de la forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Detiene la pista en el punto cue, O BIEN va al punto cue y reproduce en soltar (modo CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Establece el punto Cue (Modo Pioneer/Mixxx/Numark), establece el punto Cue y reproduce en soltar (modo CUP) O BIEN hace una preescuha del mismo (Modo Denon). - + Is latching the playing state. Está reteniendo el estado de reproducción. - + Seeks the track to the cue point and stops. Lleva la pista al punto de Cue y para. - + Play Reproducir - + Plays track from the cue point. Reproduce la pista desde el punto Cue. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Envía el audio del canal seleccionado a la salida de auriculares, seleccionada en Preferencias -> Hardware de Sonido - + (This skin should be updated to use Sync Lock!) (Esta carátula debería actualizarse para utilizar Bloqueo de Sincronización!) - + Enable Sync Lock Habilitar Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. Pulse para sincronizar el tiempo con otras pistas en reproducción o líder de sincronización. - + Enable Sync Leader Habilitar Sync Lock - + When enabled, this device will serve as the sync leader for all other decks. Cuando está habilitado, este dispositivo servirá como líder de sicronización para todas las otros platos. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Es relevante cuando una pista con tempo dinámico es cargada a un deck líder de sincronización. En ese caso, otros dispositivos sincronizados adoptarán el tempo cambiante. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Cambia la velocidad de reproducción de la pista (afecta tanto el tempo como el tono). Si está habilitado el bloqueo, únicamente afecta al tempo. - + Tempo Range Display Visualizador del rango de tempo - + Displays the current range of the tempo slider. Muestra el rango actual del deslizador de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Se recupera la pista expulsada cuando no hay ninguna pista cargada, es decir, vuelve a cargar la pista que se expulsó en último lugar (de cualquier deck). - + Delete selected hotcue. Borra el acceso directo seleccionado - + Track Comment Comentario de la pista - + Displays the comment tag of the loaded track. Muestra la etiqueta de comentario de la pista cargada. - + Opens separate artwork viewer. Abre el visualizador separado de carátulas. - + Effect Chain Preset Settings Configuraciones de Preconfiguración de Cadena de Efectos - + Show the effect chain settings menu for this unit. Muestra el menú de las configuraciones de las cadenas de efectos para esta unidad. - + Select and configure a hardware device for this input Selecciona y configura un dispositivo de hardware para esta entrada - + Recording Duration Duración de la grabación @@ -13670,950 +14111,985 @@ pueden introducir un efecto de "bombeo" y/o distorsión. Mantiene la velocidad de reproducción baja (pequeña cantidad) cuando se activa. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Cuando se pulsa repetidamente, ajusta el tempo para coincidir con la frecuencia de pulsaciones. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Seguidor de Tempo (Tempo Tap) - + Rate Tap and BPM Tap Frecuencia de pulsaciones y de BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajusta la cuadrícula de tiempo en exactamente medio beat. Solo se puede usar en pistas con tempo constante - + Revert last BPM/Beatgrid Change Revierte el último cambio de BPM/cuadrícula de tiempo - + Revert last BPM/Beatgrid Change of the loaded track. Revierte el último cambio de BPM/Cuadrícula de tiempo para la pista cargada. - - + + Toggle the BPM/beatgrid lock Cambia el bloqueo de BPM/cuadrícula de tiempo - + Tempo and Rate Tap Toques de Tempo y Frecuencia - + Tempo, Rate Tap and BPM Tap Toques de Tempo, Frecuencia y BPM - + Shift cues earlier Cambia marcas antes - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Cambia marcas importadas desde Serato o Rekordbox si están ligeramente desfazadas. - + Left click: shift 10 milliseconds earlier Clic izquierdo: adelantar 10 milisegundos - + Right click: shift 1 millisecond earlier Clic derecho: adelantar 1 milisegundo - + Shift cues later Cambia marcas después - + Left click: shift 10 milliseconds later Clic izquierdo: retrasar 10 milisegundos - + Right click: shift 1 millisecond later Clic derecho: retrasar 1 milisegundo - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Arrastra un botón de Hotcue aquí para continuar reproduciendo después de soltar la hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Sugerencia: cambie el modo por defecto de las cues en Preferencias -> Platos. - + Mutes the selected channel's audio in the main output. Silencia el audio del canal seleccionado en la salida principal. - + Main mix enable Activador de mezcla principal - + Hold or short click for latching to mix this input into the main output. Clic sostenido o corto para enganchar, para mezclar esta entrada con la salida principal. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si la hotcue es una cue de bucle, activa el bucle y salta hacia él si se encuentra detrás de la posición de reproducción. - + If the play position is inside an active loop, stores the loop as loop cue. Si la posición de reproducción se encuentra dentro de un bucle activo, almacena el bucle como una hotcue de bucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Arrastrar este botón dentro de otro botón de hotcue para moverlo hacia este (cambiando su número). Si la otra hotcue ya se encuentra definida, las dos son intercambiadas. - + Expand/Collapse Samplers Expandir/contraer samplers - + Toggle expanded samplers view. Alternar la vista expandida de los samplers. - + Displays the duration of the running recording. Muestra la duración de la grabación en curso. - + Auto DJ is active Auto DJ se encuentra activo - + Red for when needle skip has been detected. Rojo cuando se detecta un salto de aguja. - + Hot Cue - Track will seek to nearest previous hotcue point. Acceso Directo - La pista buscará el punto anterior más cercano del acceso directo. - + Sets the track Loop-In Marker to the current play position. Establece la marca de inicio de bucle a la posición actual - + Press and hold to move Loop-In Marker. Mantener presionado para mover la marca de inicio de bucle. - + Jump to Loop-In Marker. Ir a la marca de inicio de bucle. - + Sets the track Loop-Out Marker to the current play position. Establece la marca de fin de bucle a la posición actual. - + Press and hold to move Loop-Out Marker. Mantener presionado para mover la marca de fin de bucle. - + Jump to Loop-Out Marker. Ir a la marca de fin de bucle. - + If the track has no beats the unit is seconds. Si la pista no tiene pulsaciones, la unidad es segundos. - + Beatloop Size Pulsaciones del bucle - + Select the size of the loop in beats to set with the Beatloop button. Define el tamaño del bucle en pulsaciones a usar cuando se pulse el botón de bucle de pulsaciones. - + Changing this resizes the loop if the loop already matches this size. Al cambiar este valor, cambiará el tamaño del bucle existente, si tenía el tamaño anterior. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduce a la mitad el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Dobla el tamaño del bucle existente, o del próximo bucle definido con el botón de bucle de pulsaciones. - + Start a loop over the set number of beats. Activa un bucle con la cantidad definida de pulsaciones. - + Temporarily enable a rolling loop over the set number of beats. Activa temporalmente un bucle de continuación con la cantidad de pulsaciones definidas. - + Beatloop Anchor Ancla del bucle de pulsaciones - + Define whether the loop is created and adjusted from its staring point or ending point. Define si el bucle es creado y ajustado desde su punto de inicio o de final. - + Beatjump/Loop Move Size Tamaño del salto de pulsaciones/Desplazamiento del bucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecciona la cantidad de pulsaciones a saltar o a mover el bucle con los botones de avance/retroceso. - + Beatjump Forward Avanzar en pulsaciones - + Jump forward by the set number of beats. Avanza la pista la cantidad definida de pulsaciones. - + Move the loop forward by the set number of beats. Avanza el bucle en la cantidad definida de pulsaciones. - + Jump forward by 1 beat. Avanza 1 pulsación. - + Move the loop forward by 1 beat. Avanza el bucle 1 pulsación. - + Beatjump Backward Retrocede en pulsaciones - + Jump backward by the set number of beats. Retrocede la cantidad de pulsaciones definida. - + Move the loop backward by the set number of beats. Retrocede el bucle la cantidad de pulsaciones definida. - + Jump backward by 1 beat. Retrocede 1 pulsación. - + Move the loop backward by 1 beat. Retrocede el bucle 1 pulsación. - + Reloop Repite el bucle - + If the loop is ahead of the current position, looping will start when the loop is reached. Si el bucle está por delante de la posición actual, este no se activará hasta que se llege a él. - + Works only if Loop-In and Loop-Out Marker are set. Solo funciona si las marcas de inicio y fin de bucle estan definidas. - + Enable loop, jump to Loop-In Marker, and stop playback. Activa el bucle, va a la posición de inicio de bucle y se detiene. - + Displays the elapsed and/or remaining time of the track loaded. Muestra el tiempo transcurrido y/o restante de la pista cargada. - + Click to toggle between time elapsed/remaining time/both. Pulsar para cambiar entre tiempo transcurrido/restante/ambos - + Hint: Change the time format in Preferences -> Decks. Sugerencia: cambie el formato de tiempo en Preferencias -> Platos. - + Show/hide intro & outro markers and associated buttons. Mostrar/ocultar marcadores de intro y outro, y sus botones asociados. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcador Inicial de Entrada - - - - + + + + If marker is set, jumps to the marker. Si el marcador se encuentra definido, salta al marcador. - - - - + + + + If marker is not set, sets the marker to the current play position. Si el marcador no se encuentra definido, lo configura a la posición de reproducción actual. - - - - + + + + If marker is set, clears the marker. Si el marcador se encuentra definido, lo elimina. - + Intro End Marker Marcador Final de Entrada - + Outro Start Marker Marcador Inicial de Salida - + Outro End Marker Marcador Final de Salida - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste la mezcla de la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + D/W mode: Crossfade between dry and wet Modo D/W: fundido cruzado entre seco y húmedo - + D+W mode: Add wet to dry Modo D+W: agregue húmedo a seco - + Mix Mode Modo mezcla - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste cómo se mezcla la señal seca (entrada) con la señal húmeda (salida) de la unidad de efectos - + 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 Seco/Mojado (líneas cruzadas): La Perilla de mezcla funde en cruce entre seco y mojado Utiliza esto para cambiar el sonido de la pista con EQ y efectos de filtrado. - + 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 Seco+Húmedo (línea seca plana): La perilla de mezcla agrega mojado a seco Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efectos de filtrado. - + Route the main mix through this effect unit. Enruta la mezcla principal a través de esta unidad de efectos. - + Route the left crossfader bus through this effect unit. Redirige el bus izquierdo del crossfader a través de esta unidad de efectos. - + Route the right crossfader bus through this effect unit. Enruta el bus derecho del crossfader a través de la unidad de efectos - + Right side active: parameter moves with right half of Meta Knob turn Derecha activo: el parámetro se mueve al mover la mitad derecha del control Meta. - + Stem Label Etiqueta de stem - + Name of the stem stored in the stem file Nombre del stem almacenado en el archivo de stem - + Text is displayed in the stem color stored in the stem file El texto es presentado con el color del stem almacenado en el archivo de stem - + this stem color is also used for the waveform of this stem este color de stem también es usado en la forma de onda de este stem - + Stem Mute Silenciar stem - + Toggle the stem mute/unmuted Alterna el silencio del stem - + Stem Volume Knob Perilla de volumen del stem - + Adjusts the volume of the stem Ajusta el volumen del stem - + Skin Settings Menu Menú de las opciones de la Apariencia - + Show/hide skin settings menu Muestra/esconde el menú de opciones de la Apariencia - + Save Sampler Bank Guardar banco de muestras - + Save the collection of samples loaded in the samplers. Guarda la colección de muestras cargadas en los reproductores de muestras. - + Load Sampler Bank Cargar banco de muestras - + Load a previously saved collection of samples into the samplers. Carga en los reproductores de muestras una colección de muestras guardada en anterioridad. - + Show Effect Parameters Mostrar parámetros de efectos - + Enable Effect Activar efecto - + Meta Knob Link Enlace de la rueda Meta - + Set how this parameter is linked to the effect's Meta Knob. Configura cómo le afecta a este parámetro la rueda Meta. - + Meta Knob Link Inversion Inversión del enlaze de la rueda Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Invierte la dirección en la que se mueve el parámetro al mover la rueda Meta. - + Super Knob Rueda Súper - + Next Chain Siguiente cadena - + Previous Chain Cadena anterior - + Next/Previous Chain Cadena siguiente/anterior - + Clear Borrar - + Clear the current effect. Borra el efecto actual. - + Toggle Conmutar - + Toggle the current effect. Conmuta el efecto actual. - + Next Siguente - + Clear Unit Limpiar unidad - + Clear effect unit. limpiar la unidad de efectos. - + Show/hide parameters for effects in this unit. Muestra/esconde los parámetros de los efectos de esta unidad. - + Toggle Unit Conmutar la unidad - + Enable or disable this whole effect unit. Activa o desactiva la unidad de efectos. - + Controls the Meta Knob of all effects in this unit together. Controla a la vez las ruedas Meta de todos los efectos asociados a esta unidad. - + Load next effect chain preset into this effect unit. Carga el siguiente preajuste de efectos en esta unidad de efectos. - + Load previous effect chain preset into this effect unit. Carga el anterior preajuste de efectos en esta unidad de efectos. - + Load next or previous effect chain preset into this effect unit. Carga el siguiente o anterior preajuste de efectos en esta unidad de efectos. - - - - - - - - - + + + + + + + + + Assign Effect Unit Asignar la unidad de efectos - + Assign this effect unit to the channel output. Asigna esta unidad de efectos a la salida del canal. - + Route the headphone channel through this effect unit. Redirige la salida de auriculares a través de la unidad de efectos. - + Route this deck through the indicated effect unit. Redirige este plato a través de la unidad de efectos indicada. - + Route this sampler through the indicated effect unit. Redirige este reproductor a través de la unidad de efectos indicada. - + Route this microphone through the indicated effect unit. Redirige este micrófono a través de la unidad de efectos indicada. - + Route this auxiliary input through the indicated effect unit. Redirige la entrada auxiliar a través de la unidad de efectos indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. La unidad de efectos debe estar asignada a un plato o otra fuente de sonido para oír el efecto. - + Switch to the next effect. Pasa al siguiente efecto. - + Previous Anterior - + Switch to the previous effect. Pasa al efecto anterior. - + Next or Previous Siguiente o Anterior - + Switch to either the next or previous effect. Pasa al siguiente o anterior efecto. - + Meta Knob Rueda Meta - + Controls linked parameters of this effect Controla los parámetros enlazados del efecto - + Effect Focus Button Botón de foco de efecto - + Focuses this effect. Pone el foco en el efecto. - + Unfocuses this effect. Quita el foco del efecto. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consulta la página web de tu controlador en la wiki del Mixxx para más información - + Effect Parameter parámetro de efecto - + Adjusts a parameter of the effect. Ajusta un parámetro del efecto. - + Inactive: parameter not linked Inactivo: parámetro no enlazado - + Active: parameter moves with Meta Knob Activo: el parámetro se mueve con la rueda Meta - + Left side active: parameter moves with left half of Meta Knob turn Izquierda activo: el parámetro se mueve con la primera mitad de la rueda Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Izquierda y derecha activo: el parámetro recorre todo el rango con la primera mitad de la rueda Meta, y vueve atrás con la segunda mitad - - + + Equalizer Parameter Kill Parámetro de supresión del ecualizador - - + + Holds the gain of the EQ to zero while active. Mantiene la ganáncia de EQ a cero mientras está activo. - + Quick Effect Super Knob Rueda Súper de efecto rápido - + Quick Effect Super Knob (control linked effect parameters). Rueda Súper de efecto rápido (controla los parámetros de efecto asociados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Nota: Puedes cambiar el efecto rápido por defecto en Preferéncias > Ecualizadores. - + Equalizer Parameter ecualizador paramétrico - + Adjusts the gain of the EQ filter. Ajusta la ganáncia del filtro de EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Nota: Se puede cambiar el modo de EQ por defecto en Preferencias > Ecualizadores. - - + + Adjust Beatgrid Ajustar cuadrícula de tempo - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta la cuadrícula de tempo para que el golpe más cercano se alinee con la posición actual de reproducción. - - + + Adjust beatgrid to match another playing deck. Ajusta la cuadrícula de tempo para que coincida con otro plato en reproducción. - + If quantize is enabled, snaps to the nearest beat. Si la cuantización está activada, se acerca al compás más cercano. - + Quantize Cuantizar - + Toggles quantization. Conmutar la cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Cuando está activada, los bucles y cue se alinean con el compás más cercano. - + Reverse Reversa - + Reverses track playback during regular playback. Reproduce en reversa, durante reproducción normal. - + Puts a track into reverse while being held (Censor). Pone la pista en reversa mientras se mantiene presionado. - + Playback continues where the track would have been if it had not been temporarily reversed. La reproducción se continuará en el punto al que habría llegado la pista si no hubiese puesto en reversa. - - - + + + Play/Pause Reproducir/Pausar - + Jumps to the beginning of the track. Salta al principio de la pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) y la fase de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza el tempo (BPM) de la pista con la de la otra pista, si se ha detectado el BPM en ambas. - + Sync and Reset Key Sincroniza y resetea la tonalidad - + Increases the pitch by one semitone. Incrementa el tono en una seminota. - + Decreases the pitch by one semitone. Decrementa el tono en una seminota. - + Enable Vinyl Control Activar vinilo de control - + When disabled, the track is controlled by Mixxx playback controls. Si está desactivado, los controles de reproducción del Mixxx controlan la pista. - + When enabled, the track responds to external vinyl control. Si está activado, el control de vinilo externo controla la pista. - + Enable Passthrough Activa el paso de audio - + Indicates that the audio buffer is too small to do all audio processing. Indica que el búfer de audio es demasiado pequeño para llevar a cabo todo el procesamiento de audio. - + Displays cover artwork of the loaded track. Muestra la carátula de la pista cargada. - + Displays options for editing cover artwork. Muestra las opciones de edición de carátula. - + Star Rating Puntuación - + Assign ratings to individual tracks by clicking the stars. Asigna la puntuación de cada pista pulsando en las estrellas. @@ -14748,33 +15224,33 @@ Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efect Intensidad de atenuación al usar el Micrófono - + Prevents the pitch from changing when the rate changes. Evita que el tono cambie al cambiar la velocidad. - + Changes the number of hotcue buttons displayed in the deck - Cambia el número de botones de acceso directo que se muestran en la cubierta + Cambia el número de botones de acceso directo mostrados en el deck - + Starts playing from the beginning of the track. Comienza la reproducción desde el principio de la pista. - + Jumps to the beginning of the track and stops. Salta al principio de la pista y se detiene. - - + + Plays or pauses the track. Reproduce o pausa la pista. - + (while playing) (estando en reproducción) @@ -14794,215 +15270,215 @@ Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efect Medidor de volumen del canal principal R - + (while stopped) (mientras está parado) - + Cue Cue - + Headphone Auriculares - + Mute Silenciar - + Old Synchronize Sincronización antígua - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Se sincroniza con la primera pista (en orden numérico) que está sonando y tiene BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Si no hay pistas en reprodución, se sincroniza con la primera pista que tenga BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Mantener pulsado durante un segundo para activar la sincronización fija para este plato. - + 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. Los platos con la sincronización bloqueada reproducirán todos al mismo tempo, y si además tienen la quantización activada, también se alinearán los compases. - + Resets the key to the original track key. Resetea la clave musical a la original de la pista. - + Speed Control Control de velocidad - - - + + + Changes the track pitch independent of the tempo. Cambia el tono de la pista independientemente del tempo. - + Increases the pitch by 10 cents. Aumenta el tono 10 centésimas. - + Decreases the pitch by 10 cents. Reduce el tono 10 centésimas. - + Pitch Adjust Ajuste de velocidad - + Adjust the pitch in addition to the speed slider pitch. Ajusta la velocidad añadiendo al cambio del deslizador de velocidad. - + Opens a menu to clear hotcues or edit their labels and colors. Abre un menú para limpiar los accesos directos o editar sus etiquetas y colores. - + Drag this button onto a Play button while previewing to continue playback after release. Arrastre este botón a un boton de Play durante la preescucha para continuar la reproducción tras soltarlo. - + Dragging with Shift key pressed will not start previewing the hotcue. Arrastrar mientras presiona la tecla Shift no iniciará la preescucha de la hotcue. - + Record Mix Grabar mezcla - + Toggle mix recording. Conmutar la grabación de la mezcla. - + Enable Live Broadcasting Activar la emisión en vivo - + Stream your mix over the Internet. Emite tus mezclas por internet. - + Provides visual feedback for Live Broadcasting status: Da una indicación acerca del estado de la emisión en vivo: - + disabled, connecting, connected, failure. desactivado, conectando, conectado, fallo. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Cuando está activado, el plato reproduce directamente el audio que recibe por la entrada de vinilo. - + Playback will resume where the track would have been if it had not entered the loop. La reproducción se reanudará en el punto al que habría llegado la pista si no hubiese entrado en el bucle. - + Loop Exit Salida del bucle - + Turns the current loop off. Desactiva el bucle actual. - + Slip Mode Modo Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cuando está activado, la reproducción continúa en silencio mientras dura el bucle, la reproducción hacia atrás, scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Una vez desactivado, la reproducción (audible) seguirá donde la pista habría estado. - + Track Key The musical key of a track Tonalidad de la pista - + Displays the musical key of the loaded track. Muestra la clave musical de la pista cargada. - + Clock Reloj - + Displays the current time. Muestra la hora actual. - + Audio Latency Usage Meter Medidor de Latencia de Audio - + Displays the fraction of latency used for audio processing. Muestra la parte de latencia usada para el proceso de audio. - + A high value indicates that audible glitches are likely. Un valor alto indica que se pueden percibir ruidos. - + Do not enable keylock, effects or additional decks in this situation. No activar el bloqueo de tonalidad, los efectos o los platos adicionales en este caso. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latencia de Audio @@ -15042,259 +15518,259 @@ Utiliza esto para cambiar únicamente la señal afectada (mojada) con EQ y efect Activa el control de vinilo desde el Menú -> Opciones. - + Displays the current musical key of the loaded track after pitch shifting. Muestra la clave musical actual para la pista cargada teniendo en cuenta el cambio de tonalidad. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Rebobinado rápido a través de la pista. - + Fast Forward Avance Rápido - + Fast forward through the track. Avance Rápido a través de la pista. - + Jumps to the end of the track. Salta al final de la pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Cambia la tonalidad a una clave musical que permite la transición harmónica de un plato a otro. Es necesario que se haya detectado la clave en ambos platos. - - - + + + Pitch Control Control del pitch - + Pitch Rate Ritmo de cambio de tonalidad - + Displays the current playback rate of the track. Muestra el ritmo de reproducción actual de la pista. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Estando activo la pista se repetirá si se pasa del final o si retrocede antes del comienzo. - + Eject Expulsar - + Ejects track from the player. Expulsa la pista del reproductor. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Si el hotcue está establecido, salta al hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Si el hotcue no está establecido, establece el hotcue en la actual posición de reproducción. - + Vinyl Control Mode Modo de control de vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - la posicion dentro del tema corresponde a la posicion y velocidad de la aguja. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - la velocidad del tema corresponde a la velocidad de la aguja independientemente de la posicion. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - la velocidad del tema corresponde a la ultima velocidad conocida independientemente de lo que se recibe de la aguja. - + Vinyl Status Estado del vinilo - + Provides visual feedback for vinyl control status: Provee retroalimentación visual sobre el estado del control de vinilo: - + Green for control enabled. Verde para control activo. - + Blinking yellow for when the needle reaches the end of the record. Amarillo parpadeante cuando la aguja alcanza el final de la grabación. - + Loop-In Marker Marcador de inicio de bucle - + Loop-Out Marker Marcador de fin de bucle - + Loop Halve Reducir bucle a la mitad - + Halves the current loop's length by moving the end marker. Reduce a la mitad la longitud del bucle actual, moviendo la marca de fin. - + Deck immediately loops if past the new endpoint. El plato vuelve al inicio del bucle inmediatamente si se ha superado el nuevo punto final. - + Loop Double Aumentar bucle al doble - + Doubles the current loop's length by moving the end marker. Aumenta al doble la longitud del bucle actual, moviendo la marca de fin. - + Beatloop Bucle de pulsaciones - + Toggles the current loop on or off. Activa o desactiva el bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Funciona sólo si se han definido las marcas de inicio y fin de bucle. - + Vinyl Cueing Mode Modo de Cue de Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina cómo los puntos Cue son tratados en el modo de control Relativo de Vinilos: - + Off - Cue points ignored. Off - Los puntos CUE se ignoran. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Cue - si se pone la aguja mas allá del punto cue, se irá al punto Cue de la pista. - + Track Time Tiempo de pista - + Track Duration Duración de la Pista - + Displays the duration of the loaded track. Muestra la duración de la pista cargada. - + Information is loaded from the track's metadata tags. Información cargada desde el tag de metadatos de las pistas. - + Track Artist Artista de la pista - + Displays the artist of the loaded track. Muestra el artista de la pista cargada. - + Track Title Título de la pista - + Displays the title of the loaded track. Muestra el título de la pista cargada. - + Track Album Álbum de la pista - + Displays the album name of the loaded track. Muestra el nombre del álbum de la pista cargada. - + Track Artist/Title Artista/Título de la pista - + Displays the artist and title of the loaded track. Muestra el artista y el título de la pista cargada. @@ -15525,47 +16001,75 @@ Carpeta: %2 WCueMenuPopup - + Cue number Número de Marca - + Cue position Posición Marca - + Edit cue label Editar etiqueta de marca - + Label... Etiqueta... - + Delete this cue Borrar esta marca - - Toggle this cue type between normal cue and saved loop - Alterna el tipo de esta cue entre cue normal y bucle guardado + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic izquierdo: usar el tamaño anterior o el del bucle actual como el tamaño de bucle + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic derecho: usar la posición de reproducción actual como final del bucle si se encuentra después de la cue + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Acceso DIrecto #%1 @@ -15690,323 +16194,363 @@ Carpeta: %2 + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear &nueva Playlist - + Create a new playlist Crear una nueva lista de reproducción - + Ctrl+n Ctrl+N - + Create New &Crate Crear un nuevo&cajón - + Create a new crate Crear un nuevo cajón - + Ctrl+Shift+N Ctrl+Mayús+N - - + + &View &Vista - + Auto-hide menu bar Auto-ocultar barra de menú - + Auto-hide the main menu bar when it's not used. Auto-ocultar la barra de menú principal cuando no es utilizada. - + May not be supported on all skins. Puede no estar disponible para todas las apariencias. - + Show Skin Settings Menu Mostrar menú de ajustes de aspecto - + Show the Skin Settings Menu of the currently selected Skin Mostrar la configuración actual del menu de tema - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar seccion del microfono - + Show the microphone section of the Mixxx interface. Muestra la sección de control de micrófono de la interfaz de Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar la Sección de Control de Vinilo - + Show the vinyl control section of the Mixxx interface. Muestra la sección de control de vinilo de la interfaz de Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar el reproductor de preescucha - + Show the preview deck in the Mixxx interface. Muestra el reproductor de preescucha en la interfaz de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Muestra carátulas - + Show cover art in the Mixxx interface. Muestra las carátulas en la interfaz de Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar Biblioteca - + Maximize the track library to take up all the available screen space. Maximizar la biblioteca para tomar todo el espacio disponible en pantalla. - + Space Menubar|View|Maximize Library Espacio - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Mostrar Mixxx a pantalla completa - + &Options &Opciones - + &Vinyl Control Control de &vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con codigo de tiempo en bandejas externas para controlar Mixxx - + Enable Vinyl Control &%1 Habilita el Control por Vinilo &%1 - + &Record Mix &Grabar Mezcla - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar transmisión en &vivo - + Stream your mixes to a shoutcast or icecast server Transmite tus mezclas a un servidor shoutcast o icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar Atajos de &Teclado - + Toggles keyboard shortcuts on or off Activa o desactiva los atajos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar la configuración de Mixxx (p.ej.: reproducción, MIDI, controles) - + &Developer &Desarrollador - + &Reload Skin &Recargar apariencia - + Reload the skin Recargar la apariencia - + Ctrl+Shift+R Ctrl+Mayús+R - + Developer &Tools U&tilidades de desarrollador - + Opens the developer tools dialog Abre el cuadro de diálogo de herramientas de desarrollo - + Ctrl+Shift+T Ctrl+Mayús+T - + Stats: &Experiment Bucket Estadísticas: Contadores &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Activa el modo experimental. Recoje estadísticas en los contadores EXPERIMENT. - + Ctrl+Shift+E Ctrl+Mayús+E - + Stats: &Base Bucket Estadísticas: contadores &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Activa el modo base. Recoje estadísticas en los contadores BASE. - + Ctrl+Shift+B Ctrl+Mayús+B - + Deb&ugger Enabled Dep&uración activada - + Enables the debugger during skin parsing Activa el depurador durante el análisis de la máscara - + Ctrl+Shift+D Ctrl+Mayús+D - + &Help Ay&uda - + Show Keywheel menu title Mostrar rueda de notas @@ -16023,74 +16567,74 @@ Carpeta: %2 Exportar biblioteca al formato Engine DJ - + Show keywheel tooltip text Mostrar rueda de notas - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Soporte &comunitario - + Get help with Mixxx Obtener ayuda con Mixxx - + &User Manual Manual de &usuario - + Read the Mixxx user manual. Lea el manual de usuario de Mixxx. - + &Keyboard Shortcuts Atajos de &Teclado - + Speed up your workflow with keyboard shortcuts. Trabaja más rápidamente usando los atajos de teclado. - + &Settings directory &Directorio de configuración - + Open the Mixxx user settings directory. Abre el directorio de configuración de usuario de Mixxx. - + &Translate This Application &Traducir esta aplicación - + Help translate this application into your language. Ayude a traducir esta aplicación a su idioma. - + &About &Acerca de - + About the application Acerca de la aplicación @@ -16098,25 +16642,25 @@ Carpeta: %2 WOverview - + Passthrough Paso - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Listo para reproducir, analizando... - - + + Loading track... Text on waveform overview when file is cached from source Cargando pista... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Finalizando... @@ -16125,25 +16669,13 @@ Carpeta: %2 WSearchLineEdit - - Clear input - Clear the search bar input field - Borrar el texto - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input Borrar el texto @@ -16154,93 +16686,87 @@ Carpeta: %2 Buscar... - + Clear the search bar input field Limpia el campo de entrada de la barra de búsqueda - - Enter a string to search for - Introducir el texto a buscar + + Return + Volver - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Use operadores como bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Para más información vea el Manual de Usuario> Biblioteca Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Atajo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Poner el cursor aquí + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Tecla de retroceso + + Additional Shortcuts When Focused: + - Shortcuts - Atajos + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Volver + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Activa la búsqueda antes del tiempo de espera de "búsqueda mientras escribe" o salte a la vista de pistas después + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Espacio - + Toggle search history Shows/hides the search history entries Alternar historial de búsqueda - + Delete or Backspace Borrar o Retorno - - Delete query from history - Borrar Consulta del Historial - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Salir de la busqueda + + Delete query from history + Borrar Consulta del Historial @@ -16324,625 +16850,640 @@ Carpeta: %2 WTrackMenu - + Load to Cargar en - + Deck Plato - + Sampler Reproductor de muestras - + Add to Playlist Añadir a la lista de reproducción - + Crates Cajas - + Metadata Metadatos - + Update external collections Actualizar colecciones externas - + Cover Art Portada - + Adjust BPM Ajusta BPM - + Select Color Seleccionar color - - + + Analyze Analizar - - + + Delete Track Files Borrar Archivos de Pistas - + 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) - + Preview Deck Reproductor de preescucha - + Remove Quitar - + Remove from Playlist Eliminar de la lista de reproducción - + Remove from Crate Eliminar de la caja - + Hide from Library Ocultar de la biblioteca - + Unhide from Library Volver a mostrar en la biblioteca - + Purge from Library Eliminar de la biblioteca - + Move Track File(s) to Trash Mover archivo(s) de seguimiento a la papelera - + Delete Files from Disk Borrar Archivos del Disco - + Properties Propiedades - + Open in File Browser Abrir en el explorador de archivos - + Select in Library Selecciona en Biblioteca - + Import From File Tags Importar de los metadatos del fichero - + Import From MusicBrainz Importar de MusicBrainz - + Export To File Tags Exportar a metadatos del fichero - + BPM and Beatgrid BPM y cuadrícula de tempo - + Play Count Reproducciones - + Rating Calificación - + Cue Point Punto CUE - - + + Hotcues Hotcues - + Intro - + Intro - + Outro - + Outro - + Key Tono - + ReplayGain Reproducir otra vez - + Waveform Forma de onda - + Comment Comentario - + All Todos - + Sort hotcues by position (remove offsets) Ordenar hotcues por posición (removiendo desfases) - + Sort hotcues by position Ordenar hotcues por posición - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reducir a la mitad los BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Desplazar la cuadrícula de tiempo medio beat - + Reanalyze Reanalizar - + Reanalyze (constant BPM) Reanalizar (BPM constante) - + Reanalyze (variable BPM) Reanalizar (BPM variable) - + Update ReplayGain from Deck Gain Actualizar ReplayGain desde la Ganancia de Plato - + Deck %1 Deck %1 - + Importing metadata of %n track(s) from file tags Importación de metadatos de %n pista a partir de las etiquetas del archivoImportación de metadatos de %n pistas a partir de las etiquetas de los archivosImportación de metadatos de %n pista(s) a partir de las etiquetas del archivo - + Marking metadata of %n track(s) to be exported into file tags Haciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivosHaciendo metadatos de %n pista(s) a ser exportadas en las etiquetas de archivos - - + + 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 Añadir a nueva caja - + Scaling BPM of %n track(s) Escalando BPM de %n pista(s)Escalando BPM de %n pista(s)Escalando BPM de %n pista(s) - + Undo BPM/beats change of %n track(s) Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s)Deshacer cambios de BPM/pulsaciones de %n pista(s) - + Locking BPM of %n track(s) Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s)Bloqueando BPM de %n% pista(s) - + Unlocking BPM of %n track(s) Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s)Desbloqueando BPM de %n pista(s) - + Setting rating of %n track(s) Definiendo evaluación de %n pistaDefiniendo evaluación de %n pistasDefiniendo evaluación de %n pista(s) - + Setting color of %n track(s) configuración de color de %n pista(s)configuración de color de %n pista(s)configuración de color de %n pista(s) - + Resetting play count of %n track(s) Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s)Restablecimiento del conteo de reproducción de %n pista(s) - + Resetting beats of %n track(s) Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s)Restableciendo beats de %n pista(s) - + Clearing rating of %n track(s) Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s)Limpiando clasificación de %n pista(s) - + Clearing comment of %n track(s) Borrando comentarios de %n pistaBorrando comentarios de %n pistasBorrando comentarios de %n pista(s) - + Removing main cue from %n track(s) Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s)Eliminando la marca principal de %n pista(s) - + Removing outro cue from %n track(s) Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s)Eliminando la marca de salida de %n pista(s) - + Removing intro cue from %n track(s) Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s)Removiendo la marca de entrada de %n pista(s) - + Removing loop cues from %n track(s) Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s)Removiendo marcas de bucles de %n pista(s) - + Removing hot cues from %n track(s) Removiendo los hot cues de %n pista(s)Removiendo los hot cues de %n pista(s)Removiendo los accesos directos de %n pista(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Ordenando hotcues de %n pista por posición (removiendo desfases)Ordenando hotcues de %n pistas por posición (removiendo desfases)Ordenando hotcues de %n pistas(s) por posición (removiendo desfases) - + Sorting hotcues of %n track(s) by position Ordenando hotcues de %n pista por posiciónOrdenando hotcues de %n pistas por posiciónOrdenando hotcues de %n pista(s) por posición - + Resetting keys of %n track(s) Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s)Restableciendo claves de %n pista(s) - + Resetting replay gain of %n track(s) Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s)Restablecimiento de la ganancia de reproducción de %n pista(s) - + Resetting waveform of %n track(s) Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s)Restableciendo forma de onda de %n pista(s) - + Resetting all performance metadata of %n track(s) Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s)Restableciendo meta datos de desempeño de %n pista(s) - + Move these files to the trash bin? ¿Mover estos archivos a la papelera? - + Permanently delete these files from disk? ¿Eliminar permanentemente estos archivos del disco? - - + + This can not be undone! ¡Esto no puede ser revertido! - + Cancel Cancelar - + Delete Files Eliminar archivos - + Okay Okey - + Move Track File(s) to Trash? ¿Mover los archivos de seguimiento a la papelera? - + Track Files Deleted Pistas eliminadas - + Track Files Moved To Trash Archivos de seguimiento movidos a la papelera - + %1 track files were moved to trash and purged from the Mixxx database. %1 archivos de pista fueron movidos a la papelera y purgados de la base de datos de Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 archivos de pistas han sido eliminados y se ha purgado de la base de datos de Mixxx. - + Track File Deleted Archivo de Pista Eliminado - + Track file was deleted from disk and purged from the Mixxx database. El archivo de pista ha sido eliminado del disco y purgado de la base de datos de Mixxx - + The following %1 file(s) could not be deleted from disk No se han podido eliminar del disco los siguientes %1 archivo(s) - + This track file could not be deleted from disk Este archivo de pista no se ha podido borrar del disco - + Remaining Track File(s) Renombrando archivo(s) de pista - + Close Cerrar - + Clear Reset metadata in right click track context menu in library Climpiar - + Loops Bucles - + Clear BPM and Beatgrid Limpia las BPM y la cuadrícula de tiempo - + Undo last BPM/beats change Revertir el último cambio de BPM/pulsaciones - + Move this track file to the trash bin? ¿Mover este archivo de pista a la papelera? - + Permanently delete this track file from disk? ¿Eliminar permanentemente este archivo de pista del disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Todos los platos donde estas pistas hayan sido cargadas se detendrán, y las pistas serán expulsadas. - + All decks where this track is loaded will be stopped and the track will be ejected. Todos los platos donde esta pista haya sido cargada se detendrán, y la pista será expulsada. - + Removing %n track file(s) from disk... Removiendo %n archivo(s) de pista del disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: si estás en la vista Ordenador o Grabación tienes que volver a hacer clic en la vista actual para ver los cambios. - + Track File Moved To Trash Archivo de seguimiento movido a la papelera - + Track file was moved to trash and purged from the Mixxx database. El archivo de seguimiento se ha movido a la papelera y se ha eliminado de la base de datos de Mixxx. - + Don't show again during this session No mostrar nuevamente durante esta sesión - + The following %1 file(s) could not be moved to trash El/los siguiente(s) %1 archivo(s) no pudieron ser movidos a la papelera - + This track file could not be moved to trash Este archivo de pista no se ha podido mover a la papelera + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Poniendo portadas de %n pista(s)Poniendo portadas de %n pista(s)Poniendo portadas de %n pista(s) - + Reloading cover art of %n track(s) Recarga de portadas de %n pista(s)Recarga de portadas de %n pista(s)Recarga de portadas de %n pista(s) @@ -16996,37 +17537,37 @@ Carpeta: %2 WTrackTableView - + Confirm track hide Confirmar ocultar pista - + Are you sure you want to hide the selected tracks? ¿Estas seguro de que quieres ocultar las pistas seleccionadas? - + Are you sure you want to remove the selected tracks from AutoDJ queue? ¿Esta seguro de que quiere eliminar las pistas seleccionadas de la cola del AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Estás seguro que quieres eliminar las pistas seleccionada de este cajón? - + Are you sure you want to remove the selected tracks from this playlist? ¿Esta seguro de que desea eliminar las pistas seleccionadas de la lista de reproducción? - + Don't ask again during this session No volver a preguntar durante esta sesión - + Confirm track removal Confirmar eliminación del track @@ -17034,12 +17575,12 @@ Carpeta: %2 WTrackTableViewHeader - + Show or hide columns. Mostrar u ocultar columnas. - + Shuffle Tracks Mezclar pistas @@ -17069,7 +17610,7 @@ Carpeta: %2 decks - platos + decks @@ -17077,22 +17618,22 @@ Carpeta: %2 Biblioteca - + Choose music library directory Elija el directorio de la biblioteca de la música - + controllers Controladores - + 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. @@ -17250,6 +17791,24 @@ Pulse Aceptar para salir. La solicitud de la red no ha empezado + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17258,4 +17817,27 @@ Pulse Aceptar para salir. Ningún efecto cargado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_et.qm b/res/translations/mixxx_et.qm index 656f2f55076e..99f097fc329a 100644 Binary files a/res/translations/mixxx_et.qm and b/res/translations/mixxx_et.qm differ diff --git a/res/translations/mixxx_et.ts b/res/translations/mixxx_et.ts index 60170e09d075..97608bbe9fe6 100644 --- a/res/translations/mixxx_et.ts +++ b/res/translations/mixxx_et.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source - + Auto DJ Automaatne DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -147,28 +147,28 @@ 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 @@ -178,12 +178,12 @@ Nimeta ümber - + Lock Lukus - + Duplicate duplikaat @@ -204,24 +204,24 @@ 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 @@ -231,70 +231,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -302,12 +309,12 @@ BaseSqlTableModel - + # Nr - + Timestamp Ajatempel @@ -315,7 +322,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ei suuda lugu laadida. @@ -323,137 +330,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Albumi esitaja - + Artist Esitaja - + Bitrate Bitikiirus - + BPM Lööki minutis - + Channels Kanalid - + Color - + Comment Märkus - + Composer Helilooja - + Cover Art Katte kunst - + Date Added Lisamise kuupäev - + Last Played - + Duration Kestus - + Type Tüüp - + Genre Žanr - + Grouping Rühmitamine - + Key Helistik - + Location Asukoht - + + Overview + + + + Preview Eelvaade - + Rating Hinnang - + ReplayGain - + Samplerate - + Played Mängitud - + Title Pealkiri - + Track # Lugu nr - + Year Aasta - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -541,67 +553,77 @@ BrowseFeature - + Add to Quick Links Lisa otselinkidesse - + Remove from Quick Links Eemalda otselinkidest - + Add to Library Lisa kogumikku - + Refresh directory tree - + Quick Links Kiirlingid - - + + Devices Seadmed - + Removable Devices Eemaldatavad seadmed - - + + Computer Arvuti - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -747,87 +769,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -837,27 +859,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1039,13 +1066,13 @@ trace - Above + Profiling messages - + Set to full volume Sea volüüm maksimumile - + Set to zero volume Sea volüüm nulli @@ -1070,13 +1097,13 @@ trace - Above + Profiling messages - + Headphone listen button Kõrvaklappidega kuulamise nupp - + Mute button Vaigistusnupp @@ -1087,25 +1114,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -1146,22 +1173,22 @@ trace - Above + Profiling messages - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1171,193 +1198,193 @@ trace - Above + Profiling messages 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 @@ -1473,20 +1500,20 @@ trace - Above + Profiling messages - - + + Volume Fader - + Full Volume Täisvolüüm - + Zero Volume Nullvolüüm @@ -1502,7 +1529,7 @@ trace - Above + Profiling messages - + Mute Vaigista @@ -1513,7 +1540,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1534,25 +1561,25 @@ trace - Above + Profiling messages - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1622,82 +1649,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1738,451 +1765,451 @@ trace - Above + Profiling messages - + 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 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 - + 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 @@ -2197,102 +2224,102 @@ trace - Above + Profiling messages Kõrvaklappide tundlikkus - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2444,1041 +2471,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3593,32 +3642,32 @@ trace - Above + Profiling messages 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. @@ -3662,13 +3711,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Eemalda - + Create New Crate @@ -3678,132 +3727,132 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U Esitusloend (*.m3u) - + Crates are a great way to help organize the music you want to DJ with. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3898,12 +3947,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4022,72 +4071,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Hüpe - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Sekundid - + Auto DJ Fade Modes Full Intro + Outro: @@ -4118,80 +4167,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat Kordus - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Automaatne DJ - + Shuffle Juhuesitus - + 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. @@ -4414,37 +4463,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> <i>Valmis õppima %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4483,17 +4532,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -5146,113 +5195,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Pole - + %1 by %2 %1 - %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Tõrkeotsing - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5265,105 +5314,105 @@ Apply settings and continue? Kontrolleri nimi - + Enabled Lubatud - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Kirjeldus: - + Support: Toetus: - + Screens preview - + Input Mappings - - + + Search - - + + Add Lisa - - + + Remove Eemalda @@ -5378,22 +5427,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: Autor: - + Name: Nimi: @@ -5403,28 +5452,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Tühjenda kõik - + Output Mappings @@ -5583,6 +5632,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6174,62 +6233,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Info - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7396,173 +7455,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Lubatud - + Stereo Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Seadistamise viga @@ -7580,131 +7638,131 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate Diskreetimissagedus - + Audio Buffer Audiopuhver - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Väljund - + Input Sisend - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7859,27 +7917,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7892,250 +7951,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate Kaadrisagedus - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Madal - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High Kõrge - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8143,47 +8208,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers Kontrollerid - + Library Fonoteek - + Interface Liides - + Waveforms - + Mixer Miksija - + Auto DJ Automaatne DJ - + Decks - + Colors @@ -8218,47 +8283,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efektid - + 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> - + Vinyl Control - + Live Broadcasting - + Modplug Decoder @@ -8291,22 +8356,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Alusta salvestamist - + Recording to file: - + Stop Recording Peata salvestamine - + %1 MiB written in %2 @@ -8614,284 +8679,284 @@ This can not be undone! Summaarne - + Filetype: Failitüüp: - + BPM: Tempo: - + Location: Asukoht: - + Bitrate: Bitikiirus: - + Comments - + BPM Lööki minutis - + Sets the BPM to 75% of the current value. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Lugu nr - + Album Artist Albumi esitaja - + Composer Helilooja - + Title Pealkiri - + Grouping Rühmitamine - + Key Helistik - + Year Aasta - + Artist Esitaja - + Album Album - + Genre Žanr - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM Topelt BPM - + Halve BPM Pool BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous &Eelmine - + Move to the next item. "Next" button - + &Next &Järgmine - + Duration: Kestvus: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Ava failisirvias - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Rakenda - + &Cancel &Katkesta - + (no color) @@ -9048,7 +9113,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9250,27 +9315,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9414,38 +9479,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. Check the logs for details. @@ -9453,12 +9518,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9466,18 +9531,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9485,15 +9550,15 @@ 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 @@ -9504,57 +9569,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate aktiveeri - + toggle lüliti - + right paremale - + left vasakule - + right small - + left small - + up üles - + down alla - + up small - + down small - + Shortcut Otsetee @@ -9562,62 +9627,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9627,22 +9692,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9689,27 +9754,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9769,18 +9834,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Kadunud lood - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9792,208 +9857,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10009,13 +10115,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lukus - - + + Playlists Esitusloendid @@ -10025,32 +10131,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Võta lukust lahti - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -11541,7 +11673,7 @@ Fully right: end of the effect period - + Deck %1 Rada %1 @@ -11674,7 +11806,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11705,7 +11837,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11838,12 +11970,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11878,42 +12010,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11971,54 +12103,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12153,19 +12285,19 @@ may introduce a 'pumping' effect and/or distortion. Lukus - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12577,7 +12709,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12759,7 +12891,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Katte kunst @@ -12995,197 +13127,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13423,924 +13555,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle Lülita - + Toggle the current effect. - + Next Järgmine - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Eelmine - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse Vastupidi - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Mängi/peata - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14475,33 +14615,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) (mängides) @@ -14521,205 +14661,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (peatamise ajal) - + Cue - + Headphone Kõrvaklapid - + Mute Vaigista - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Kui ükski rada ei mängi, sünkroniseerub esimese rajaga millel on BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock Kell - + Displays the current time. Jooksva aja kuvamine. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14764,254 +14914,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward Kiiresti edasi - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat Kordus - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Väljasta - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration Loo kestvus - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist Loo esitaja - + Displays the artist of the loaded track. - + Track Title Loo pealkiri - + Displays the title of the loaded track. - + Track Album Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15019,12 +15169,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15032,47 +15182,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15244,47 +15389,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15408,407 +15553,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist Uue esitusnimekirja loomine - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Vaade - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library Tühik - + &Full Screen &Täisekraan - + Display Mixxx using the full screen - + &Options &Seaded - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Luba &klaviatuuri otseteed - + Toggles keyboard shortcuts on or off Lülitab klaviatuuri otseteed sisse või välja - + Ctrl+` Ctrl+` - + &Preferences &Valikud - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Arendaja &Tööriistad - + Opens the developer tools dialog - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Abi - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual &Kasutusjuhend - + Read the Mixxx user manual. - + &Keyboard Shortcuts &Klaviatuuri Otseteed - + Speed up your workflow with keyboard shortcuts. Kiirenda oma tööd kasutades klaviatuuri otseteid. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Tõlgi see rakendus - + Help translate this application into your language. - + &About &Teave - + About the application Teave rakendusest @@ -15816,25 +15992,25 @@ This can not be undone! WOverview - + 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 @@ -15843,25 +16019,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -15872,169 +16036,163 @@ This can not be undone! Otsi... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Otsetee + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Nupp - + harmonic with %1 - + BPM Lööki minutis - + between %1 and %2 - + Artist Esitaja - + Album Artist Albumi esitaja - + Composer Helilooja - + Title Pealkiri - + Album Album - + Grouping Rühmitamine - + Year Aasta - + Genre Žanr - + Directory - + &Search selected @@ -16042,599 +16200,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck Rada - + Sampler - + Add to Playlist Lisa esitusnimekirja - + Crates Plaadikastid - + Metadata - + Update external collections - + Cover Art Katte kunst - + Adjust BPM - + Select Color - - + + Analyze Analüüsi - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Eemalda - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Seaded - + Open in File Browser Ava failisirvias - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Hinnang - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Nupp - + ReplayGain - + Waveform - + Comment Märkus - + All Kõik - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Lukusta BPM - + Unlock BPM Eemalda BMP lukk - + Double BPM Topelt BPM - + Halve BPM Pool BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Rada %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Katkesta - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Sulge - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16650,37 +16834,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16688,37 +16872,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16726,60 +16910,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Näita või peida tulpasi. + + + Shuffle Tracks + + 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. @@ -16790,67 +16979,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Sirvi - + Export directory - + Database version - + Export Ekspordi - + Cancel Katkesta - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16871,7 +17071,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16881,23 +17081,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_eu.qm b/res/translations/mixxx_eu.qm index e0f1210c84d2..58e6770a719a 100644 Binary files a/res/translations/mixxx_eu.qm and b/res/translations/mixxx_eu.qm differ diff --git a/res/translations/mixxx_eu.ts b/res/translations/mixxx_eu.ts index 2b80212ca903..518820c3c7f6 100644 --- a/res/translations/mixxx_eu.ts +++ b/res/translations/mixxx_eu.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source Kendu kaxa pistaren iturri bezala - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Gehitu kaxa pistaren iturri bezala @@ -149,28 +149,28 @@ 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 @@ -180,12 +180,12 @@ Berrizendatu - + Lock Blokeatu - + Duplicate Bikoiztu @@ -206,24 +206,24 @@ Erreprodukzio-zerrenda osoa aztertu - + Enter new name for playlist: Erreprodukzio-zerrendaren izen berria sartu: - + Duplicate Playlist Bikoiztu erreprodukzio-zerrenda - - + + Enter name for new playlist: Erreprodukzio-zerrenda berriaren izena sartu: - + Export Playlist Esportatu erreprodukzio-zerrenda @@ -233,70 +233,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +311,12 @@ BaseSqlTableModel - + # # - + Timestamp Denbora-marka @@ -317,7 +324,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ezin izan da pista kargatu @@ -325,137 +332,142 @@ BaseTrackTableModel - + Album Albuma - + Album Artist Albumaren artista - + Artist Artista - + Bitrate Bit tasa - + BPM BPM - + Channels Kanalak - + Color Kolorea - + Comment Iruzkina - + Composer Konpositorea - + Cover Art Azalaren irudia - + Date Added Gehitze-data: - + Last Played - + Duration Iraupena - + Type Mota - + Genre Generoa - + Grouping Taldeka - + Key Tonalitatea - + Location Kokalekua - + + Overview + + + + Preview Aurreikusi - + Rating Balorazioa - + ReplayGain ReplayGain - + Samplerate - + Played Jotakoak - + Title Titulua - + Track # Pista-zenbakia - + Year Urtea - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -543,67 +555,77 @@ BrowseFeature - + Add to Quick Links Gehitu esteka azkarretara - + Remove from Quick Links Kendu esteka azkarretatik - + Add to Library Liburutegira gehitu - + Refresh directory tree - + Quick Links Esteka azkarrak - - + + Devices Gailuak - + Removable Devices Gailu aldagarriak - - + + Computer Ordenagailua - + Music Directory Added Musika-direktorioa gehitu da - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -749,87 +771,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -839,27 +861,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1041,13 +1068,13 @@ trace - Above + Profiling messages - + Set to full volume - + Set to zero volume @@ -1072,13 +1099,13 @@ trace - Above + Profiling messages - + Headphone listen button - + Mute button @@ -1089,25 +1116,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -1148,22 +1175,22 @@ trace - Above + Profiling messages - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1173,193 +1200,193 @@ trace - Above + Profiling messages 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 - + 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 Sortu %1-taupada begizta - + Create temporary %1-beat loop roll Sortu behin behineko %1-taupada begizta erroilua @@ -1475,20 +1502,20 @@ trace - Above + Profiling messages - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1504,7 +1531,7 @@ trace - Above + Profiling messages - + Mute @@ -1515,7 +1542,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1536,25 +1563,25 @@ trace - Above + Profiling messages - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1624,82 +1651,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid Doitu taupada sarea - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1740,451 +1767,451 @@ trace - Above + Profiling messages - + 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 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 - + 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 @@ -2199,102 +2226,102 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2446,1041 +2473,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3595,32 +3644,32 @@ trace - Above + Profiling messages 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. @@ -3664,13 +3713,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Kendu - + Create New Crate @@ -3680,132 +3729,132 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U erreproduzio-zerrenda (*.m3u) - + 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 - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Kaxak zure musika nahieran antolatzea baimentzen dizute! - + Do you really want to delete crate <b>%1</b>? - + 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 @@ -3900,12 +3949,12 @@ trace - Above + Profiling messages Lehengo - + Official Website - + Donate @@ -4024,72 +4073,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Jauzi - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Segundoak - + Auto DJ Fade Modes Full Intro + Outro: @@ -4120,80 +4169,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat Errepikatu - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto DJ - + Shuffle Nahastu - + 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. @@ -4416,37 +4465,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4485,17 +4534,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -5148,113 +5197,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Bat ere ez - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5267,105 +5316,105 @@ Apply settings and continue? - + Enabled Gaitua - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add Gehitu - - + + Remove Kendu @@ -5380,22 +5429,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5405,28 +5454,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Garbitu dena - + Output Mappings @@ -5585,6 +5634,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6176,62 +6235,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Informazioa - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7398,173 +7457,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Gaitua - + Stereo Estereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Konfigurazio-errorea @@ -7582,131 +7640,131 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate Lagintze-maiztasuna - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Irteera - + Input Sarrera - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7861,27 +7919,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7894,250 +7953,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Grabea - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High Agudoa - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8145,47 +8210,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Soinu Hardware-a - + Controllers - + Library Liburutegia - + Interface Interfazea - + Waveforms - + Mixer Nahastailea - + Auto DJ Auto DJ - + Decks - + Colors @@ -8220,47 +8285,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efektuak - + 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> - + Vinyl Control Binilo kontrola - + Live Broadcasting - + Modplug Decoder @@ -8293,22 +8358,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Grabatzen hasi - + Recording to file: - + Stop Recording Grabaketa gelditu - + %1 MiB written in %2 @@ -8616,284 +8681,284 @@ This can not be undone! Laburpena - + Filetype: - + BPM: BPM: - + Location: Kokapena: - + Bitrate: Bit-tasa: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Pista-zenbakia - + Album Artist Albumaren artista - + Composer Konpositorea - + Title Titulua - + Grouping Taldeka - + Key Tonalitatea - + Year Urtea - + Artist Artista - + Album Albuma - + Genre Generoa - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM Bikoiztu BPMa - + Halve BPM Erdibitu BPMa - + Clear BPM and Beatgrid Garbitu BPM eta taupada sarea - + Move to the previous item. "Previous" button - + &Previous &Aurrekoa - + Move to the next item. "Next" button - + &Next &Hurrengoa - + Duration: Iraupena: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Ireki fitxategi kudeatzailean - + Samplerate: - + Track BPM: Pistaren BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Erritmora klikatu - + Hint: Use the Library Analyze view to run BPM detection. Aholkua: Liburutegiko Analizatu ikuspegia erabili BPM detekzioa abiarazteko. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Aplikatu - + &Cancel &Ezeztatu - + (no color) @@ -9050,7 +9115,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9252,27 +9317,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9416,38 +9481,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. Check the logs for details. @@ -9455,12 +9520,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9468,18 +9533,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9487,15 +9552,15 @@ 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 @@ -9506,57 +9571,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate aktibatu - + toggle - + right eskuina - + left ezkerra - + right small - + left small - + up gora - + down behera - + up small - + down small - + Shortcut Lasterbidea @@ -9564,62 +9629,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9629,22 +9694,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9691,27 +9756,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9771,18 +9836,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9794,208 +9859,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10011,13 +10117,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Blokeatu - - + + Playlists Erreprodukzio-zerrendak @@ -10027,32 +10133,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Desblokeatu - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -11543,7 +11675,7 @@ Fully right: end of the effect period - + Deck %1 @@ -11676,7 +11808,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11707,7 +11839,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11840,12 +11972,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11880,42 +12012,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11973,54 +12105,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12155,19 +12287,19 @@ may introduce a 'pumping' effect and/or distortion. Blokeatu - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12579,7 +12711,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12761,7 +12893,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Azalaren irudia @@ -12997,197 +13129,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13425,924 +13557,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Sampler Bankua Gorde - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Kargatu Sampler Bankua - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Hurrengoa - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Aurrekoa - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Doitu taupada sarea - + Adjust beatgrid so the closest beat is aligned with the current play position. Doitu taupada sarea taupada hurbilena oraingo erreprodukzio posizioarekin lerrokatu dadin. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14477,33 +14617,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14523,205 +14663,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock Erlojua - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14766,254 +14916,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward Aurreratze azkarra - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat Errepikatu - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Egotzi - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve Begizta erdibitu - + Halves the current loop's length by moving the end marker. Uneko begiztaren luzera erdibitzen du bukaera marka mugituz. - + Deck immediately loops if past the new endpoint. Erreproduzigailua berehala begiztatzen du bukaera puntua igarotakoan. - + Loop Double Begizta bikoiztu - + Doubles the current loop's length by moving the end marker. Uneko begiztaren luzera bikoizten du bukaera marka mugituz. - + Beatloop Taupada begizta - + Toggles the current loop on or off. Uneko begizta gaitu ala desgaitzen du - + Works only if Loop-In and Loop-Out marker are set. Begizta sarrera eta begizta irteera markak ezarrita badaude dabil soilik. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist Pistaren artista - + Displays the artist of the loaded track. - + Track Title Pistaren izenburua - + Displays the title of the loaded track. - + Track Album Albuma - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15021,12 +15171,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15034,47 +15184,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15246,47 +15391,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15410,407 +15555,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist Sortu erreprodukzio-zerrenda berria - + Ctrl+n - + Create New &Crate - + Create a new crate Sortu kaxa berria - + Ctrl+Shift+N - - + + &View &Ikusi - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen &Pantaila osoa - + Display Mixxx using the full screen Erakutsi Mixxx pantaila osoa erabiliz - + &Options &Aukerak - + &Vinyl Control &Binilo Kontrola - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix &Nahasketa Grabatu - + Record your mix to a file Zure Nahasketa Fitxategi Batean Gorde - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences &Hobespenak - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &Laguntza - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Komunitatearen Laguntza - + Get help with Mixxx - + &User Manual &Erabiltzaile Liburua - + Read the Mixxx user manual. Mixxx-en erabiltzaile liburua irakurri - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application Aplikazio Hau &Itzuli - + Help translate this application into your language. Lagundu aplikazio hau zure hizkuntzara itzultzen - + &About &Honi buruz - + About the application Aplikazioari buruz @@ -15818,25 +15994,25 @@ This can not be undone! WOverview - + 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 @@ -15845,25 +16021,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -15874,169 +16038,163 @@ This can not be undone! Bilatu... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Lasterbidea + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Tonalitatea - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artista - + Album Artist Albumaren artista - + Composer Konpositorea - + Title Titulua - + Album Albuma - + Grouping Taldeka - + Year Urtea - + Genre Generoa - + Directory - + &Search selected @@ -16044,599 +16202,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Gehitu erreprodukzio-zerrendara - + Crates Kaxak - + Metadata - + Update external collections - + Cover Art Azalaren irudia - + Adjust BPM - + Select Color - - + + Analyze Aztertu - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Kendu - + Remove from Playlist - + Remove from Crate - + Hide from Library Liburutegitik ezkutatu - + Unhide from Library Liburutegitik ezkutatzeari utzi - + Purge from Library Kendu liburutegitik - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Propietateak - + Open in File Browser Ireki fitxategi kudeatzailean - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Balorazioa - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Tonalitatea - + ReplayGain ReplayGain - + Waveform - + Comment Iruzkina - + All Guztiak - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM Bikoiztu BPMa - + Halve BPM Erdibitu BPMa - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Ezeztatu - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Itxi - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16652,37 +16836,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16690,37 +16874,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16728,60 +16912,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Erakutsi ala ezkutatu Zutabeak + + + Shuffle Tracks + + 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. @@ -16792,67 +16981,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Arakatu - + Export directory - + Database version - + Export Esportatu - + Cancel Ezeztatu - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16873,7 +17073,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16883,23 +17083,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_fa.qm b/res/translations/mixxx_fa.qm index e852c288a9b2..e00a10ce159b 100644 Binary files a/res/translations/mixxx_fa.qm and b/res/translations/mixxx_fa.qm differ diff --git a/res/translations/mixxx_fa.ts b/res/translations/mixxx_fa.ts index 181bc75412fe..84a9247c2057 100644 --- a/res/translations/mixxx_fa.ts +++ b/res/translations/mixxx_fa.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source پاک کردن کلکسیون - + Auto DJ دی‌جی خودکار - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source افزودن کلکسیون @@ -147,28 +147,28 @@ BasePlaylistFeature - + New Playlist فهرست‌پخش جدید - + Add to Auto DJ Queue (bottom) افزودن به صف دی‌جی خودکار (پایین) - + Create New Playlist ساخت فهرست پخش جدید - + Add to Auto DJ Queue (top) افزودن به صف دی‌جی خودکار (بالا) - + Remove حذف @@ -178,12 +178,12 @@ نام‌گذاری دوباره - + Lock قفل - + Duplicate کپی همسان @@ -204,24 +204,24 @@ تحلیل فهرست‌پخش جاری - + Enter new name for playlist: نام جدید برای فهرست‌پخش - + Duplicate Playlist کپی همسان از فهرست‌پخش - - + + Enter name for new playlist: نام جدید برای فهرست‌پخش - + Export Playlist برون ریزی فهرست پخش @@ -231,70 +231,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: خطایی ناشناخته در هنگام تولید فهرست‌پخش رخ داده است : - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -302,12 +309,12 @@ BaseSqlTableModel - + # # - + Timestamp زمان ثبت شده در سیستم @@ -315,7 +322,7 @@ BaseTrackPlayerImpl - + Couldn't load track. بارگزاری قطعه امکان‌پذیر نیست. @@ -323,137 +330,142 @@ BaseTrackTableModel - + Album کل %n آلبوم - + Album Artist هنرمند آلبوم - + Artist کل %n هنرمند - + Bitrate میزان ارسال بیت - + BPM BPM - + Channels کانال‌ها - + Color رنگ - + Comment دیدگاه - + Composer آهنگساز - + Cover Art جلد - + Date Added تاریخ افزودن - + Last Played - + Duration مدت پخش - + Type نوع - + Genre ژانر - + Grouping دسته بندی - + Key کلید - + Location موقعیت - + + Overview + + + + Preview پیش‌نمایش - + Rating رتبه‌دهی - + ReplayGain - + Samplerate - + Played پخش شده - + Title سمت - + Track # قطعه # - + Year سال - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -543,67 +555,77 @@ BrowseFeature - + Add to Quick Links افزودن به پیوندهای سریع - + Remove from Quick Links حذف از پیوندهای سریع - + Add to Library - + Refresh directory tree - + Quick Links پیوندهای سریع - - + + Devices دستگاه‌ها - + Removable Devices دستگاههای جداشدنی - - + + Computer کامپیوتر - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -749,87 +771,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -839,27 +861,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1041,13 +1068,13 @@ trace - Above + Profiling messages - + Set to full volume روی کامل گذاشتن - + Set to zero volume روی 0 گذاشتن @@ -1072,13 +1099,13 @@ trace - Above + Profiling messages - + Headphone listen button - + Mute button دکمه قطع صدا @@ -1089,25 +1116,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -1148,22 +1175,22 @@ trace - Above + Profiling messages - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1173,193 +1200,193 @@ trace - Above + Profiling messages اکولایزرها - + 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 ۱۶ - + 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 @@ -1475,20 +1502,20 @@ trace - Above + Profiling messages - - + + Volume Fader - + Full Volume صدای کامل - + Zero Volume صدای 0 @@ -1504,7 +1531,7 @@ trace - Above + Profiling messages - + Mute بی صدا @@ -1515,7 +1542,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1536,25 +1563,25 @@ trace - Above + Profiling messages - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1624,82 +1651,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1740,451 +1767,451 @@ trace - Above + Profiling messages - + 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 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 - + 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 @@ -2199,102 +2226,102 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2446,1041 +2473,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3595,32 +3644,32 @@ trace - Above + Profiling messages 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. @@ -3664,13 +3713,13 @@ trace - Above + Profiling messages CrateFeature - + Remove حذف - + Create New Crate @@ -3680,132 +3729,132 @@ trace - Above + Profiling messages نام‌گذاری دوباره - - + + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) فهرست پخش M3U (فایل .m3u) - + Crates are a great way to help organize the music you want to DJ with. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3900,12 +3949,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4026,72 +4075,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds ثانیه - + Auto DJ Fade Modes Full Intro + Outro: @@ -4122,80 +4171,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat تکرار - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ دی‌جی خودکار - + Shuffle درهم ریختن - + 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. @@ -4418,37 +4467,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4487,17 +4536,17 @@ You tried to learn: %1,%2 - + Log - + Search جستوجو - + Stats @@ -5150,113 +5199,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None هیچکدام - + %1 by %2 %1 بر اساس %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5269,105 +5318,105 @@ Apply settings and continue? - + Enabled فعال‌شده - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: توضیح: - + Support: پشتیبانی: - + Screens preview - + Input Mappings - - + + Search جستوجو - - + + Add افزودن - - + + Remove حذف @@ -5382,22 +5431,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5407,28 +5456,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All پاک کردن همه - + Output Mappings @@ -5587,6 +5636,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6178,62 +6237,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information اطلاعات - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7400,173 +7459,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled فعال‌شده - + Stereo استریو - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error خطای پیکربندی @@ -7584,131 +7642,131 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate سرعت نمونه - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output خروجی - + Input ورودی - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7863,27 +7921,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7896,250 +7955,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate سرعت فریم‌ها - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low پایین - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High بالا - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8147,47 +8212,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library کتابخانه - + Interface واسط - + Waveforms - + Mixer مخلوط‌کن - + Auto DJ دی‌جی خودکار - + Decks - + Colors @@ -8222,47 +8287,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects جلوه‌ها - + 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> - + Vinyl Control - + Live Broadcasting - + Modplug Decoder @@ -8295,22 +8360,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8618,284 +8683,284 @@ This can not be undone! چکیده - + Filetype: - + BPM: BPM: - + Location: مکان: - + Bitrate: نرخ بیت: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # قطعه # - + Album Artist هنرمند آلبوم - + Composer آهنگساز - + Title سمت - + Grouping دسته بندی - + Key کلید - + Year سال - + Artist کل %n هنرمند - + Album کل %n آلبوم - + Genre ژانر - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous &قبلی‌ - + Move to the next item. "Next" button - + &Next &بعدی‌ - + Duration: مدت‌زمان: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color رنگ - + Date added: - + Open in File Browser بازکردن در ... - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &اعمال‌ - + &Cancel &لغو - + (no color) @@ -9052,7 +9117,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9256,27 +9321,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9420,38 +9485,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. Check the logs for details. @@ -9459,12 +9524,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9472,18 +9537,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9491,15 +9556,15 @@ 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 @@ -9510,57 +9575,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate فعالسازی - + toggle ضامن - + right راست - + left چپ - + right small - + left small - + up بالا - + down پایین - + up small - + down small - + Shortcut میان‌بر @@ -9568,62 +9633,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9633,22 +9698,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9695,27 +9760,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9775,18 +9840,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9798,208 +9863,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10015,13 +10121,13 @@ Do you want to select an input device? PlaylistFeature - + Lock قفل - - + + Playlists فهرست‌های پخش @@ -10031,32 +10137,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock بازکردن قفل - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 ساخت فهرست پخش جدید @@ -11547,7 +11679,7 @@ Fully right: end of the effect period - + Deck %1 دک %1 @@ -11680,7 +11812,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11711,7 +11843,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11844,12 +11976,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11884,42 +12016,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11977,54 +12109,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12159,19 +12291,19 @@ may introduce a 'pumping' effect and/or distortion. قفل - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12583,7 +12715,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12765,7 +12897,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art جلد @@ -13001,197 +13133,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play نواختن - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13429,924 +13561,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse معکوس - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause پخش/مکث - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14481,33 +14621,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14527,205 +14667,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone هد‌فون - + Mute بی صدا - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock ساعت - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14770,254 +14920,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat تکرار - + When active the track will repeat if you go past the end or reverse before the start. - + Eject پس زدن - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album آلبوم - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15025,12 +15175,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15038,47 +15188,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - Overwrite Existing File? + + Replace Existing File? - - "%1" already exists, overwrite? + + "%1" already exists, replace? - &Overwrite + &Replace - - Over&write All - - - - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15250,47 +15395,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15414,407 +15559,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view - + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist ایجاد یک فهرست‌پخش جدید - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &نما‌ - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+5 - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen &تمام صفحه - + Display Mixxx using the full screen - + &Options &گزینه‌ها‌ - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` Ctrl+` - + &Preferences &تنظیمات‌ - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &راهنما - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx &دریافت کمک از Mixxx - + &User Manual &راهنمای کاربری - + Read the Mixxx user manual. خواندن راهنمای کاربری Mixxx - + &Keyboard Shortcuts &میانبر های کیبورد - + Speed up your workflow with keyboard shortcuts. سرعت کار خود را با میانبر های کیبورد افزایش دهید! - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &این نرم افزار را ترجمه کنید - + Help translate this application into your language. در ترجمه این نرم افزار به زبان خودتان کمک کنید - + &About &درباره - + About the application درباره این نرم افزار @@ -15822,25 +15998,25 @@ This can not be undone! WOverview - + 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 @@ -15849,25 +16025,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - پاکسازی داده ها - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun جستوجو - + Clear input پاکسازی داده ها @@ -15878,169 +16042,163 @@ This can not be undone! جستجو... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - میان‌بر + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - تمرکز + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - خروج از جستوجو + + Delete query from history + WSearchRelatedTracksMenu - + Search related Tracks - + Key کلید - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist کل %n هنرمند - + Album Artist هنرمند آلبوم - + Composer آهنگساز - + Title سمت - + Album کل %n آلبوم - + Grouping دسته بندی - + Year سال - + Genre ژانر - + Directory - + &Search selected @@ -16048,599 +16206,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck دسته - + Sampler - + Add to Playlist افزودن به فهرست پخش - + Crates کلکسیون - + Metadata - + Update external collections - + Cover Art جلد - + Adjust BPM - + Select Color - - + + Analyze تحلیل - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) افزودن به صف دی‌جی خودکار (پایین) - + Add to Auto DJ Queue (top) افزودن به صف دی‌جی خودکار (بالا) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove حذف - + Remove from Playlist - + Remove from Crate - + Hide from Library از کتابخانه پنهان کن - + Unhide from Library ظاهر سازی در کتابخانه - + Purge from Library پاکسازی کتابخانه - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties مشخصات - + Open in File Browser بازکردن در ... - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating رتبه‌دهی - + Cue Point - + + Hotcues - + Intro - + Outro - + Key کلید - + ReplayGain - + Waveform - + Comment دیدگاه - + All همه - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel انصراف - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16656,37 +16840,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16694,37 +16878,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16732,60 +16916,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. نمایش یا پنهان سازی ستون ها + + + Shuffle Tracks + + 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. @@ -16796,67 +16985,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse انتخاب فایل - + Export directory - + Database version - + Export - + Cancel انصراف - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16877,7 +17077,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16887,23 +17087,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_fi.qm b/res/translations/mixxx_fi.qm index ed01cc216038..91d9d1db279f 100644 Binary files a/res/translations/mixxx_fi.qm and b/res/translations/mixxx_fi.qm differ diff --git a/res/translations/mixxx_fi.ts b/res/translations/mixxx_fi.ts index 97596884b9e6..31b70cde33ae 100644 --- a/res/translations/mixxx_fi.ts +++ b/res/translations/mixxx_fi.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source Poista levylaukku olemasta raitalähde - + Auto DJ Auto-DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Lisää levylaukku raitalähteeksi @@ -149,28 +149,28 @@ 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 @@ -180,12 +180,12 @@ Muuta nimeä - + Lock Lukitse - + Duplicate Monista @@ -206,24 +206,24 @@ Analysoi koko soittolista - + 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 @@ -233,70 +233,77 @@ Lisää Auto DJ -jonoon (korvaa) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +311,12 @@ BaseSqlTableModel - + # # - + Timestamp Aikaleima @@ -317,7 +324,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kappaletta ei voitu ladata. @@ -325,137 +332,142 @@ BaseTrackTableModel - + Album Levy - + Album Artist Albumin esittäjä - + Artist Esittäjä - + Bitrate Bittinopeus - + BPM BPM - + Channels Kanavat - + Color Väri - + Comment Kommentti - + Composer Säveltäjä - + Cover Art Kansikuva - + Date Added Lisäyspäivä - + Last Played Viimeksi soitettu - + Duration Kesto - + Type Tyyppi - + Genre Tyylilaji - + Grouping Ryhmittely - + Key Sävellaji - + Location Sijainti - + + Overview + + + + Preview Esikatselu - + Rating Arvostelu - + ReplayGain ReplayGain (toiston voimakkuuden tasoitus) - + Samplerate Näytteenottotaajuus - + Played Soitettu - + Title Kappale - + Track # Raidan # - + Year Vuosi - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -543,67 +555,77 @@ BrowseFeature - + Add to Quick Links Lisää pikalinkkejä - + Remove from Quick Links Poista pikalinkeistä - + Add to Library Lisää kirjastoon - + Refresh directory tree - + Quick Links Pikalinkit - - + + Devices Laitteet - + Removable Devices Irrotettavat laitteet - - + + Computer Tietokone - + 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? Lisäsit yhden tahi useamman musiikkihakemiston. Raidat näiden hakemistojen sisällä eivät tule tarjolle ennen kuin kirjastosi uudelleenskannataan. Haluatko skannata sen lävitse nyt? - + Scan Skannaa - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Tietokone" mahdollistaa navigoinnin, tarkastelun ja raitojen lataamisen kiintolevysi kansioista sekä ulkoisista laitteista. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -749,87 +771,87 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixx on avoimen lähdekoodin DJ-ohjelma. Lisätietoja näet täältä: - + Starts Mixxx in full-screen mode Käynnistää Mixxx:in kokoruututilassa - + Use a custom locale for loading translations. (e.g 'fr') Ota käyttöön oma kotoistus ja kieli ladataksesi käännöksiä. (esim. 'fi') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Päällimmäinen hakemisto josta Mixx etsii hyödykkeitä kuten MIDI-kartoitukset, vakiollisen asennussijainnin ohittaminen. - + Path the debug statistics time line is written to Polku johon virhekorjaustilaston aikajana kirjoitetaan - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Laittaa Mixxx:in näyttämään/kirjoittamaan talteen kaiken sen vastaanottaman ohjain-datan sekä kirjaamaan nuo ladatut toiminnot - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Kytkee päälle kehittäjätilan. Sisältää tietojen lisäkirjauksia, suorituskykyyn liittyviä tilastoja, sekä kehittäjätyökalujen valikon. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Kytkee päälle turvatun tilan. Päältä otetaan pois OpenGL-ääniaaltomuodot sekä pyörivät vinyylivimpaimet. Kokeile tätä vaihtoehtotilaa mikäli Mixxx kaatuu käynnistyksen yhteydessä. - + [auto|always|never] Use colors on the console output. [auto|always|never] Käytä päätteen tulosteissa värejä. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -844,27 +866,32 @@ virheenkorjaukseen liittyvät - kuten yllä + bugeihin liittyvät/kehittäjälii jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + 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. Asettaa kirjaustason asteelle jossa kirjauspuskuri huuhtaistaan mixxx.log -tiedostoon. <level> on yksi arvoista jotka määritetään yllä --log-level tasolla. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1046,13 +1073,13 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Set to full volume Aseta äänenvoimakkuus täysille - + Set to zero volume Aseta äänenvoimakkuus nollalle @@ -1077,13 +1104,13 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Headphone listen button Kuulokekuuntelun nappi - + Mute button Hiljennä-nappi @@ -1094,25 +1121,25 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + 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 @@ -1153,22 +1180,22 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit BPM-syötön nappi - + Toggle quantize mode Kvantisoinnin valintanappi - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode Valitse sävellajin lukitustila @@ -1178,193 +1205,193 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit 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 Aseta hotcue-piste %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 Siirry hotcue-pisteeseen %1 ja toista. - + 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 @@ -1482,20 +1509,20 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1511,7 +1538,7 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Mute Hiljennä @@ -1522,7 +1549,7 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Headphone Listen @@ -1543,25 +1570,25 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1631,82 +1658,82 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Adjust Beatgrid Säädä Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1747,451 +1774,451 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit 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 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 - + 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 @@ -2206,102 +2233,102 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2453,1041 +2480,1063 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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) Lisää Auto DJ -jonoon (korvaa) - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3602,32 +3651,32 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit 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. @@ -3671,13 +3720,13 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit CrateFeature - + Remove Poista - + Create New Crate @@ -3687,132 +3736,132 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit Muuta nimeä - - + + Lock Lukitse - + Export Crate as Playlist - + Export Track Files Vie raitatiedostoja - + Duplicate Monista - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U Soittolista (*.m3u) - + 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. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Levylaukkujen avulla voit järjestellä musiikkisi kuten haluat! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3907,12 +3956,12 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit Aikaisemmat avustajat - + Official Website - + Donate @@ -4031,72 +4080,72 @@ jäljitys - kuten yllä + henkilökuvaliitteiset viestit DlgAutoDJ - + Skip Ohita - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds sekuntia - + Auto DJ Fade Modes Full Intro + Outro: @@ -4127,80 +4176,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat Kertaa - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto-DJ - + Shuffle Sekoita - + 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. @@ -4423,37 +4472,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4492,17 +4541,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -5155,114 +5204,114 @@ associated with each key. DlgPrefController - + Apply device settings? Otetaanko laitteen asetukset käyttöön? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Laitteen asetukset tulee ottaa käyttöön ennen ohjatun määrittelyn käynnistämistä. Haluatko ottaa asetukset käyttöön ja jatkaa? - + None Määrittelemätön - + %1 by %2 %1 (tehnyt %2) - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5275,105 +5324,105 @@ Haluatko ottaa asetukset käyttöön ja jatkaa? Ohjaimen nimi - + Enabled Käytössä - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Kuvaus: - + Support: Tuki: - + Screens preview - + Input Mappings - - + + Search - - + + Add Lisää - - + + Remove Poista @@ -5388,22 +5437,22 @@ Haluatko ottaa asetukset käyttöön ja jatkaa? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5413,28 +5462,28 @@ Haluatko ottaa asetukset käyttöön ja jatkaa? Ohjattu määrittely (vain MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Tyhjennä kaikki - + Output Mappings @@ -5593,6 +5642,16 @@ Haluatko ottaa asetukset käyttöön ja jatkaa? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6184,62 +6243,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Tietoja - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7406,173 +7465,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Käytössä - + Stereo Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Virhe asetuksissa @@ -7590,131 +7648,131 @@ The loudness target is approximate and assumes track pregain and main output lev Äänirajapinta - + Sample Rate Näytteenottotaajuus - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms - + Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Ulostulo - + Input Sisääntulo - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices Etsi laitteita @@ -7869,27 +7927,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available OpenGL ei ole käytettävissä - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7902,250 +7961,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate Kehysnopeus - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain Näytettävä herkkyys - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies Visuaalinen säädin keskialueen taajuuksille - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Matala - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies Visuaalinen säädin korkeille taajuuksille - + Visual gain of the low frequencies Visuaalinen säädin matalille taajuksille - + High Korkea - + Global visual gain Yleinen visuaalinen säädin - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8153,47 +8218,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Ääniliitynnät - + Controllers Ohjaimet - + Library Kirjasto - + Interface Käyttöliittymä - + Waveforms - + Mixer Mikseri - + Auto DJ Auto-DJ - + Decks - + Colors @@ -8228,47 +8293,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efektit - + 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> - + Vinyl Control Ohjainlevy - + Live Broadcasting Verkkojulkaisu - + Modplug Decoder @@ -8301,22 +8366,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Aloita tallennus - + Recording to file: - + Stop Recording Lopeta tallennus - + %1 MiB written in %2 @@ -8624,284 +8689,284 @@ This can not be undone! Yhteenveto - + Filetype: Tiedostotyyppi: - + BPM: BPM: - + Location: Sijainti: - + Bitrate: Bittinopeus: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Raidan # - + Album Artist Albumin esittäjä - + Composer Säveltäjä - + Title Kappale - + Grouping Ryhmittely - + Key Sävellaji - + Year Vuosi - + Artist Esittäjä - + Album Levy - + Genre Tyylilaji - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM Tuplaa BPM - + Halve BPM Puolita BPM - + Clear BPM and Beatgrid Tyhjennä BPM ja iskuverkko - + Move to the previous item. "Previous" button - + &Previous &Edellinen - + Move to the next item. "Next" button - + &Next &Seuraava - + Duration: Kesto: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color Väri - + Date added: - + Open in File Browser Avaa tiedostoselain - + Samplerate: - + Track BPM: Tempo (BPM): - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Naputa tahdissa - + Hint: Use the Library Analyze view to run BPM detection. Vinkki: voit käynnistää tempotunnistuksen kirjaston analysointinäkymstä. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Käytä - + &Cancel &Peru - + (no color) @@ -9058,7 +9123,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9260,27 +9325,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9424,38 +9489,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. Check the logs for details. @@ -9463,12 +9528,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9476,18 +9541,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9495,15 +9560,15 @@ 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 @@ -9514,57 +9579,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate aktivoi - + toggle näkyvyys - + right oikea - + left vasen - + right small - + left small - + up ylös - + down alas - + up small - + down small - + Shortcut Pikakuvake @@ -9572,62 +9637,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9637,22 +9702,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9699,27 +9764,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9779,18 +9844,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Puuttuvat kappaleet - + Hidden Tracks Piilotetut kappaleet - Export to Engine Prime + Export to Engine DJ @@ -9802,208 +9867,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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 @@ -10019,13 +10125,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lukitse - - + + Playlists Soittolistat @@ -10035,32 +10141,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Poista lukitus - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -11551,7 +11683,7 @@ Fully right: end of the effect period - + Deck %1 Dekki %1 @@ -11684,7 +11816,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Läpisyöttö @@ -11715,7 +11847,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11848,12 +11980,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11888,42 +12020,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11981,54 +12113,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12163,19 +12295,19 @@ may introduce a 'pumping' effect and/or distortion. Lukitse - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12587,7 +12719,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Pyörivä Vinyyli @@ -12769,7 +12901,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Kansikuva @@ -13005,197 +13137,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Tempon ja BPM:n naputus - + Show/hide the spinning vinyl section. Näytä/Piilota pyörivä vinyylialue - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13433,924 +13565,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Tallenna samplepankki - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Lataa samplepankki - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Seuraava - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Edellinen - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Säädä Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize Kvantisoi - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse Soita takaperin - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Soita/pysäytä - + Jumps to the beginning of the track. Hyppää kappaleen alkuun. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14485,33 +14625,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. Soita tai pysäytä kappale. - + (while playing) @@ -14531,205 +14671,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue Cue-nappi - + Headphone Kuulokkeet - + Mute Hiljennä - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock Kello - + Displays the current time. Näyttää nykyisen ajan. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14774,254 +14924,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind Pikakelaus eteenpäin - + Fast rewind through the track. Nopea kappaleen takaperin kelaus. - + Fast Forward Pikakelaus taaksepäin - + Fast forward through the track. Nopea kappaleen etuperin kelaus. - + Jumps to the end of the track. Hyppää kappaleen loppuun. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Sävelkorkeuden säätö - + Pitch Rate Sävelkorkeuden suhde - + Displays the current playback rate of the track. - + Repeat Kertaa - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Poistaa dekistä - + Ejects track from the player. - + Hotcue Nopea merkki - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. Absoluuttinen tila - Kappaleen asento vastaa neulan sijaintia ja nopeutta. - + Relative mode - track speed equals needle speed regardless of needle position. Suhteellinen tila - Neula seuraa kappaleen noupeutta riippumatta neulan sijainnista. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Vakio tila - Kappaleen nopeus vastaa vakionopeutta riippumatta neulan sisääntulosta. - + Vinyl Status Vinyylin tila - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. Puolittaa nykyisen loopin pituuden siirtämällä loppumerkkiä. - + Deck immediately loops if past the new endpoint. Dekki toistaa loopin heti, jos ollaan uuden ohituskohdan ohi - + Loop Double - + Doubles the current loop's length by moving the end marker. Tuplaa nykyisen loopin pituuden siirtämällä loppumerkkiä. - + Beatloop Iskulooppi - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time Kappaleen kesto - + Track Duration Kappaleen kesto - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist Kappaleen esittäjä - + Displays the artist of the loaded track. Näyttää ladatun kappaleen esittäjän. - + Track Title Kappaleen nimi - + Displays the title of the loaded track. Näytää ladatun kappaleen nimi. - + Track Album Kappaleen albumi - + Displays the album name of the loaded track. Näyttää ladatun kappaleen albumin. - + Track Artist/Title - + Displays the artist and title of the loaded track. Näyttää ladatun kappaleen esittäjän ja nimen. @@ -15029,12 +15179,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15042,47 +15192,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15254,47 +15399,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15418,407 +15563,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist Luo uusi soittolista - + Ctrl+n - + Create New &Crate - + Create a new crate Luo uusi levylaukku - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Näytä - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Ei välttämättä tue kaikkia kalvoja. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen K&okoruututila - + Display Mixxx using the full screen Näytä Mixxx kokoruututilassa - + &Options &Valinnat - + &Vinyl Control &Levyohjain - + Use timecoded vinyls on external turntables to control Mixxx Ohjaa mixxx:iä levysoittimilla ja aikakoodatuilla levyillä - + Enable Vinyl Control &%1 - + &Record Mix N&auhoita miksaus - + Record your mix to a file Nauhoita miksauksesi tiedostoon - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Ota suora nettijulkaisu käyttöön - + Stream your mixes to a shoutcast or icecast server Lähetä miksauksesi shoutcast- tai icecast-palvelimelle - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Ota &Näppäimistö pikakuvakkeet käyttöön - + Toggles keyboard shortcuts on or off Määrittää ovatko pikanäppäimet käytössä - + Ctrl+` Ctrl+` - + &Preferences &Asetukset - + Change Mixxx settings (e.g. playback, MIDI, controls) Muokkaa ohjelman asetuksia (toistoa, MIDI-ohjaimia jne.) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &Ohje - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Mixxx-yhteisö (englanniksi) - + Get help with Mixxx Pyydä apua Mixxx:in kanssa - + &User Manual &Käyttöohje - + Read the Mixxx user manual. Lue Mixxx-käyttöohjetta. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Käännä tätä ohjelmaa - + Help translate this application into your language. Auta tämän ohjelman kääntämisessä kielellesi. - + &About &Tietoja - + About the application Tietoja ohjelmasta @@ -15826,25 +16002,25 @@ This can not be undone! WOverview - + Passthrough 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 @@ -15853,25 +16029,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -15882,169 +16046,163 @@ This can not be undone! Etsi... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Pikakuvake + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Sävellaji - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Esittäjä - + Album Artist Albumin esittäjä - + Composer Säveltäjä - + Title Kappale - + Album Levy - + Grouping Ryhmittely - + Year Vuosi - + Genre Tyylilaji - + Directory - + &Search selected @@ -16052,599 +16210,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck Dekki - + Sampler Näytesoitin - + Add to Playlist Lisää soittolistaan - + Crates Levylaukut - + Metadata - + Update external collections - + Cover Art Kansikuva - + Adjust BPM - + Select Color - - + + Analyze Analysoi - - + + Delete Track Files - + 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) Lisää Auto DJ -jonoon (korvaa) - + Preview Deck - + Remove Poista - + Remove from Playlist - + Remove from Crate - + Hide from Library Piilota kirjastosta. - + Unhide from Library Näytä kirjastossa. - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Ominaisuudet - + Open in File Browser Avaa tiedostoselain - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Arvostelu - + Cue Point - + + Hotcues Nopea merkki - + Intro - + Outro - + Key Sävellaji - + ReplayGain ReplayGain (toiston voimakkuuden tasoitus) - + Waveform - + Comment Kommentti - + All Kaikki - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Lukitse BPM - + Unlock BPM Poista BPM-lukitus - + Double BPM Tuplaa BPM - + Halve BPM Puolita BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Dekki %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Keskeytä - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Sulje - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16660,37 +16844,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16698,37 +16882,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16736,60 +16920,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Näytä tai piilota sarakkeita. + + + Shuffle Tracks + + 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. @@ -16803,67 +16992,78 @@ Valitse OK poistuaksesi. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Selaa - + Export directory - + Database version - + Export Vie - + Cancel Keskeytä - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16884,7 +17084,7 @@ Valitse OK poistuaksesi. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16894,23 +17094,23 @@ Valitse OK poistuaksesi. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_fr.qm b/res/translations/mixxx_fr.qm index 10b4aa6833ca..6b9ac9d8be31 100644 Binary files a/res/translations/mixxx_fr.qm and b/res/translations/mixxx_fr.qm differ diff --git a/res/translations/mixxx_fr.ts b/res/translations/mixxx_fr.ts index 700bda02529b..e369efea7b7f 100644 --- a/res/translations/mixxx_fr.ts +++ b/res/translations/mixxx_fr.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Bacs - + Enable Auto DJ Active Auto DJ - + Disable Auto DJ Désactiver Auto DJ - + Clear Auto DJ Queue Effacer la file d'attente Auto DJ - + Remove Crate as Track Source Retirer le bac des sources de pistes - + Auto DJ Auto DJ - + Confirmation Clear Confirmation effacement - + Do you really want to remove all tracks from the Auto DJ queue? Êtes-vous sûr de vouloir supprimer toutes les pistes de la file d'attente Auto DJ ? - + This can not be undone. Ça ne peut pas être annulé. - + Add Crate as Track Source Ajouter le bac aux sources de pistes @@ -223,7 +231,7 @@ - + Export Playlist Exporter la liste de lecture @@ -277,13 +285,13 @@ - + Playlist Creation Failed La création de la liste de lecture a échouée - + An unknown error occurred while creating playlist: Une erreur inconnue s'est produite à la création de la liste de lecture : @@ -298,12 +306,12 @@ Voulez-vous vraiment supprimer la liste de lecture <b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # - + Timestamp Horodatage @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de charger la piste. @@ -362,7 +370,7 @@ Canaux - + Color Couleur @@ -377,7 +385,7 @@ Compositeur - + Cover Art Pochette d'album @@ -387,7 +395,7 @@ Date d'ajout - + Last Played Dernière écoute @@ -417,7 +425,7 @@ Tonalité - + Location Emplacement @@ -427,7 +435,7 @@ Aperçu - + Preview Aperçu @@ -467,7 +475,7 @@ Année - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Récupération de l'image... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Impossible d'utiliser le stockage de mot de passe sécurisé : échec d'accès au trousseau. - + Secure password retrieval unsuccessful: keychain access failed. La récupération de mot de passe sécurisé a échoué : échec d'accès au trousseau. - + Settings error Erreur de paramétrage - + <b>Error with settings for '%1':</b><br> <b>Erreur avec le réglage pour '%1' : </b><br> @@ -592,7 +600,7 @@ - + Computer Ordinateur @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - Il affiche les données de métadonnée de fichier, et non les données de piste en provenance de votre bibliothèque Mixxx comme les autres vues de piste. + Il affiche les données des métadonnées de fichiers, et non les données de piste en provenance de votre bibliothèque Mixxx comme les autres vues de piste. - + If you load a track file from here, it will be added to your library. Si vous chargez un fichier de piste à partir d'ici, il sera ajouté à votre bibliothèque. @@ -735,12 +743,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. @@ -771,88 +779,93 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx est un logiciel DJ open source. Pour plus d'informations, voir : - + Starts Mixxx in full-screen mode Démarre Mixxx en mode plein écran - + Use a custom locale for loading translations. (e.g 'fr') Utiliser un paramètre régional pour charger les traductions. (par exemple 'fr', 'French") - + 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 Chemin dans lequel la chronologie des statistiques de débogage est écrite - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Permet à Mixxx d'afficher/journaliser toutes les données du contrôleur qu'il reçoit et les fonctions de script qu'il charge - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! Le mappage du contrôleur émettra des avertissements et des erreurs plus agressifs lors de la détection d'une utilisation abusive des API du contrôleur. Les nouveaux mappages de contrôleur devraient être développés avec cette option activée ! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Active le mode développeur. Comprend des informations de journal supplémentaires, des statistiques sur les performances et un menu d'outils Développeur. - + Top-level directory where Mixxx should look for settings. Default is: Répertoire racine où Mixxx doit chercher les paramètres. La valeur par défaut est : - + Starts Auto DJ when Mixxx is launched. Démarre Auto DJ au lancement de Mixxx. - + Rescans the library when Mixxx is launched. Réanalyse la bibliothèque lorsque Mixxx est lancé. - + Use legacy vu meter Utiliser le vu-mètre historique - + Use legacy spinny Utiliser Spinny hérité - - Loads experimental QML GUI instead of legacy QWidget skin - Charge l'interface graphique QML expérimentale au lieu de l'ancien thème QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + - + + Force Mixxx to load an unstable version with an existing user profile from a stable version + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Active le mode sans échec. Désactive les formes d'onde OpenGL et les widgets de vinyle en rotation. Essayez cette option si Mixxx plante au démarrage. - + [auto|always|never] Use colors on the console output. [auto | toujours | jamais] Utiliser des couleurs sur la sortie de la console. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -867,32 +880,32 @@ debug : ci-dessus + messages débogage/développeur trace : ci-dessus + messages de profilage - + 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. Définit le niveau de journalisation auquel le tampon de journal est vidé vers mixxx.log.<level> est l'une des valeurs définies au --log-level ci-dessus. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Définit la taille maximale du fichier mixxx.log en octets. Utilisez -1 pour illimité. La valeur par défaut est de 100 Mo sous la forme 1e5 ou 1 000 000 000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrompt Mixxx (SIGINT), si un DEBUG_ASSERT est évalué à false. Sous un débogueur vous pouvez continuer ensuite. - + Overrides the default application GUI style. Possible values: %1 Remplace le style d'interface graphique par défaut de l'application. Valeurs possibles : %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Charger le ou les fichiers de musique spécifiés au démarrage. Chaque fichier que vous spécifiez sera chargé sur la prochain platine virtuel. - + Preview rendered controller screens in the Setting windows. Prévisualisez les rendus des écrans de contrôleur dans les fenêtres de paramètres. @@ -985,2557 +998,2585 @@ trace : ci-dessus + messages de profilage ControlPickerMenu - + Headphone Output Sortie casque - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Platine %1 - + Sampler %1 Échantillonneur %1 - + Preview Deck %1 Platine de pré-écoute %1 - + Microphone %1 Microphone %1 - + Auxiliary %1 Auxiliaire %1 - + Reset to default Rétablir les valeurs par défaut - + Effect Rack %1 Rack d'effets %1 - + Parameter %1 Paramètre %1 - + Mixer Table de mixage - - + + Crossfader Curseur de mixage - + Headphone mix (pre/main) Mixage casque (pré-écoute/général) - + Toggle headphone split cueing Basculer la répartition de pré-écoute au casque - + Headphone delay Délai casque - + Transport Transport - + Strip-search through track Rechercher dans la piste - + Play button Bouton de lecture - - + + Set to full volume Mettre à plein volume - - + + Set to zero volume Mettre le volume à zéro - + Stop button Bouton d'arrêt - + Jump to start of track and play Sauter au début de la piste et la lire - + Jump to end of track Sauter à la fin de la piste - + Reverse roll (Censor) button Bouton (Censeur) d'inversion de lecture - + Headphone listen button Bouton d'écoute au casque - - + + Mute button Bouton sourdine - + Toggle repeat mode Activer/désactiver le mode répétition - - + + 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 - + Toggle slip mode Activer le mode "Glissement" - - + + BPM BPM - + Increase BPM by 1 Augmenter le BPM de 1 - + Decrease BPM by 1 Diminuer le BPM de 1 - + Increase BPM by 0.1 Augmenter le BPM de 0.1 - + Decrease BPM by 0.1 Diminuer le BPM de 0.1 - + BPM tap button Bouton de battement BPM - + Toggle quantize mode Activer/désactiver le mode quantification - + One-time beat sync (tempo only) Synchronisation rythmique ponctuelle (tempo uniquement) - + One-time beat sync (phase only) Synchronisation rythmique ponctuelle (phase uniquement) - + Toggle keylock mode Activer/désactiver le mode verrouillage de tonalité - + Equalizers É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 Faire une boucle - + 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 - + Slot %1 Banc %1 - + Headphone Mix Mix du casque - + Headphone Split Cue Répartition de pré-écoute au casque - + Headphone Delay Delai du casque - + Play Lire - + Fast Rewind Rembobinage rapide - + Fast Rewind button Bouton de retour rapide - + Fast Forward Avance rapide - + Fast Forward button Bouton d'avance rapide - + Strip Search Recherche de bande - + Play Reverse Inverser le sens de lecture - + Play Reverse button Bouton inversion du sens de lecture - + Reverse Roll (Censor) Inversion de lecture (Censeur) - + Jump To Start Sauter au début - + Jumps to start of track Saut au début de la piste - + Play From Start Lire à partir du début - + Stop Arrêter - + Stop And Jump To Start Arrêter et sauter au début - + Stop playback and jump to start of track Arrêter la lecture et sauter au début de la piste - + Jump To End Sauter à la fin - + Volume Volume - - - + + + Volume Fader Curseur de volume - - + + Full Volume Plein volume - - + + Zero Volume Volume à zéro - + Track Gain Gain de la piste - + Track Gain knob Potentiomètre de gain de piste - - + + Mute Sourdine - + Eject Éjecter - - + + Headphone Listen Écoute au casque - + Headphone listen (pfl) button Bouton d'écoute (pré-fader) au casque - + Repeat Mode Mode répétition - + Slip Mode Mode glisser - - + + Orientation Orientation - - + + Orient Left Orienter à gauche - - + + Orient Center Orienter au centre - - + + Orient Right Orienter à droite - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap Tap Tempo - + Adjust Beatgrid Faster +.01 Accélérer la grille rythmique de +.01 - + Increase track's average BPM by 0.01 Augmenter le BPM moyen de la piste de 0.01 - + Adjust Beatgrid Slower -.01 Décélérer la grille rythmique de -.01 - + Decrease track's average BPM by 0.01 Diminuer le BPM moyen de la piste de 0.01 - + Move Beatgrid Earlier Placer la grille rythmique plus tôt - + Adjust the beatgrid to the left Ajuster la grille rythmique vers la gauche - + Move Beatgrid Later Placer la grille rythmique plus tard - + Adjust the beatgrid to the right Ajuster la grille rythmique vers la droite - + Adjust Beatgrid Ajuster la grille rythmique - + Align beatgrid to current position Aligner la grille rythmique à la position actuelle - + Adjust Beatgrid - Match Alignment Ajuster la grille rythmique - Correspondance d'alignement - + Adjust beatgrid to match another playing deck. Ajuste la grille rythmique afin de l'aligner à une autre platine en cours de lecture. - + Quantize Mode Mode de quantification - + Sync Synchronisation - + Beat Sync One-Shot Synchronisation rythmique ponctuelle - + Sync Tempo One-Shot Synchronisation tempo ponctuelle - + Sync Phase One-Shot 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 - + High EQ EQ des Aigus - + Mid EQ EQ des Médiums - - + + Main Output Sortie principale - + Main Output Balance Balance de la sortie principale - + Main Output Delay Délai de la sortie principale - + Main Output Gain Gain de sortie la principale - + Low EQ 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 d'attente Auto DJ (fin) - + Append the selected track to the Auto DJ Queue Ajoute la piste sélectionnée à la file d'attente Auto DJ - + Add to Auto DJ Queue (top) Ajouter à la file d'attente Auto DJ (début) - + Prepend selected track to the Auto DJ Queue Ajoute la piste sélectionnée au début de la file d'attente 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 Unit Effacer l'unité - + Clear effect unit Effacer l'unité d'effets - + Toggle Unit Activer/désactiver 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 Activer/désactiver - + Toggle the current effect Activer/désactiver 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 Potentiomètre du gain - + Shuffle the content of the Auto DJ queue Mélange aléatoirement le contenu de la file d'attente Auto DJ - + Skip the next track in the Auto DJ queue Saute à la piste suivante dans la file d'attente Auto DJ - + Auto DJ Toggle Activer/désactiver Auto DJ - + Toggle Auto DJ On/Off Activer/Désactiver Auto DJ Marche/Arret - + 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 la table de mixage - + 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 - + Headphone Gain Gain du casque - + Headphone gain Gain du casque - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Taper pour synchroniser le tempo (et la phase avec la quantification activée), maintenir pour activer la synchronisation permanente - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajuster %1 - + + Deck %1 Stem %2 + Paltine %1 Stem %2 + + + Effect Unit %1 Unité d'effet %1 - + Button Parameter %1 Bouton paramètre %1 - + Skin Thème - + Controller Contrôleur - + Crossfader / Orientation Curseur de mixage / Orientation - + Main Output gain Gain de sortie la principale - + Main Output balance Balance de la sortie principale - + Main Output delay Délai de la sortie principale - + Headphone Casque - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Tuer %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Éjecter ou annuler l'éjection d'une piste, c'est-à-dire recharger la dernière piste éjectée (de n'importe quelle platine)<br> Appuyez deux fois pour recharger la dernière piste remplacée. Dans les platines vides, sera rechargé l'avant-dernier morceau éjecté. - + BPM / Beatgrid BPM / Grille rythmique - + Halve BPM Diviser le tempo par deux - + Multiply current BPM by 0.5 Multiplier le BPM actuel par 0,5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Multiplier le BPM actuel par 0,666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Multiplier le BPM actuel par 0,75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Multiplier le BPM actuel par 1,333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Multiplier le BPM actuel par 1,5 - + Double BPM Doubler le tempo - + Multiply current BPM by 2 Multiplier le BPM actuel par 2 - + Tempo Tap Taper tempo - + Tempo tap button Bouton pour taper tempo - + Move Beatgrid Placer la grille rythmique - + Adjust the beatgrid to the left or right Ajuster la grille rythmique vers la gauche ou la droite - + Move Beatgrid Half a Beat Déplacer la grille rythmique d'un demi-battement - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Ajuster la grille rythmique exactement d'un demi-battement. Utilisable uniquement pour les pistes à tempo constant. - - + + Toggle the BPM/beatgrid lock Activer/désactiver le verrouillage BPM / grille rythmique - + Revert last BPM/Beatgrid Change Annuler le dernier changement de BPM / grille rythmique - + Revert last BPM/Beatgrid Change of the loaded track. Annuler le dernier changement de BPM / grille rythmique de la piste chargée. - + Sync / Sync Lock Synchroniser/Vérouiller synchronisation - + Internal Sync Leader Leader de synchronisation interne - + Toggle Internal Sync Leader Activer/désactiver le leader de synchronisation interne - - + + Internal Leader BPM Leader interne BPM - + Internal Leader BPM +1 Leader interne BPM +1 - + Increase internal Leader BPM by 1 Augmenter le Leader interne BPM de 1 - + Internal Leader BPM -1 Leader interne BPM -1 - + Decrease internal Leader BPM by 1 Diminuer le Leader interne BPM de 1 - + Internal Leader BPM +0.1 Leader interne BPM +0,1 - + Increase internal Leader BPM by 0.1 Augmenter le Leader interne BPM de 0,1 - + Internal Leader BPM -0.1 Leader interne BPM -0,1 - + Decrease internal Leader BPM by 0.1 Diminuer le Leader interne BPM de 0,1 - + Sync Leader Leader de synchronisation - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Indicateur/Bascule du mode de synchronisation à 3 états (Arrêt, Leader doux, Leader explicite) - + Speed Vitesse - + Decrease Speed (Fine) Diminuer la vitesse (Fin) - + 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 Décaler les points de repère 1 milliseconde plus tard - - + + Sort hotcues by position Trier les repères rapides par position - - + + Sort hotcues by position (remove offsets) Trier les repères rapides par position (supprimer les décalages) - + 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 - + if the track has no beats the unit is seconds si la piste n'a pas de battements, l'unité est la seconde - + 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 %1 Beats set from its end point Boucle %1 battements définis à partir de son point final - + Loop Roll %1 Beats set from its end point Boucle déroulante %1 battements définis à partir de son point final - + Create %1-beat loop with the current play position as loop end Créer une boucle de %1-battement avec la position de lecture actuelle comme sortie de boucle - + Create temporary %1-beat loop roll with the current play position as loop end Créer une boucle temporaire de %1-battement avec la position de lecture actuelle comme sortie de boucle - + Loop Beats Boucle de battements - + Loop Roll Beats Boucle déroulante de battements - + Go To Loop In Aller à l'Entrée de Boucle - + Go to Loop In button Aller au bouton Entrée de Boucle - + Go To Loop Out Aller à la Fin de Boucle - + Go to Loop Out button Aller au bouton Fin de Boucle - + 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 Saut de battement - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indique quel marqueur de boucle reste statique lors de l'ajustement de la taille ou est hérité de la position actuelle - + 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 - + Remove Temporary Loop Supprimer la boucle temporaire - + Remove the temporary loop Supprimer la boucle temporaire - + 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 - + Sort focused column Trier la colonne sélectionnée - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Trier la colonne contenant la cellule actuellement sélectionnée, équivaut à cliquer sur l'en-tête - + Go to the currently selected item Aller à l'élément actuellement sélectionné. - + 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 d'attente Auto DJ (Remplacer) - + Replace Auto DJ Queue with selected tracks Remplacer la file d'attente Auto DJ par les pistes sélectionnées - + Select next search history Sélectionner l'historique de recherche suivant - + Selects the next search history entry Sélectionne l'entrée suivante de l'historique de recherche - + Select previous search history Sélectionne l'historique de recherche précédent - + Selects the previous search history entry Sélectionne l'entrée précédente de l'historique de recherche - + Move selected search entry Déplacer l'entrée de recherche sélectionnée - + Moves the selected search history item into given direction and steps Déplace l'élément d'historique de recherche sélectionné dans une direction et étapes - + Clear search Effacer la recherche - + Clears the search query Efface la requête de recherche - - + + Select Next Color Available Sélectionner la prochaine couleur disponible - + Select the next color in the color palette for the first selected track Sélectionner la prochaine couleur dans la palette de couleurs pour la première piste sélectionnée - - + + Select Previous Color Available Sélectionnez la précédente couleur disponible - + Select the previous color in the color palette for the first selected track Sélectionner la précédente couleur dans la palette de couleurs pour la première piste sélectionnée - + + Quick Effects Deck %1 + Platine d'effets rapides %1 + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + Super potentiomètre d'Effet rapide pour la platine %1 stem%2 + + + + Deck %1 Stem %2 Quick Effect Enable Button + Bouton d'activation des effets rapide pour la platine %1 stem %2 + + + 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 Activer/désactiver 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 Ajouter des pistes aléatoirement à Auto DJ - + Add a random track to the Auto DJ queue Ajoute une piste aléatoire à la file d'attente Auto DJ - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Affiche/Masque Microphone et Auxiliaire - + Waveform Zoom Reset To Default Zoom de forme d'onde réinitialisé - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Réinitialiser le niveau de zoom de la forme d'onde à la valeur par défaut sélectionnée dans Préférences -> Formes d'onde - + Select the next color in the color palette for the loaded track. Sélectionner la prochaine couleur dans la palette de couleurs pour la piste chargée. - + Select previous color in the color palette for the loaded track. Sélectionner la précédente couleur dans la palette de couleurs pour la piste chargée. - + Navigate Through Track Colors Naviguer à travers les couleurs des pistes - + Select either next or previous color in the palette for the loaded track. Sélectionner la prochaine ou précédente couleur dans la palette de couleurs pour la piste chargée. - + 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 - - + + + Deck %1 Stems + Platine %1 des stems + + + + 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 Activer/désactiver 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 pochette d'album (platines) - + Show/hide cover art in the main decks Montre/Cache la pochette d'album sur les platines principales - + Vinyl Spinner Show/Hide Afficher/Masquer le vinyle en rotation (spinner) - + Show/hide spinning vinyl widget Affiche/Masque le widget vinyle en rotation - + Vinyl Spinners Show/Hide (All Decks) Afficher/Masquer les vinyles en rotation (spinner) (toutes les platines) - + Show/Hide all spinnies Afficher/Masquer tous les vinyles en rotation (spinner) - + Toggle Waveforms Activer/désactiver les formes 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 @@ -3548,6 +3589,159 @@ trace : ci-dessus + messages de profilage Inconnu + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3650,32 +3844,32 @@ trace : ci-dessus + messages de profilage 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é. @@ -3683,27 +3877,27 @@ trace : ci-dessus + messages de profilage ControllerScriptEngineLegacy - + Controller Mapping File Problem Problème de fichier de mappage de contrôleur - + The mapping for controller "%1" cannot be opened. Le mappage du contrôleur "%1" ne peut pas être ouvert. - + 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. - + File: Fichier : - + Error: Erreur : @@ -3736,7 +3930,7 @@ trace : ci-dessus + messages de profilage - + Lock Verrouiller @@ -3763,10 +3957,10 @@ trace : ci-dessus + messages de profilage Auto DJ Track Source - Auto DJ Source de piste + Auto DJ source de piste - + Enter new name for crate: Donnez un nouveau nom au bac : @@ -3783,22 +3977,22 @@ trace : ci-dessus + messages de profilage 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 @@ -3808,28 +4002,28 @@ trace : ci-dessus + messages de profilage Créez un bac pour votre prochain concert, pour vos pistes électrohouse préférées ou pour vos pistes les plus demandées. - + Confirm Deletion Confirmer la suppression - - + + 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) - + M3U Playlist (*.m3u) Liste de lecture M3U (*.m3u) @@ -3850,17 +4044,17 @@ trace : ci-dessus + messages de profilage Les bacs vous permettent d'organiser votre musique comme vous le souhaitez ! - + Do you really want to delete crate <b>%1</b>? Voulez-vous vraiment supprimer le bac <b>%1</b>? - + 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à. @@ -3955,12 +4149,12 @@ trace : ci-dessus + messages de profilage Anciens contributeurs - + Official Website Site Internet officiel - + Donate Donation @@ -4851,69 +5045,80 @@ Vous avez tenté d'assigner : %1,%2 Stéréo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Échec de l'action - + You can't create more than %1 source connections. Vous ne pouvez pas créer plus de %1 connexion de source. - + Source connection %1 Connexion source %1 - + Settings for %1 Settings for broadcast profile, %1 is the profile name placeholder Réglages de %1 - + At least one source connection is required. Au moins une connexion de source est requise. - + Are you sure you want to disconnect every active source connection? Êtes-vous sûr de vouloir déconnecter toutes les connections de source actives? - - + + Confirmation required Confirmation requise - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' a le même point de montage Icecast que '%2'. Deux de source de connexions vers le même serveur, ayant le même point de montage, ne peuvent pas être activé simultanément. - + Are you sure you want to delete '%1'? Êtes-vous sûr de vouloir effacer '%1' ? - + Renaming '%1' Renommage '%1' - + New name for '%1': Nouveau nom pour '%1' : - + Can't rename '%1' to '%2': name already in use Impossible de renommer '%1' en '%2' : nom déjà utilisé @@ -4926,27 +5131,27 @@ Deux de source de connexions vers le même serveur, ayant le même point de mont Paramètre de diffusion en direct - + Mixxx Icecast Testing Test Icecast avec Mixxx - + Public stream Flux public - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nom du flux - + 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 cause de défauts chez certains clients de streaming, la mise à jour dynamique des métadonnées du format Ogg Vorbis peut causer pour ceux qui écoutent des interférences et des déconnexions. Cochez cette zone pour mettre à jour les métadonnées quand même. @@ -4986,67 +5191,72 @@ Deux de source de connexions vers le même serveur, ayant le même point de mont Réglage de %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Mettre à jour dynamiquement les meta données Ogg Vorbis - + ICQ ICQ - + AIM AIM - + Website Site Internet - + Live mix Mixage en direct - + IRC IRC - + Select a source connection above to edit its settings here Sélectionnez une connexion de source ci-dessus pour modifier ses paramètres ici - + Password storage Stockage mot de passe - + Plain text Texte brut - + Secure storage (OS keychain) Stockage sécurisé (OS Keychain) - + Genre Genre - + Use UTF-8 encoding for metadata. Utiliser l'encodage UTF-8 pour les métadonnées. - + Description Description @@ -5072,42 +5282,42 @@ Deux de source de connexions vers le même serveur, ayant le même point de mont Canaux - + Server connection Connection serveur - + Type Type - + Host Hôte - + Login Identifiant - + Mount Montage - + Port Port - + Password Mot de passe - + Stream info Info stream @@ -5117,17 +5327,17 @@ Deux de source de connexions vers le même serveur, ayant le même point de mont Métadonnées - + Use static artist and title. Utiliser artiste et titre statiques. - + Static title Titre statique - + Static artist Artiste statique @@ -5186,13 +5396,14 @@ Deux de source de connexions vers le même serveur, ayant le même point de mont DlgPrefColors - - + + + By hotcue number Par numéro de repère rapide - + Color Couleur @@ -5237,18 +5448,23 @@ Deux de source de connexions vers le même serveur, ayant le même point de mont + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Lorsque les couleurs des tonalités sont activées, Mixxx affichera une indication de couleur associé à chaque tonalité. - + Enable Key Colors Activer les couleurs des tonalités - + Key palette Palette de tonalité @@ -5256,114 +5472,114 @@ associé à chaque tonalité. DlgPrefController - + Apply device settings? Appliquer les paramètres du périphérique ? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Vos paramètres doivent être appliqués avant de démarrer l'assistant d'apprentissage. Appliquer les paramètres et continuer ? - + None Aucune - + %1 by %2 %1 par %2 - + Mapping has been edited Le mappage à été modifié - + Always overwrite during this session Toujours écraser durant cette session - + Save As Enregistrer sous - + Overwrite Écraser - + Save user mapping Enregistrer le mappage utilisateur - + Enter the name for saving the mapping to the user folder. Entrer le nom pour enregistrer le mappage dans le dossier de l'utilisateur - + Saving mapping failed L'enregistrement du mappage à échoué - + A mapping cannot have a blank name and may not contain special characters. Un mappage ne peut pas avoir un nom vide et ne peut pas contenir des caractères spéciaux. - + A mapping file with that name already exists. Un fichier de mappage utilise déjà ce nom. - + Do you want to save the changes? Voulez-vous enregistrer les modifications ? - + Troubleshooting Dépannage - + <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>Si vous utilisez ce mappage, votre contrôleur risque de ne pas fonctionner correctement. Veuillez sélectionner un autre mappage ou désactiver le contrôleur.</b></font><br><br>Ce mappage a été conçu pour un moteur de contrôleur Mixxx plus récent et ne peut pas être utilisé sur votre installation de Mixxx actuelle.<br>Votre installation de Mixxx a la version Controller Engine %1. Ce mappage nécessite une version de Controller Engine >= %2.<br><br>Pour plus d'informations, visitez la page wiki sur<a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Versions de Controller Engine</a>. - + Mapping already exists. Le mappage existe déjà. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> existe déjà dans le dossier des mappages de l'utilisateur.<br>Écraser ou utiliser un autre nom ? - + Clear Input Mappings Effacer les associations de contrôles d'entrées - + Are you sure you want to clear all input mappings? Voulez-vous vraiment effacer toutes les associations de contrôles d'entrées ? - + Clear Output Mappings Effacer les associations de contrôles de sorties - + Are you sure you want to clear all output mappings? Voulez-vous vraiment effacer toutes les associations de contrôles de sortie ? @@ -5381,100 +5597,105 @@ Appliquer les paramètres et continuer ? Activé - + + Refresh mapping list + + + + Device Info Information matériel - + Physical Interface: Interface physique : - + Vendor name: Nom du vendeur : - + Product name: Nom du produit : - + Vendor ID ID du vendeur - + VID: VID : - + Product ID ID du produit : - + PID: PID : - + Serial number: Numéro de série : - + USB interface number: Numéro d'interface USB : - + HID Usage-Page: Utilisation-Page HID : - + HID Usage: Utilisation HID : - + Description: Description : - + Support: Support : - + Screens preview Aperçu d'écran - + Input Mappings Associations de contrôles d'entrées - - + + Search Rechercher - - + + Add Ajouter - - + + Remove Supprimer @@ -5494,17 +5715,17 @@ Appliquer les paramètres et continuer ? Charger le mappage : - + Mapping Info Informations du mappage - + Author: Auteur : - + Name: Nom : @@ -5514,28 +5735,28 @@ Appliquer les paramètres et continuer ? Assistant d'apprentissage (MIDI uniquement) - + Data protocol: Protocole des données : - + Mapping Files: Fichiers de mappage : - + Mapping Settings Paramètres de mappage - - + + Clear All Tout effacer - + Output Mappings Associations de contrôles de sorties @@ -5550,21 +5771,21 @@ Appliquer les paramètres et continuer ? - 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 utilise des «mappages» pour connecter les messages de votre contrôleur aux commandes de Mixxx. Si vous ne voyez pas de mappage pour votre contrôleur dans le menu "Load Mapping" lorsque vous cliquez sur votre contrôleur dans la barre latérale gauche, vous pourrez peut-être en télécharger un en ligne à partir de %1. Placer le(s) fichier(s) XML (.xml) et Javascript (.js) dans "User Mapping Folder" puis redémarrer Mixxx. Si vous téléchargez un mappage dans un fichier ZIP, extrayez le(s) fichier(s) XML et Javascript du fichier ZIP vers "User Mapping Folder" puis redémarrer 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Guide Mixxx du matériel DJ - + MIDI Mapping File Format Format de fichier de mappage MIDI - + MIDI Scripting with Javascript Scriptage MIDI avec Javascript @@ -5694,6 +5915,16 @@ Appliquer les paramètres et continuer ? Multi-Sampling Multi-échantillonnage + + + Force 3D acceleration + Forcer l'accélération 3D + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + Si cochée, Mixxx supposera que l'accélération 3D est toujours disponible. Cela peut entraîner une baisse des performances si le rendu disponible est basé uniquement sur le CPU. + Start in full-screen mode @@ -5723,137 +5954,137 @@ Appliquer les paramètres et continuer ? DlgPrefDeck - + Mixxx mode mode Mixxx - + Mixxx mode (no blinking) mode Mixxx (sans clignotement) - + Pioneer mode mode Pioneer - + Denon mode mode Denon - + Numark mode mode Numark - + CUP mode mode CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Traditionnel - + mm:ss - Traditional (Coarse) mm:ss - Traditionnel (grossier) - + s%1zz - Seconds s%1zz - Secondes - + sss%1zz - Seconds (Long) sss%1zz - Secondes (long) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosecondes - + Intro start Début Intro - + Main cue Repère principal - + First hotcue Premier repère rapide - + First sound (skip silence) Premier son (passe les silences) - + Beginning of track Début de la piste - + Reject Rejeter - + Allow, but stop deck Autoriser, mais arrêter la platine - + Allow, play from load point Autoriser, jouer depuis le point de chargement - + 4% 4% - + 6% (semitone) 6% (demi ton) - + 8% (Technics SL-1210) 8 % (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6308,62 +6539,62 @@ 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 - + Disabled Désactivé - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx doit être redémarré avant que les nouveaux paramètres régionaux, de mise à l'échelle ou de multi-échantillonnage ne prennent effet. @@ -6591,67 +6822,97 @@ vous permettant ainsi d'ajuster la tonalité afin de produire une mixage ha Voir le manuel pour plus de détails - + 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 - + Item is not a directory or directory is missing L'élément n'est pas un répertoire ou un répertoire est manquant - + 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 - + + Black + + + + + ExtraBold + ExtraGras + + + + Bold + Gras + + + + SemiBold + SemiGras + + + + Medium + + + + + Light + + + + Select Library Font Sélectionner la police pour la bibliothèque @@ -6882,7 +7143,7 @@ vous permettant ainsi d'ajuster la tonalité afin de produire une mixage ha Edit metadata after clicking selected track - Éditer les métadonnées après avoir cliquer sur la piste sélectionnée + Éditer les métadonnées après avoir cliqué sur la piste sélectionnée @@ -7305,33 +7566,33 @@ vous permettant ainsi d'ajuster la tonalité afin de produire une mixage ha DlgPrefRecord - + Choose recordings directory Sélectionnez le répertoire des enregistrements - - + + Recordings directory invalid Répertoire des enregistrements non valide - + Recordings directory must be set to an existing directory. Le répertoire des enregistrements doit être défini sur un répertoire existant. - + Recordings directory must be set to a directory. Le répertoire des enregistrements doit être défini sur un répertoire. - + Recordings directory not writable Répertoire des enregistrements non accessible en écriture - + You do not have write access to %1. Choose a recordings directory you have write access to. Vous n'avez pas d'accès en écriture à %1. Choisissez un répertoire d'enregistrements auquel vous avez accès en écriture. @@ -7349,43 +7610,57 @@ vous permettant ainsi d'ajuster la tonalité afin de produire une mixage ha Parcourir... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + Cela inclura le chemin du fichier pour chaque piste dans le fichier des repères. +Cette option rend le fichier des repères moins portable et peut révéler des informations personnelles +provenant des chemins de fichiers (par exemple le nom d’utilisateur) + + + + Enable File Annotation in CUE file + Activer l’annotation de fichier dans le fichier de repère + + + + Quality Qualité - + Tags Métadonnées - + Title Titre - + Author Auteur - + Album Album - + Output File Format Format de fichier de sortie - + Compression Compression - + Lossy Avec perte @@ -7400,12 +7675,12 @@ vous permettant ainsi d'ajuster la tonalité afin de produire une mixage ha Répertoire : - + Compression Level Niveau de compression - + Lossless Sans perte @@ -7538,172 +7813,177 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Par défaut (délai long) - + Experimental (no delay) Expérimental (sans délai) - + Disabled (short delay) Désactivé (délai court) - + Soundcard Clock Horloge carte son - + Network Clock Horloge réseau - + Direct monitor (recording and broadcasting only) Moniteur direct (seulement enregistrement et diffusion) - + Disabled Désactivé - + Enabled Activé - + Stereo Stéréo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Pour activer la planification en temps réel (actuellement désactivée), consulter le %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. Le %1 répertorie les cartes son et les contrôleurs que vous pouvez envisager d'utiliser avec Mixxx. - + Mixxx DJ Hardware Guide Guide Mixxx du matériel DJ - + + Find details in the Mixxx user manual + Voir détails dans le manuel utilisateur de Mixxx + + + Information Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx doit être redémarré avant que la modification du paramètre multi-thread RubberBand ne prenne effet. - + auto (<= 1024 frames/period) auto (<= 1024 images/période) - + 2048 frames/period 2048 images/période - + 4096 frames/period 4096 images/période - + Are you sure? Est-vous sûr ? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. La distribution des canaux stéréo en canaux mono pour un traitement parallèle entrainera une perte de compatibilité mono et une image stéréo diffuse. Il n'est pas recommandé pendant la diffusion ou l'enregistrement. - + Are you sure you wish to proceed? Êtes-vous sûr de vouloir continuer ? - + No Non - + Yes, I know what I am doing Oui, je sais ce que je fais - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Les entrées microphone sont à contretemps dans l'enregistrement et le signal diffusé, comparées à ce que vous entendez. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Mesurer la latence du trajet aller-retour et entrez-la ci-dessus pour la compensation de latence du microphone afin d'aligner la synchronisation du microphone. - + Refer to the Mixxx User Manual for details. Se référer au manuel utilisateur de Mixxx pour les détails. - + Configured latency has changed. La latence configurée à changé. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Réinitialisez la latence du trajet aller-retour et entrez-la ci-dessus pour la compensation de latence du microphone afin d'aligner la synchronisation du microphone. - + Realtime scheduling is enabled. La planification en temps réel est activé. - + Main output only Sortie principale seulement - + Main and booth outputs Sorties principale et cabine - + %1 ms %1 ms - + Configuration error Erreur de configuration @@ -7770,17 +8050,22 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + Les sorties Platine et Bus sont pour des tables de mixage externes. Elles sont post-fader et incluent effets et curseur de mixage (pour l'Auto DJ). Pour du mixage externe, assurez-vous que tous les curseurs et potentiomètres d'EQ de Mixxx sont mis à leur position par défaut (clic droit ou double-clic). + + + 20 ms 20 ms - + Buffer Underflow Count Compteur de sous-alimentation du tampon - + 0 0 @@ -7805,12 +8090,12 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos Entrée - + System Reported Latency Latence indiquée par le système - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Augmentez le tampon audio si le compteur de sous-alimentation augmente ou si des pops se font entendre pendant la lecture. @@ -7840,7 +8125,7 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos Astuces et Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. Diminuez le tampon audio pour améliorer la réactivité de Mixxx. @@ -7887,7 +8172,7 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos Configuration Vinyle - + Show Signal Quality in Skin Afficher la qualité du signal dans l'interface @@ -7923,46 +8208,51 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos + Pitch estimator + Estimateur de hauteur tonale + + + Deck 1 Platine 1 - + Deck 2 Platine 2 - + Deck 3 Platine 3 - + Deck 4 Platine 4 - + Signal Quality Qualité du signal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Propulsé par xwax - + Hints Astuces - + Select sound devices for Vinyl Control in the Sound Hardware pane. Sélectionnez le matériel sonore pour le contrôle vinyle dans le panneau Matériel sonore. @@ -7970,58 +8260,58 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos DlgPrefWaveform - + Filtered Filtré - + HSV HSV - + RGB RVB - + Top Haut - + Center Centre - + Bottom Bas - + 1/3 of waveform viewer options for "Text height limit" 1/3 du visualiseur de forme d'onde - + Entire waveform viewer Visualiseur de forme d'onde entier - + 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. @@ -8039,22 +8329,17 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos Nombre d'images par seconde - + OpenGL Status Statut OpenGL - + Displays which OpenGL version is supported by the current platform. Affiche quelle version d'OpenGL est prise en charge sur la plateforme actuelle. - - Normalize waveform overview - Normaliser la visualisation de la forme d'onde - - - + Average frame rate Taux moyen de fréquence d'images @@ -8070,7 +8355,7 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos Niveau de zoom par défaut - + Displays the actual frame rate. Affiche la vitesse de rafraîchissement courante. @@ -8150,7 +8435,7 @@ L'intensité sonore visée est approximatif et suppose que les gains d&apos Gain visuel général - + 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. L’aperçu de la forme d'onde montre l'enveloppe de la forme d'onde de la piste entière. @@ -8219,22 +8504,22 @@ Sélectionner depuis les différents types d'affichage de la forme d'o pt - + Caching Mise en cache - + 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 met en cache les formes d'onde de vos pistes sur le disque la première fois que vous chargez une piste. Cela réduit l'utilisation du CPU lorsque vous êtes en cours de lecture en direct, mais requiert plus d'espace disque. - + Enable waveform caching Activer la mise en cache des formes d'onde. - + Generate waveforms when analyzing library Générer les formes d'onde lors de l'analyse de la bibliothèque @@ -8250,7 +8535,7 @@ Sélectionner depuis les différents types d'affichage de la forme d'o - + Type Type @@ -8310,12 +8595,28 @@ Sélectionner depuis les différents types d'affichage de la forme d'o Déplacer le canal vers l’avant-plan lorsque le volume est ajusté - + Overview Waveforms Aperçu des formes d'ondes - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Effacer les formes d'onde en cache. @@ -8807,7 +9108,7 @@ Cette opération est irréversible ! BPM : - + Location: Emplacement : @@ -8822,27 +9123,27 @@ Cette opération est irréversible ! Commentaires - + BPM BPM - + Sets the BPM to 75% of the current value. Réduit le BPM à 75% de la valeur actuelle. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Réduit le BPM à 50% de la valeur actuelle. - + Displays the BPM of the selected track. Affiche le BPM de la piste sélectionnée. @@ -8897,49 +9198,49 @@ Cette opération est irréversible ! Genre - + ReplayGain: ReplayGain : - + Sets the BPM to 200% of the current value. Augmente le BPM à 200% de la valeur actuelle. - + Double BPM Doubler le tempo - + Halve BPM Diviser le tempo par deux - + Clear BPM and Beatgrid Effacer le tempo et la grille rythmique - + Move to the previous item. "Previous" button Aller à l'élément précédent. - + &Previous &Précédent - + Move to the next item. "Next" button Aller à l'élément suivant. - + &Next Suiva&nte @@ -8964,12 +9265,12 @@ Cette opération est irréversible ! Couleur - + Date added: Date d'ajout : - + Open in File Browser Ouvrir le Navigateur de Fichiers @@ -8979,12 +9280,17 @@ Cette opération est irréversible ! Taux d'échantillonnage : - + + Filesize: + + + + Track BPM: Piste BPM : - + 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. @@ -8993,90 +9299,90 @@ Utilisez ce réglage si vos pistes ont un tempo constant (ex: la plupart de la m Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien en cas de variation de tempo. - + Assume constant tempo Supposer un tempo constant - + Sets the BPM to 66% of the current value. Réduit le BPM à 66% de la valeur actuelle. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Augmente le BPM à 150% de la valeur actuelle. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Augmente le BPM à 133% de la valeur actuelle. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Tapez le battement voulu pour définir le rythme du BPM que vous tapez. - + Tap to Beat tapez le rythme - + Hint: Use the Library Analyze view to run BPM detection. Conseil : utilisez la vue d'analyse de la bibliothèque pour lancer la détection de tempo. - + Save changes and close the window. "OK" button Enregistrer les changements et fermer la fenêtre. - + &OK &OK - + Discard changes and close the window. "Cancel" button Annuler les changements et fermer la fenêtre. - + Save changes and keep the window open. "Apply" button Enregistrer les changements et garder la fenêtre ouverte. - + &Apply &Appliquer - + &Cancel &Annuler - + (no color) (pas de couleur) @@ -9233,7 +9539,7 @@ Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien &OK - + (no color) (pas de couleur) @@ -9435,27 +9741,27 @@ Résulte souvent en de meilleures grilles rythmiques, mais ne marchera pas bien EngineBuffer - + Soundtouch (faster) Soundtouch (plus rapide) - + Rubberband (better) Rubberband (mieux) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (qualité quasi-hi-fi) - + Unknown, using Rubberband (better) Inconnu, utilisation de Rubberband (meilleure) - + Unknown, using Soundtouch Inconnu, utilisant Soundtouch @@ -9670,15 +9976,15 @@ 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 @@ -9690,57 +9996,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9748,37 +10054,37 @@ d'OpenGL. Library - + This or a parent directory is already in your library. Ce répertoire ou un répertoire parent est déjà dans votre bibliothèque. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Ce répertoire ou un répertoire listé n'existe pas ou est inaccessible. Abandonner l'opération pour éviter les incohérences de la bibliothèque - - + + This directory can not be read. Ce répertoire ne peut pas être lu. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Une erreur inconnue est survenue. Abandonner l'opération pour éviter les incohérences de la bibliothèque - + Can't add Directory to Library Impossible d'ajouter un répertoire à la bibliothèque - + Could not add <b>%1</b> to your library. %2 @@ -9787,27 +10093,27 @@ Abandonner l'opération pour éviter les incohérences de la bibliothèque< %2 - + Can't remove Directory from Library Impossible de retirer un répertoire à la bibliothèque - + An unknown error occurred. Une erreur inconnue est survenue. - + This directory does not exist or is inaccessible. Ce répertoire n'existe pas ou est inaccessible. - + Relink Directory Reconnecter le répertoire - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9819,22 +10125,22 @@ Abandonner l'opération pour éviter les incohérences de la bibliothèque< 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. @@ -9975,12 +10281,12 @@ Voulez-vous vraiment l'écraser ? Pistes masquées - + Export to Engine DJ Exporter vers Engine DJ - + Tracks Pistes @@ -9988,253 +10294,253 @@ 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 thème - + Allow Mixxx to hide the menu bar? Autoriser Mixxx à masquer la barre de menu ? - + Hide Always show the menu bar? Masquer - + Always show Toujours montrer - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barre de menu Mixxx est masquée et peut être basculée d'une simple pression sur le bouton <b>Alt</b>.<br><br>Clic <b>%1</b> pour accepter.<br><br>Clic <b>%2</b> pour désactiver, par exemple si vous n'utilisez pas Mixxx avec un clavier.<br><br>Vous pouvez modifier ce paramètre à tout moment dans Préférences --> Interface.<br> - + Ask me again Demandez-le moi encore - - + + 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 ? - + Scan took %1 Le scan a pris %1 - + No changes detected. Aucun changement détecté. - - + + %1 tracks in total %1 pistes au total - + %1 new tracks found %1 nouvelles pistes trouvées - + %1 moved tracks detected %1 pistes déplacées détectées - + %1 tracks are missing (%2 total) %1 titres sont manquants (%2 au total) - + %1 tracks have been rediscovered %1 pistes ont été redécouvertes - + Library scan finished Analyse de la bibliothèque terminée - + Error in skin file Erreur dans le fichier du thème - + The selected skin cannot be loaded. Le thème 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 en cours de lecture. Quitter Mixxx ? - + A sampler is currently playing. Exit Mixxx? Un échantillonneur est 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 ? @@ -10250,13 +10556,13 @@ Voulez-vous sélectionner un périphérique d'entrée ? PlaylistFeature - + Lock Verrouiller - - + + Playlists Listes de lecture @@ -10266,58 +10572,63 @@ Voulez-vous sélectionner un périphérique d'entrée ? Mélanger la liste de lecture - + + Adopt current order + + + + Unlock all playlists Déverrouiller toutes les listes de lecture - + Delete all unlocked playlists Supprimer toutes les listes de lecture déverrouillées - + Unlock Déverrouiller - - + + Confirm Deletion Confirmer la suppression - + Do you really want to delete all unlocked playlists? Voulez-vous vraiment supprimer toutes les listes de lecture déverrouillées ? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! Suppression de %1 listes de lecture déverrouillées.<br>Cette opération est irréversible ! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Les listes de lectures sont des listes ordonnées de pistes qui vous permettent de planifier vos sessions de mixage. - + 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. Il peut être nécessaire de sauter quelques pistes de la liste de lecture que vous avez préparée ou d'ajouter des pistes différentes afin d'entretenir la ferveur de votre public. - + 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 @@ -10416,59 +10727,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 @@ -10582,69 +10893,82 @@ Désirez-vous rechercher maintenant les pochettes dans votre bibliothèque?14-bit (MSB) - + Main + Audio path indetifier Principal - + Booth + Audio path indetifier Cabine - + Headphones + Audio path indetifier Casque - + Left Bus + Audio path indetifier Bus gauche - + Center Bus + Audio path indetifier Bus central - + Right Bus + Audio path indetifier Bus droit - + Invalid Bus + Audio path indetifier Bus non valable - + Deck + Audio path indetifier Platine - + Record/Broadcast + Audio path indetifier Enregistrer/Diffuser - + Vinyl Control + Audio path indetifier Contrôle Vinyle - + Microphone + Audio path indetifier Microphone - + Auxiliary + Audio path indetifier Auxilliaire - + Unknown path type %1 + Audio path Chemin inconnu type %1 @@ -10986,47 +11310,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Largeur - + Metronome Métronome - + + The Mixxx Team L'équipe Mixxx - + Adds a metronome click sound to the stream Ajoute un clic sonore de métronome au flux - + BPM BPM - + Set the beats per minute value of the click sound Régler la valeur du battement par minute du clic sonore - + Sync Synchronisation - + Synchronizes the BPM with the track if it can be retrieved Synchronise le BPM avec la piste, si celui-ci peut être récupérer - + + Gain Gain - + Set the gain of metronome click sound Régler le gain du son du clic du métronome @@ -11326,7 +11652,7 @@ Des valeurs élevées entraînent une moindre atténuation des hautes fréquence Controls the frequency range across which the notches sweep. - Contrôle la plage de fréquence balayée par le coupe-bande. + Contrôle la plage de fréquences balayée par le coupe-bande. @@ -11830,14 +12156,14 @@ Complètement à droite : fin de la période d'effet L'enregistrement OGG n'est pas pris en charge. La bibliothèque OGG/Vorbis n'a pas pu être initialisée. - - + + encoder failure défaillance de l'encodeur - - + + Failed to apply the selected settings. Échec de l'application des paramètres sélectionnés. @@ -11977,7 +12303,7 @@ Astuce : compense les voix de "canard" ou "grondante"La quantité d'amplification appliquée au signal audio. À des niveaux plus élevés, l'audio sera plus déformé. - + Passthrough Passerelle @@ -12046,15 +12372,90 @@ et le signal de sortie traité aussi proche que possible de l'intensité so Allumé + + Auto Gain Control + Contrôle automatique du gain + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + Le contrôle automatique du gain ajuste le gain d'un signal audio pour maintenir un niveau de sortie constant. + + + Threshold (dBFS) Seuil (dBFS) + Threshold Seuil + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + Le potentiomètre de seuil ajuste le niveau au-dessus duquel l'effet commence à atténuer le signal d'entrée + + + + Target (dBFS) + Cible (dBFS) + + + + Target + Cible + + + + The Target knob adjusts the desired target level of the output signal + Le potentiomètre cible ajuste le niveau cible désiré pour le signal de sortie + + + + Gain (dB) + Gain (dB) + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + Le potentiomètre de gain ajuste la quantité maximum de gain que l'effet va appliquer + + + + Knee (dB) + Pente (dB) + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + Le Potentiomètre de pente définit la plage autour du seuil où les changements de gain sont appliqués graduellement, +assurant des transitions douces et évitant des sauts de niveau abrupts. + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + Le Potentiomètre d'attaque définit le temps qui détermine à quelle rapidité le gain auto +va s'activer une fois que le signal a dépassé le seuil + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + Le Potentiomètre de relâchement définit le temps qui détermine à quelle rapidité le gain auto récupérera de l'ajustement +du gain une fois que le signal tombe sous le seuil. Selon le signal d'entrée, un temps de relâchement court +peut introduire un effet de « pompage » et/ou une distorsion. + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -12085,6 +12486,7 @@ Avec un rapport de 1:1, aucune compression n'a lieu, car l'entrée est Pente (dBFS) + Knee Pente @@ -12095,11 +12497,13 @@ Avec un rapport de 1:1, aucune compression n'a lieu, car l'entrée est Le Potentiomètre de pente est utilisé pour obtenir une courbe de compression plus ronde + Attack (ms) Attaque (ms) + Attack Attaque @@ -12112,11 +12516,13 @@ will set in once the signal exceeds the threshold s'appliquera une fois que le signal dépasse le seuil. + Release (ms) Relâchement (ms) + Release Relâchement @@ -12126,7 +12532,7 @@ s'appliquera une fois que le signal dépasse le seuil. The Release knob sets the time that determines how fast the compressor will recover from the gain reduction once the signal falls under the threshold. Depending on the input signal, short release times may introduce a 'pumping' effect and/or distortion. - Le bouton relachement définit le temps qui détermine la vitesse à laquelle le compresseur + Le Potentiomètre de relâchement définit le temps qui détermine la vitesse à laquelle le compresseur récupérera de la réduction de gain une fois que le signal tombe sous le seuil. En fonction du signal d'entrée, des temps de relâchement courts peuvent introduire un effet de « pompage » et/ou une distorsion. @@ -12148,12 +12554,12 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un divers - + built-in intégré - + missing manquant @@ -12188,42 +12594,42 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un Stem #%1 - + Empty Vide - + Simple Simple - + Filtered Filtré - + HSV HSV - + VSyncTest VSyncTest - + RGB RVB - + Stacked Empilé - + Unknown Inconnu @@ -12484,193 +12890,193 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un ShoutConnection - - + + Mixxx encountered a problem Mixxx a rencontré un problème - + Could not allocate shout_t Ne peux allouer shout_t - + Could not allocate shout_metadata_t Ne peux allouer shout_metadata_t - + Error setting non-blocking mode: Erreur de configuration en mode non-bloquant : - + Error setting tls mode: Erreur de configuration en mode tls : - + Error setting hostname! Erreur lors de la définition du nom d'hôte ! - + Error setting port! Erreur lors de la définition du port ! - + Error setting password! Erreur lors de la définition du mot de passe ! - + Error setting mount! Erreur lors de la définition du montage ! - + Error setting username! Erreur lors de la définition du nom d'utilisateur ! - + Error setting stream name! Erreur lors de la définition du nom du flux ! - + Error setting stream description! Erreur lors de la définition de la description du flux ! - + Error setting stream genre! Erreur lors de la définition du genre du flux ! - + Error setting stream url! Erreur lors de la définition de l'URL du flux ! - + Error setting stream IRC! Erreur lors de la définition de l'IRC du flux ! - + Error setting stream AIM! Erreur lors de la définition de l'AIM du flux ! - + Error setting stream ICQ! Erreur lors de la définition de l'ICQ du flux ! - + Error setting stream public! Erreur lors de la publication du flux ! - + Unknown stream encoding format! Format d'encodage de publication en streaming inconnu ! - + Use a libshout version with %1 enabled Utiliser une version de libshout avec %1 activé - + Error setting stream encoding format! Erreur lors de la définition du format d'encodage de la publication en streaming ! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. La diffusion à 96 kHz avec Ogg Vorbis n'est actuellement pas prise en charge. Veuillez essayer une autre fréquence d'échantillonnage ou passer à un autre encodage. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Voir https://github.com/mixxxdj/mixxx/issues/5701 pour plus d'informations. - + Unsupported sample rate Taux d'échantillonnage non pris en charge - + Error setting bitrate Erreur lors de la définition du débit - + Error: unknown server protocol! Erreur : protocole du serveur inconnu ! - + Error: Shoutcast only supports MP3 and AAC encoders Erreur : Shoutcast prend en charge uniquement les encodeurs MP3 et AAC - + Error setting protocol! Erreur lors de la définition du protocole ! - + Network cache overflow Débordement de cache réseau - + Connection error Erreur de connexion - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Une des connexions de diffusion en direct a généré cette erreur :<br><b>Erreur avec la connexion '%1' :</b><br> - + Connection message Message de connexion - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Message de la connexion de diffusion en direct '%1' :</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Connexion au serveur de streaming perdue et %1 essais de reconnexion ont échoué. - + Lost connection to streaming server. Connexion au serveur de streaming perdue. - + Please check your connection to the Internet. Veuillez vérifier votre connexion Internet. - + Can't connect to streaming server Connexion impossible au serveur de streaming - + Please check your connection to the Internet and verify that your username and password are correct. Veuillez vérifier votre connection Internet et que votre identifiant et mot de passe soit correct. @@ -12678,7 +13084,7 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un SoftwareWaveformWidget - + Filtered Filtré @@ -12686,23 +13092,23 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un SoundManager - - + + a device un périphérique - + An unknown error occurred Une erreur inconnue est survenue - + Two outputs cannot share channels on "%1" Deux sorties ne peuvent pas partager les canaux sur "%1" - + Error opening "%1" Erreur à l'ouverture de "%1" @@ -12887,7 +13293,7 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un - + Spinning Vinyl Vinyle en rotation @@ -13069,7 +13475,7 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un - + Cover Art Pochette d'album @@ -13259,243 +13665,243 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un Force le gain EQ des basses à zéro tant qu'il est actif. - + Displays the tempo of the loaded track in BPM (beats per minute). Affiche le tempo de la piste chargée en BPM (battements par minute) - + Tempo Tempo - + Key The musical key of a track Tonalité - + BPM Tap Tap Tempo - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Lorsque tapé de façon répétitive, cela règle le tempo afin qu'il corresponde au tempo tapé. - + Adjust BPM Down Réduire le BPM - + When tapped, adjusts the average BPM down by a small amount. Lorsque tapé, cela réduit légèrement le BPM moyen. - + Adjust BPM Up Augmenter le BPM - + When tapped, adjusts the average BPM up by a small amount. Lorsque tapé, cela augmente légèrement le BPM moyen. - + Adjust Beats Earlier Ajuster les battements plus tôt - + When tapped, moves the beatgrid left by a small amount. Lorsque tapé, cela déplace légèrement la grille rythmique vers la gauche. - + Adjust Beats Later Ajuster les battements plus tard - + When tapped, moves the beatgrid right by a small amount. Lorsque tapé, cela déplace légèrement la grille rythmique vers la droite. - + Tempo and BPM Tap Tap Tempo et BPM - + Show/hide the spinning vinyl section. Afficher/Masquer la section du vinyle en rotation - + Keylock Verrouillage - + Toggling keylock during playback may result in a momentary audio glitch. Le fait d'activer/désactiver le verrouillage de tonalité pendant la lecture peut provoquer une interférence audio momentané. - + Toggle visibility of Loop Controls Activer/désactiver la visibilité les contrôles de boucle - + Toggle visibility of Beatjump Controls Activer/désactiver la visibilité les contrôles de saut de battement - + Toggle visibility of Rate Control Activer/désactiver la visibilité du contrôle du taux d'échantillonnage - + Toggle visibility of Key Controls Activer/désactiver la visibilité du contrôle de tonalité - + (while previewing) (pendant la pré-écoute) - + Places a cue point at the current position on the waveform. Place un point de repère à la position actuelle sur la forme d'onde. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Arrête la piste au point de repère, OU va au point de repère et lance la lecture en relâchant le bouton (mode CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Définit le point de repère (Mode Pioneer/Mixxx/Numark), définit le point de repère et lance la lecture lorsque le bouton est relâché (mode CUP) OU pré-écoute depuis ce point (mode Denon) - + Is latching the playing state. Verrouille l'état de lecture. - + Seeks the track to the cue point and stops. Cale la piste sur le point de repère puis s'arrête. - + Play Lire - + Plays track from the cue point. Lit la piste depuis le point de repère. - + 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!) (Le thème doit être mis à jour pour utiliser la synchronisation verrouiller !) - + Enable Sync Lock Activer la synchronisation verrouiller - + Tap to sync the tempo to other playing tracks or the sync leader. Taper pour synchroniser le tempo aux autres pistes en cours de lecture ou au leader de synchronisation. - + Enable Sync Leader Activer le leader de synchronisation - + When enabled, this device will serve as the sync leader for all other decks. Lorsque activé, ce périphérique servira de leader de synchronisation pour toutes les autres platines. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Ceci est pertinent lorsqu'une piste au tempo dynamique est chargée sur une platine leader de synchronisation. Dans ce cas, d'autres appareils synchronisés adopteront le changement de tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Modifie la vitesse de lecture de la piste (affecte le tempo et la hauteur tonale). Si le verrouillage de tonalité est activé, seul le tempo est affecté. - + Tempo Range Display Affichage de la plage de tempo - + Displays the current range of the tempo slider. Affiche la plage actuelle du curseur de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Annule l'éjection lorsqu'aucune piste n'est chargée, c'est-à-dire recharge la piste qui a été éjectée en dernier (de n'importe quelle platine). - + Delete selected hotcue. Supprime le repère rapide sélectionné. - + Track Comment Commentaire de la piste - + Displays the comment tag of the loaded track. Affiche le tag commentaire de la piste chargée. - + Opens separate artwork viewer. Ouvre une visionneuse de pochette d'album distincte. - + Effect Chain Preset Settings Paramètres prédéfinis de la chaine d’effets - + Show the effect chain settings menu for this unit. Affiche le menu des paramètres de chaine d’effets pour cette unité. - + Select and configure a hardware device for this input Sélectionner et configurer un périphérique matériel pour cette entrée - + Recording Duration Durée d'enregistrement @@ -13594,7 +14000,7 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un If activated, the main mix signal plays in the right channel, while the cueing signal plays in the left channel. - Si activé, le signal principal mélangé est jouée dans le canal droit tandis que la pré-écoute est jouée dans le canal gauche. + Si activé, le signal principal mélangé est joué dans le canal droit tandis que la pré-écoute est jouée dans le canal gauche. @@ -13640,7 +14046,7 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un Adjust the amount the music volume is reduced with the Strength knob. - Régler le niveau de réduction du volume de la musique avec le potentiomètre puissance. + Régler le niveau de réduction du volume de la musique avec le potentiomètre de puissance. @@ -13718,950 +14124,985 @@ du signal d'entrée, des temps de relâchement courts peuvent introduire un Maintient la vitesse de lecture plus basse (petite quantité) tant qu'il est actif. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Lorsque tapé de façon répétitive, cela règle le tempo afin qu'il corresponde au BPM tapé. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Taper le tempo - + Rate Tap and BPM Tap Taper taux et taper BPM - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Ajuster la grille rythmique exactement d'un demi-battement. Utilisable uniquement sur les pistes à tempo constant. - + Revert last BPM/Beatgrid Change Annuler le dernier changement de BPM / grille rythmique - + Revert last BPM/Beatgrid Change of the loaded track. Annuler le dernier changement de BPM / grille rythmique de la piste chargée. - - + + Toggle the BPM/beatgrid lock Activer/désactiver le verrouillage BPM / grille rythmique - + Tempo and Rate Tap Taper tempo et taux - + Tempo, Rate Tap and BPM Tap Tempo, taper taux et taper BPM - + Shift cues earlier Décaler les repères plus tôt - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Décale les repères importés de Serato et Rekordbox lorsqu'ils sont légèrement désynchronisés. - + Left click: shift 10 milliseconds earlier Clic gauche : décale 10 ms plus tôt - + Right click: shift 1 millisecond earlier Clic-droit : décale 10 ms plus tard - + Shift cues later Décaler les repères plus tard - + Left click: shift 10 milliseconds later Clic-gauche : décale 10 ms plus tard - + Right click: shift 1 millisecond later Clic-droit : décale 1 ms plus tard - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Faites glisser un bouton de repère rapide ici pour continuer à jouer après avoir relâché le repère rapide. - + Hint: Change the default cue mode in Preferences -> Decks. Astuce : Changer le mode de repère par défaut dans Préférences -> Platines. - + Mutes the selected channel's audio in the main output. Met en sourdine les canaux audio sélectionnés dans la sortie principale. - + Main mix enable Activer mix principal - + Hold or short click for latching to mix this input into the main output. Maintenir ou cliquer brièvement pour enclencher le mélange de cette entrée dans la sortie principale. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + Recharge la dernière piste remplacée. Si aucune piste n'est chargée, recharge l'avant-dernière piste éjectée. + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Si le repère rapide est un repère de boucle, active/désactive la boucle et passe à si la boucle est derrière la position de lecture. - + If the play position is inside an active loop, stores the loop as loop cue. Si la position de lecture se trouve à l'intérieur d'une boucle active, stocke la boucle comme repère de boucle. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Faites glisser ce bouton sur un autre bouton de repère rapide pour l'y déplacer (modifier son index). Si l'autre repère rapide est défini, les deux sont échangés. - + Expand/Collapse Samplers Développer/Réduire les échantillonneurs - + Toggle expanded samplers view. Activer/désactiver la vue étendue des échantillonneurs. - + Displays the duration of the running recording. Affiche la durée de l'enregistrement en cours. - + Auto DJ is active Auto DJ est actif - + Red for when needle skip has been detected. Rouge lorsqu’un saut d’aiguille a été détecté. - + Hot Cue - Track will seek to nearest previous hotcue point. Repère rapide - La piste sera calée au repère rapide précédent le plus proche. - + Sets the track Loop-In Marker to the current play position. Positionne la marque de début de boucle de la piste à la position actuelle de lecture. - + Press and hold to move Loop-In Marker. Pressez et maintenez pour déplacer la marque de début de boucle. - + Jump to Loop-In Marker. Sauter à la marque de début de boucle. - + Sets the track Loop-Out Marker to the current play position. Positionne la marque de fin de boucle de la piste à la position actuelle de lecture. - + Press and hold to move Loop-Out Marker. Pressez et maintenez pour déplacer la marque de fin de boucle. - + Jump to Loop-Out Marker. Sauter à la marque de fin de boucle. - + If the track has no beats the unit is seconds. Si la piste n'a pas de battements, l'unité est la seconde. - + Beatloop Size Taille de la boucle de battement - + Select the size of the loop in beats to set with the Beatloop button. Sélectionner la taille de la boucle en battements à régler avec le bouton Boucle de battement. - + Changing this resizes the loop if the loop already matches this size. Changer ceci redimensionne la boucle si la boucle correspond déjà à cette taille. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Réduire de moitié la taille d'une boucle de battement existante ou réduire de moitié la taille de la prochaine boucle de battement réglé avec le bouton Boucle de battement. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Double la taille d'une boucle de battement existante ou double la taille de la prochaine boucle de battement réglé avec le bouton Boucle de battement. - + Start a loop over the set number of beats. Démarrer une boucle sur le nombre de battement réglés. - + Temporarily enable a rolling loop over the set number of beats. Active temporairement une boucle déroulante sur le nombre de battements réglés. - + Beatloop Anchor Ancrage de boucle de battement - + Define whether the loop is created and adjusted from its staring point or ending point. Défini si la boucle est créée et ajustée à partir de son point de départ ou de son point d'arrivée. - + Beatjump/Loop Move Size Taille du saut de battement / déplacement de Boucle - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Sélectionner le nombre de battements pour sauter ou déplacer la boucle avec les boutons saut de battement vers l'avant / vers l'arrière. - + Beatjump Forward Saut de battement vers l'avant - + Jump forward by the set number of beats. Saute vers l'avant du nombre de battements réglé. - + Move the loop forward by the set number of beats. Déplace la boucle vers l'avant du nombre de battements réglé. - + Jump forward by 1 beat. Saute vers l'avant de 1 battements - + Move the loop forward by 1 beat. Déplace la boucle vers l'avant de 1 battements - + Beatjump Backward Saut de battement vers l'arrière - + Jump backward by the set number of beats. Saute vers l'arrière du nombre de battements réglé. - + Move the loop backward by the set number of beats. Déplace la boucle vers l'arrière du nombre de battements réglé. - + Jump backward by 1 beat. Saute vers l'arrière de 1 battements - + Move the loop backward by 1 beat. Déplace la boucle vers l'arrière de 1 battements - + Reloop Reboucler - + If the loop is ahead of the current position, looping will start when the loop is reached. Si la boucle est devant la position actuelle, le bouclage commencera lorsque la boucle est atteinte. - + Works only if Loop-In and Loop-Out Marker are set. Fonctionne uniquement si les marqueurs Entrée-Boucle et Sortie-Boucle sont définis. - + Enable loop, jump to Loop-In Marker, and stop playback. Active la boucle, saute au marqueur Entrée-Boucle, et arrêter la lecture. - + Displays the elapsed and/or remaining time of the track loaded. Affiche le temps écoulé et/ou restant de la piste chargée. - + Click to toggle between time elapsed/remaining time/both. Cliquer pour basculer entre temps écoulé/temps restant/les deux. - + Hint: Change the time format in Preferences -> Decks. Astuce : Changez le format des temps dans Préférences -> Platines. - + Show/hide intro & outro markers and associated buttons. Affiche/masque les marqueurs intro et outro et les boutons associés. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marqueur début Intro - - - - + + + + If marker is set, jumps to the marker. Si un marqueur est défini, saute au marqueur. - - - - + + + + If marker is not set, sets the marker to the current play position. Si un marqueur n'est pas défini, définie le marqueur à l'emplacement actuel de lecture. - - - - + + + + If marker is set, clears the marker. Si un marqueur est défini, efface le marqueur. - + Intro End Marker Marqueur fin Intro - + Outro Start Marker Marqueur début outro - + Outro End Marker Marqueur fin outro - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajuste le mixage du signal original (entrée) avec le signal traité (sortie) de l'unité d'effet - + D/W mode: Crossfade between dry and wet Mode D/W : Fondu enchaîné entre original (dry) et traité (wet) - + D+W mode: Add wet to dry Mode D + W : Ajoute traité à original - + Mix Mode Mode du mix - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajuste comment le signal original (entrée) est mélangé avec le signal traité (sortie) de l'unité d'effet - + 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. - Mode Original/Traité (lignes croisées) : potentiomètre de mixage fondu-enchaîné entre origina et traité + Mode Original/Traité (lignes croisées) : le potentiomètre de mixage fait un fondu-enchaîné entre original et traité. Utiliser ceci pour changer le son de la piste avec EQ et les effets de filtre. - + 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. - Mode Original/Traité (ligne original plate) : potentiomètre de mixage d'ajout traité à original + Mode Original/Traité (ligne original plate) : le potentiomètre de mixage ajoute le traité à l'original Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et les effets de filtre. - + Route the main mix through this effect unit. Achemine le mix principal à travers cette unité d'effet. - + Route the left crossfader bus through this effect unit. Achemine le bus du curseur de mixage gauche à travers cette unité d'effet. - + Route the right crossfader bus through this effect unit. Achemine le bus du curseur de mixage droit à travers cette unité d'effet. - + Right side active: parameter moves with right half of Meta Knob turn Côté droit actif : le paramètre se déplace avec une moitié de rotation à droite du Méta potentiomètre - + Stem Label Étiquette de stem - + Name of the stem stored in the stem file Nom du stem stockée dans le fichier de stem - + Text is displayed in the stem color stored in the stem file Le texte est affiché dans la couleur de stem stockée dans le fichier de stem - + this stem color is also used for the waveform of this stem cette couleur de stem est également utilisée pour la forme d'onde de ce stem - + Stem Mute Mise en sourdine stem - + Toggle the stem mute/unmuted Activer/désactiver le son de stem - + Stem Volume Knob Potentiomètre de volume de stem - + Adjusts the volume of the stem Ajuste le volume du stem - + Skin Settings Menu Menu réglage thème - + Show/hide skin settings menu Affiche/Masque le menu réglage thème - + Save Sampler Bank Sauvegarder la banque d'échantillon - + Save the collection of samples loaded in the samplers. Enregistre la collection d'échantillons chargés dans les échantillonneurs. - + Load Sampler Bank Charger la banque d'échantillon - + Load a previously saved collection of samples into the samplers. Charge une collection d'échantillons sauvegardé précédement dans les échantillonneurs. - + Show Effect Parameters Afficher les paramètres d'effet - + Enable Effect Active l'effet - + Meta Knob Link Lien du Méta potentiomètre - + Set how this parameter is linked to the effect's Meta Knob. Règle comment ce paramètre est lié au effets du Méta potentiomètre. - + Meta Knob Link Inversion Inversion du lien du Méta potentiomètre - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Inverse la direction dans laquelle ce paramètre change lorsque le Méta potentiomètre est tourné. - + Super Knob Super potentiomètre - + Next Chain Prochaine chaîne - + Previous Chain Chaîne précédente - + Next/Previous Chain Chaîne suivante/précédente - + Clear Effacer - + Clear the current effect. Effacer l'effet actuel. - + Toggle Activer/désactiver - + Toggle the current effect. Activer/désactiver l'effet actuel. - + Next Suivant - + Clear Unit Effacer l'unité - + Clear effect unit. Effacer l'unité d'effets. - + Show/hide parameters for effects in this unit. Affiche/Masque les paramètres d'effets de cette unité. - + Toggle Unit Activer/désactiver l'unité - + Enable or disable this whole effect unit. Active ou désactive toute cette unité d'effet. - + Controls the Meta Knob of all effects in this unit together. Contrôle le Méta potentiomètre de tous les effets de cette unité ensemble. - + Load next effect chain preset into this effect unit. Charger le prochaine préréglage de chaîne d'effet dans cette unité d'effet. - + Load previous effect chain preset into this effect unit. Charger le précédent préréglage de chaîne d'effet dans cette unité d'effet. - + Load next or previous effect chain preset into this effect unit. Charger le prochain ou précédent préréglage de chaîne d'effet dans cette unité d'effet. - - - - - - - - - + + + + + + + + + Assign Effect Unit Assigner une unité d'effet - + Assign this effect unit to the channel output. Assigne cette unité d'effet au canal de sortie. - + Route the headphone channel through this effect unit. Achemine le canal du casque à travers cette unité d'effet. - + Route this deck through the indicated effect unit. Achemine cette platine à travers l'unité d'effet indiquée. - + Route this sampler through the indicated effect unit. Achemine cet échantillonneur à travers l'unité d'effet indiquée. - + Route this microphone through the indicated effect unit. Achemine ce microphone à travers l'unité d'effet indiquée. - + Route this auxiliary input through the indicated effect unit. Achemine cette entrée auxiliaire à travers l'unité d'effet indiquée. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. L'unité d'effet doit également être affectée à une platine ou à une autre source sonore pour entendre l'effet. - + Switch to the next effect. Passe à 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 the next or previous effect. Passe à l'effet suivant ou précédent. - + Meta Knob Méta potentiomètre - + Controls linked parameters of this effect Contrôle les paramètres liés de cet effet. - + Effect Focus Button Bouton de focus de l'effet - + Focuses this effect. Focalise cet effet. - + Unfocuses this effect. Dé-focalise cet effet. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consultez la page web du wiki de Mixxx concernant votre contrôleur pour de plus amples informations. - + Effect Parameter Paramètre d'effet - + Adjusts a parameter of the effect. Ajuste un paramètre de l'effet. - + Inactive: parameter not linked Inactif : paramètre non lié - + Active: parameter moves with Meta Knob Actif : le paramètre se déplace avec le Méta potentiomètre - + Left side active: parameter moves with left half of Meta Knob turn Côté gauche actif : le paramètre se déplace avec une moitié de rotation à gauche du Méta potentiomètre - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Côté gauche et droit actif : le paramètre se déplace avec une moitié de rotation du Méta potentiomètre et reviens en arrière avec l'autre moitié de rotation - - + + Equalizer Parameter Kill Suppression du paramètre de l'égaliseur - - + + Holds the gain of the EQ to zero while active. Maintien à zéro le gain EQ lorsque activé. - + Quick Effect Super Knob Super potentiomètre d'effet rapide - + Quick Effect Super Knob (control linked effect parameters). Super potentiomètre d'effet rapide (contrôle les paramètres d'effet liés) - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Astuce : Changez le mode d'effet rapide par défaut dans Préférences -> Égaliseurs. - + Equalizer Parameter Paramètre d'égaliseur - + Adjusts the gain of the EQ filter. Ajuste le gain du filtre EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Astuce : Changez le mode EQ par défaut dans Préférences -> Égaliseurs. - - + + Adjust Beatgrid Ajuster la grille rythmique - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajuste la grille rythmique afin que le battement le plus proche soit aligné avec la position actuelle de la lecture. - - + + Adjust beatgrid to match another playing deck. Ajuste la grille rythmique afin de l'aligner à une autre platine en cours de lecture. - + If quantize is enabled, snaps to the nearest beat. Lorsque la quantification est activée, se place sur le battement le plus proche. - + Quantize Quantification - + Toggles quantization. Active/désactive la quantification. - + Loops and cues snap to the nearest beat when quantization is enabled. Les boucles et les points de repère se placent sur le battement le plus proche lorsque la quantification est activée. - + Reverse Inverser - + Reverses track playback during regular playback. Inverse le sens de lecture de la piste pendant la lecture normale. - + Puts a track into reverse while being held (Censor). Inverse la lecture d'une piste lorsque maintenu (Censeur). - + Playback continues where the track would have been if it had not been temporarily reversed. La lecture reprends là où la piste aurait été si elle n'avait pas été temporairement inversée. - - - + + + Play/Pause Lecture/Pause - + Jumps to the beginning of the track. Saute au début de la piste. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Synchronise le tempo (BPM) et la phase sur celui de l'autre piste, si le BPM est détecté sur les deux. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Synchronise le tempo (BPM) sur celui de l'autre piste, si le BPM est détecté sur les deux. - + Sync and Reset Key Synchroniser et réinitialiser la tonalité - + Increases the pitch by one semitone. Augmente la hauteur tonale d'un demi ton. - + Decreases the pitch by one semitone. Diminue la hauteur tonale d'un demi ton. - + Enable Vinyl Control Activer le contrôle des vinyles - + When disabled, the track is controlled by Mixxx playback controls. Si désactivé, la piste est contrôlée par les contrôles de lecture de Mixxx. - + When enabled, the track responds to external vinyl control. Si activé, la piste répond au contrôle de vinyle externe - + Enable Passthrough Activer le contrôle intermédiaire - + Indicates that the audio buffer is too small to do all audio processing. Indique que le tampon audio est trop petit pour effectuer tous les traitements audio. - + Displays cover artwork of the loaded track. Affiche la pochette d'album de la piste chargée. - + Displays options for editing cover artwork. Affiche les options d'édition de la pochette d'album. - + Star Rating Notation par étoiles - + Assign ratings to individual tracks by clicking the stars. Donnez une note aux pistes en cliquant sur les étoiles. @@ -14796,33 +15237,33 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Puissance d'atténuation du ParlerParDessus (talkover) du microphone - + Prevents the pitch from changing when the rate changes. Empêche la hauteur tonale de varier lorsque la vitesse change. - + Changes the number of hotcue buttons displayed in the deck Change le nombre de boutons de repère rapide affichés dans la platine - + Starts playing from the beginning of the track. Démarre la lecture à partir du début de la piste. - + Jumps to the beginning of the track and stops. Saute au début de la piste et s'arrête. - - + + Plays or pauses the track. Lit ou suspend la lecture de la piste. - + (while playing) (pendant la lecture) @@ -14842,215 +15283,215 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Vu-mètre du volume du canal principal droit - + (while stopped) (pendant qu'il est stoppé) - + Cue Repère - + Headphone Casque - + Mute Sourdine - + Old Synchronize Ancienne synchronisation - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Synchronise sur la première platine (dans l'ordre numérique) qui est en cours de lecture d'une piste et qui a un BPM - + If no deck is playing, syncs to the first deck that has a BPM. Si aucune platine n'est en cours de lecture, synchronise sur la première platine qui a un BPM - + 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. - + Hold for at least a second to enable sync lock for this deck. Appuyer au moins une seconde pour activer le verrou de synchronisation pour cette platine. - + 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. Les platines verrouillées en synchronisation joueront toutes au même tempo, et les platines ayant également une quantification activée garderont leur battements toujours alignés. - + Resets the key to the original track key. Réinitialise la tonalité à la valeur d'origine de la piste. - + Speed Control Contrôle de la vitesse - - - + + + Changes the track pitch independent of the tempo. Change la hauteur tonale de la piste indépendamment du tempo. - + Increases the pitch by 10 cents. Augmente la hauteur tonale de 10 centièmes. - + Decreases the pitch by 10 cents. Diminue la hauteur tonale de 10 centièmes. - + Pitch Adjust Ajustement de la hauteur tonale - + Adjust the pitch in addition to the speed slider pitch. Ajuste la hauteur tonale en plus du curseur de vitesse. - + Opens a menu to clear hotcues or edit their labels and colors. Ouvre un menu pour effacer les repères rapide ou modifier leurs étiquettes et couleurs. - + Drag this button onto a Play button while previewing to continue playback after release. Faites glisser ce bouton sur un bouton de lecture pendant la prévisualisation pour continuer la lecture après relâchement du bouton. - + Dragging with Shift key pressed will not start previewing the hotcue. Faire glisser avec la touche Maj enfoncée ne lancera pas la prévisualisation du repère rapide - + Record Mix Enregistrer le mix - + Toggle mix recording. Active/désactive l'enregistrement du mix. - + Enable Live Broadcasting Activer la diffusion en direct - + Stream your mix over the Internet. Diffuse votre mix en streaming sur internet. - + Provides visual feedback for Live Broadcasting status: Fournit un signal visuel concernant l'état de la transmission en direct : - + disabled, connecting, connected, failure. désactivé, connexion en cours, connecté, échec. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Si activé, la platine joue directement l'audio arrivant sur l'entrée vinyl. - + Playback will resume where the track would have been if it had not entered the loop. La lecture reprendra ou la piste était si elle n'est pas rentrée dans la boucle. - + Loop Exit Sortir de la boucle - + Turns the current loop off. Coupe la boucle courante - + Slip Mode Mode glisser - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Quand activé, la lecture continu en sourdine en fond pendant une boucle, l'inversion, le scratch etc. - + Once disabled, the audible playback will resume where the track would have been. Une fois désactivé, la lecture reprendra de manière audible là où la piste se trouvait. - + Track Key The musical key of a track Tonalité de la piste - + Displays the musical key of the loaded track. Affiche la tonalité musicale de la piste chargée. - + Clock Horloge - + Displays the current time. Affiche l'heure actuelle - + Audio Latency Usage Meter Vu-mètre d'utilisation de la latence audio - + Displays the fraction of latency used for audio processing. Affiche les parties de latence utilisées pour le traitement audio. - + A high value indicates that audible glitches are likely. Une valeur haute indique que des interférences audibles sont possibles. - + Do not enable keylock, effects or additional decks in this situation. N'activer aucun verrou, effet ou platine supplémentaire dans cette situation. - + Audio Latency Overload Indicator Indicateur de surcharge de latence audio @@ -15090,259 +15531,259 @@ Utiliser ceci pour modifier uniquement le signal affecté (traité) avec EQ et l Activer le Contrôle Vinyle depuis le Menu -> Options. - + Displays the current musical key of the loaded track after pitch shifting. Affiche la tonalité musicale actuelle de la piste chargée après le changement de hauteur tonale. - + Fast Rewind Rembobinage rapide - + Fast rewind through the track. Rembobinage rapide en parcourant la piste. - + Fast Forward Avance rapide - + Fast forward through the track. Avance rapide en parcourant la piste. - + Jumps to the end of the track. Saute à la fin de la piste. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Définit la hauteur tonale à une tonalité permettant une transition harmonique avec l'autre piste. Nécessite que la tonalité soit détectée sur les deux platines concernées. - - - + + + Pitch Control Contrôle de la hauteur tonale - + Pitch Rate Taux de pitch - + Displays the current playback rate of the track. Affiche la vitesse de lecture actuelle de la piste. - + Repeat Répéter - + When active the track will repeat if you go past the end or reverse before the start. Lorsque activé, la piste se répète si vous dépassez la fin ou retourne avant le départ. - + Eject Éjecter - + Ejects track from the player. Ejecte la piste du lecteur. - + Hotcue Repère rapide - + If hotcue is set, jumps to the hotcue. Si un repère rapide est défini, saute au repère rapide. - + If hotcue is not set, sets the hotcue to the current play position. Si un repère rapide n'est pas défini, définie le repère rapide à l'emplacement de lecture courant. - + Vinyl Control Mode Mode de Contrôle Vinyle - + Absolute mode - track position equals needle position and speed. Mode absolu - la position dans la piste est égal à la position et la vitesse de la pointe. - + Relative mode - track speed equals needle speed regardless of needle position. Mode relatif - la vitesse de la piste est égal à la vitesse de la pointe sans égard pour la position de la pointe. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Mode constant - la vitesse de la piste est égale à la dernière vitesse instantanée connue sans égard de la position de la pointe. - + Vinyl Status Etat du Vinyle - + Provides visual feedback for vinyl control status: Fournit un retour visuel concernant l'état du contrôle vinyle : - + Green for control enabled. Vert lorsque le controle est activé. - + Blinking yellow for when the needle reaches the end of the record. Clignote jaune lorsque la pointe touche à la fin du disque. - + Loop-In Marker Marqueur d'entrée de boucle - + Loop-Out Marker Marqueur de sortie de boucle - + Loop Halve Réduction de la boucle de moitié - + Halves the current loop's length by moving the end marker. Réduit de moitié la longueur courante de la boucle en déplaçant le marqueur de fin. - + Deck immediately loops if past the new endpoint. La platine boucle immédiatement si le nouveau point d'arrêt est dépassé. - + Loop Double Doublage de la boucle - + Doubles the current loop's length by moving the end marker. Double la longueur courante de la boucle en déplaçant le marqueur de fin. - + Beatloop Boucle de battement - + Toggles the current loop on or off. Active/désactive la boucle courante. - + Works only if Loop-In and Loop-Out marker are set. Ne fonctionne que si les repères d'entrée et de sortie de boucle sont définis. - + Vinyl Cueing Mode Mode de pré-écoute Vinyle - + Determines how cue points are treated in vinyl control Relative mode: Détermine la façon dont les points de repère sont traités dans le mode de contrôle vinyle Relatif : - + Off - Cue points ignored. Éteint - Points de repère ignorés - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Un Repère - Si la pointe est déposée après le point de repère, la piste sera calé sur ce point de repère. - + Track Time Temps de la piste - + Track Duration Durée de la piste - + Displays the duration of the loaded track. Affiche la durée de la piste chargée. - + Information is loaded from the track's metadata tags. L'information est chargée depuis les métadonnées des tags de la piste. - + Track Artist Artiste de la piste - + Displays the artist of the loaded track. Affiche l'artiste de la piste chargée. - + Track Title Titre de la piste - + Displays the title of the loaded track. Affiche le titre de la piste. - + Track Album Album de la piste - + Displays the album name of the loaded track. Affiche le nom de l'album de la piste chargée. - + Track Artist/Title Artiste/titre de la piste - + Displays the artist and title of the loaded track. Affiche l'artiste et le titre de la piste chargée. @@ -15573,47 +16014,75 @@ Cette opération est irréversible ! WCueMenuPopup - + Cue number Numéro de repère - + Cue position Position du repère - + Edit cue label Modifie l'étiquette du repère - + Label... Etiquette... - + Delete this cue Supprimer ce repère - - Toggle this cue type between normal cue and saved loop - Activer/désactiver ce type de repère entre le repère normal et la boucle enregistrée + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic-gauche : utiliser l'ancienne taille ou la taille actuelle de boucle de battement comme taille de boucle + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic-droit : utiliser la position de lecture actuelle comme sortie de boucle si elle se situe après le repère + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Repère rapide #%1 @@ -15738,323 +16207,363 @@ Cette opération est irréversible ! + Search in Current View... + Rechercher dans la vue actuelle... + + + + Search for tracks in the current library view + Rechercher des pistes dans la vue actuelle de la bibliothèque + + + + Ctrl+f + Ctrl+f + + + + Search in Tracks Library... + Recherche dans la bibliothèque des pistes... + + + + Search in the internal track collection under "Tracks" in the library + Rechercher dans la collection de pistes interne comme "Pistes" dans la bibliothèque + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + Create &New Playlist Créer une &nouvelle liste de lecture - + Create a new playlist Créer une nouvelle liste de lecture - + Ctrl+n Ctrl+n - + Create New &Crate &Créer un nouveau bac - + Create a new crate Créer un nouveau bac - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Affichage - + Auto-hide menu bar Masquer automatiquement la barre de menu - + Auto-hide the main menu bar when it's not used. Masquer automatiquement la barre de menu principale lorsqu'elle n'est pas utilisée. - + May not be supported on all skins. Peut-être pas supporté sur tous les thèmes - + Show Skin Settings Menu Afficher le menu de réglage du thème - + Show the Skin Settings Menu of the currently selected Skin Afficher le menu paramètres de Thème du thème actuellement sélectionnée - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Afficher la section microphone - + Show the microphone section of the Mixxx interface. Afficher la section microphone de l'interface Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Afficher la section de contrôle des vinyles - + Show the vinyl control section of the Mixxx interface. Afficher la section de contrôle des vinyles de l'interface Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Afficher la platine de pré-écoute - + Show the preview deck in the Mixxx interface. Afficher la platine de pré-écoute dans l'interface de Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Afficher la pochette d'album - + Show cover art in the Mixxx interface. Afficher la pochette d'album dans l'interface Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximiser 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 - + Space Menubar|View|Maximize Library Espace - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen Plein &écran - + Display Mixxx using the full screen Afficher Mixxx en plein écran - + &Options &Options - + &Vinyl Control Contrôle &Vinyle - + Use timecoded vinyls on external turntables to control Mixxx Utiliser des disques vinyles avec timecode sur un tourne-disque externe pour contrôler Mixxx - + Enable Vinyl Control &%1 Activer le Contrôle Vinyle &%1 - + &Record Mix &Enregistrer le Mix - + Record your mix to a file Enregistrer votre mix dans un fichier - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activer la Diffusion en Direct (&Broadcast) - + Stream your mixes to a shoutcast or icecast server Diffuser vos mixages via un serveur shoutcast ou icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activer les Raccourcis Clavier (&K) - + Toggles keyboard shortcuts on or off Active/désactive les raccourcis claviers - + Ctrl+` Ctrl+` - + &Preferences &Préférences - + Change Mixxx settings (e.g. playback, MIDI, controls) Modifier les paramètres de Mixxx (par ex. lecture, MIDI, contrôleurs) - + &Developer &Développeur - + &Reload Skin &Recharger le thème - + Reload the skin Recharger le thème - + Ctrl+Shift+R Ctrl+Maj+R - + Developer &Tools Ou&Tils de développement - + Opens the developer tools dialog Ouvre le panneau d'outils de dévelopement - + Ctrl+Shift+T Ctrl+Maj+T - + Stats: &Experiment Bucket Statistiques : Paquet &Expérimental - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Active le mode expérimental. Collecte des statistiques dans le paquet de suivi EXPERIMENTAL. - + Ctrl+Shift+E Ctrl+Maj+E - + Stats: &Base Bucket Statistiques : Paquet de &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Active le mode basique. Collecte des statistiques dans le paquet de suivi BASIQUE. - + Ctrl+Shift+B Ctrl+Maj+B - + Deb&ugger Enabled Débogueur activé (&U) - + Enables the debugger during skin parsing Active le debogueur pendant l'analyse syntaxique des apparences - + Ctrl+Shift+D Ctrl+Maj+D - + &Help &Aide - + Show Keywheel menu title Afficher la roue de tonalités @@ -16071,74 +16580,74 @@ Cette opération est irréversible ! Exporter la bibliothèque au format Engine DJ - + Show keywheel tooltip text Afficher la roue de tonalités - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Support &communautaire - + Get help with Mixxx Obtenir de l'aide sur Mixxx - + &User Manual &Manuel utilisateur - + Read the Mixxx user manual. Lire le manuel utilisateur de Mixxx - + &Keyboard Shortcuts &Raccourcis clavier - + Speed up your workflow with keyboard shortcuts. Gagnez en rapidité avec les raccourcis clavier. - + &Settings directory Répertoire des paramètres - + Open the Mixxx user settings directory. Ouvrez le répertoire des paramètres utilisateur Mixxx. - + &Translate This Application &Traduire cette application - + Help translate this application into your language. Aidez à traduire cette application dans votre langage. - + &About À &propos - + About the application A propos de l'application @@ -16146,25 +16655,25 @@ Cette opération est irréversible ! WOverview - + Passthrough 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 ... @@ -16173,25 +16682,13 @@ Cette opération est irréversible ! WSearchLineEdit - - Clear input - Clear the search bar input field - Efface la saisie - - - - Ctrl+F - Search|Focus - CTRL+F - - - + Search noun Rechercher - + Clear input Efface la saisie @@ -16202,93 +16699,87 @@ Cette opération est irréversible ! Rechercher... - + Clear the search bar input field Effacer le champ de saisie de la barre de recherche - - Enter a string to search for - Entrer un élément à rechercher + + Return + Retour arrière - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Utilisez des opérateurs tels que bpm: 115-128, artiste: BooFar, -year: 1990 + + Enter a string to search for. + Entrer une chaîne à rechercher. - - For more information see User Manual > Mixxx Library - Pour plus d'informations, voir Manuel de l'utilisateur> Bibliothèque Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + Utiliser des opérateurs comme bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Raccourci + See User Manual > Mixxx Library for more information. + Voir le manuel d’utilisation > Bibliothèque Mixxx pour plus d’informations. - - Ctrl+F - CTRL+F + + Focus/Select All (Search in current view) + Give search bar input focus + Focus/Sélectionner tout (Rechercher dans la vue actuelle) - - Focus - Give search bar input focus - Focus + + Focus/Select All (Search in 'Tracks' library view) + Focus/Sélectionner tout (Rechercher dans la vue bibliothèques des 'Pistes') - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + Raccourcis supplémentaires lorsque focalisé : - Shortcuts - Raccourcis + Trigger search before search-as-you-type timeout or focus tracks view afterwards + Déclenche la recherche avant l'expiration du délai de recherche au-fur-et-à-mesure-de-la-frappe ou passe ensuite à l'affichage des pistes - Return - Retour arrière + Esc or Ctrl+Return + Echap ou Ctrl+Retour arrière - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Déclenche la recherche avant l'expiration du délai de recherche au-fur-et-à-mesure-de-la-frappe ou passe ensuite à l'affichage des pistes + Immediately trigger search and focus tracks view + Exit search bar and leave focus + Activer immédiatement la recherche et le focus sur les pistes - + Ctrl+Space Ctrl + Espace - + Toggle search history Shows/hides the search history entries Activer/désactiver l'historique de recherche - + Delete or Backspace Supprimer ou Retour arrière - - Delete query from history - Supprimer la requête de l'historique - - - - Esc - Echap + + in search history + dans l'historique de recherche - - Exit search - Exit search bar and leave focus - Quitte la recherche + + Delete query from history + Supprimer la requête de l'historique @@ -16372,625 +16863,640 @@ Cette opération est irréversible ! WTrackMenu - + Load to Charger vers - + Deck Platine - + Sampler Échantilloneur - + Add to Playlist Ajouter à la liste de lecture - + Crates Bacs - + Metadata Métadonnées - + Update external collections Mettre à jour les collections externes - + Cover Art Pochette d'album - + Adjust BPM BPM ajustement - + Select Color Couleur sélection - - + + Analyze Analyser - - + + Delete Track Files Supprimer les fichiers de piste - + Add to Auto DJ Queue (bottom) Ajouter à la file d'attente Auto DJ (fin) - + Add to Auto DJ Queue (top) Ajouter à la file d'attente Auto DJ (début) - + Add to Auto DJ Queue (replace) Ajouter à la file d'attente Auto-DJ (Remplacer) - + Preview Deck Platine de pré-écoute - + Remove Supprimer - + Remove from Playlist Enlever de la liste de lecture - + Remove from Crate Ôter du bac - + Hide from Library Masquer dans la bibliothèque - + Unhide from Library Démasquer dans la bibliothèque - + Purge from Library Purger de la bibliothèque - + Move Track File(s) to Trash Déplacer le(s) fichier(s) de piste vers la corbeille - + Delete Files from Disk Supprimer des fichiers du disque - + Properties Propriétés - + Open in File Browser Ouvrir le Navigateur de Fichiers - + Select in Library Sélectionner dans la bibliothèque - + Import From File Tags Importer à partir des tags du fichier - + Import From MusicBrainz Importer à partir de MusicBrainz - + Export To File Tags Exporter vers les tags du fichier - + BPM and Beatgrid BPM et grille rythmique - + Play Count Compteur de lecture - + Rating Notation - + Cue Point Point de repère - - + + Hotcues Repères rapides - + Intro Intro - + Outro Outro - + Key Tonalité - + ReplayGain ReplayGain - + Waveform Forme d'onde - + Comment Commentaire - + All Tous - + Sort hotcues by position (remove offsets) Trier les repères rapides par position (supprimer les décalages) - + Sort hotcues by position Trier les repères rapides par position - + Lock BPM Verrouiller le tempo - + Unlock BPM Déverrouiller le tempo - + Double BPM Doubler le tempo - + Halve BPM Diviser le tempo par deux - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Grille rythmique décalée d'un demi-battement - + Reanalyze Réanalyser - + Reanalyze (constant BPM) Réanalyser (BPM constant) - + Reanalyze (variable BPM) Réanalyser (BPM variable) - + Update ReplayGain from Deck Gain Mettre à jour ReplayGain à partir du gain de la platine - + Deck %1 Platine %1 - + Importing metadata of %n track(s) from file tags Importe les métadonnées de %n piste(s) à partir des tags de fichierImporte les métadonnées de %n piste(s) à partir des tags de fichierImporte les métadonnées de %n piste(s) à partir des tags de fichier - + Marking metadata of %n track(s) to be exported into file tags Marquage des métadonnées de %n piste(s) à exporter dans les tags de fichierMarquage des métadonnées de %n piste(s) à exporter dans les tags de fichierMarquage des métadonnées de %n piste(s) à exporter dans les tags de fichier - - + + 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) Mise à l'échelle du BPM de %n piste(s)Mise à l'échelle du BPM de %n piste(s)Mise à l'échelle du BPM de %n piste(s) - + Undo BPM/beats change of %n track(s) Annuler la modification du BPM / battements de %n piste(s)Annuler la modification du BPM / battements de %n piste(s)Annuler la modification du BPM / battements de %n piste(s) - + Locking BPM of %n track(s) Verrouillage du BPM de %n piste(s) Verrouillage du BPM de %n piste(s) Verrouillage du BPM de %n piste(s) - + Unlocking BPM of %n track(s) Déverrouillage du BPM de% n piste(s)Déverrouillage du BPM de% n piste(s)Déverrouillage du BPM de %n piste(s) - + Setting rating of %n track(s) Définir la note %n piste(s)Définir la note %n piste(s)Définir la note %n piste(s) - + Setting color of %n track(s) Définition de la couleur de %n piste(s)Définition de la couleur de %n piste(s)Définition de la couleur de %n piste(s) - + Resetting play count of %n track(s) Réinitialisation nombre de lectures de %n piste(s)Réinitialisation nombre de lectures de %n piste(s)Réinitialisation nombre de lectures de %n piste(s) - + Resetting beats of %n track(s) Réinitialisation battements de %n piste(s) Réinitialisation battements de %n piste(s) Réinitialisation battements de %n piste(s) - + Clearing rating of %n track(s) Effacement taux de %n piste(s)Effacement taux de %n piste(s)Effacement taux de %n piste(s) - + Clearing comment of %n track(s) Effacement commentaire de %n piste(s)Effacement commentaire de %n piste(s)Effacement commentaire de %n piste(s) - + Removing main cue from %n track(s) Suppression repère principal de %n piste(s)Suppression repère principal de %n piste(s)Suppression repère principal de %n piste(s) - + Removing outro cue from %n track(s) Suppression repère outro de %n piste(s)Suppression repère outro de %n piste(s)Suppression repère outro de %n piste(s) - + Removing intro cue from %n track(s) Suppression repère intro de %n piste(s)Suppression repère intro de %n piste(s)Suppression repère intro de %n piste(s) - + Removing loop cues from %n track(s) Suppression repère boucle de %n piste(s)Suppression repère boucle de %n piste(s)Suppression repère boucle de %n piste(s) - + Removing hot cues from %n track(s) Suppression repères rapide de %n piste(s)Suppression repères rapide de %n piste(s)Suppression repères rapide de %n piste(s) - + Sorting hotcues of %n track(s) by position (remove offsets) Tri des repères rapides par position de %n piste(s) (supprimer les décalages)Tri des repères rapides par position de %n piste(s) (supprimer les décalages)Tri des repères rapides par position de %n piste(s) (supprimer les décalages) - + Sorting hotcues of %n track(s) by position Tri des repères rapides par position de %n piste(s)Tri des repères rapides par position de %n piste(s)Tri des repères rapides par position de %n piste(s) - + Resetting keys of %n track(s) Réinitialisation tonalités de %n piste(s)Réinitialisation tonalités de %n piste(s)Réinitialisation tonalités de %n piste(s) - + Resetting replay gain of %n track(s) Réinitialisation ReplayGain de %n piste(s)Réinitialisation ReplayGain de %n piste(s)Réinitialisation ReplayGain de %n piste(s) - + Resetting waveform of %n track(s) Réinitialisation forme d'onde de %n piste(s)Réinitialisation forme d'onde de %n piste(s)Réinitialisation forme d'onde de %n piste(s) - + Resetting all performance metadata of %n track(s) Réinitialisation de toutes les métadonnées de performance de %n piste(s)Réinitialisation de toutes les métadonnées de performance de %n piste(s)Réinitialisation de toutes les métadonnées de performance de %n piste(s) - + Move these files to the trash bin? Déplacer ces fichiers de piste vers la corbeille ? - + Permanently delete these files from disk? Supprimer définitivement ces fichiers du disque ? - - + + This can not be undone! Ça ne peut pas être annulé ! - + Cancel Annuler - + Delete Files Supprimer les fichiers - + Okay D'accord - + Move Track File(s) to Trash? Déplacer le(s) fichier(s) de piste vers la corbeille ? - + Track Files Deleted Fichiers de piste supprimés - + Track Files Moved To Trash Fichiers des pistes déplacés vers la corbeille - + %1 track files were moved to trash and purged from the Mixxx database. %1 fichiers de piste ont été déplacés vers la corbeille et purgés de la base de données Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 fichiers de piste ont été supprimés du disque et purgés de la base de données Mixxx. - + Track File Deleted Fichier de la piste supprimée - + Track file was deleted from disk and purged from the Mixxx database. Fichier de piste supprimé du disque et purgé de la base de données Mixxx. - + The following %1 file(s) could not be deleted from disk Le(s) fichier(s) %1 suivants n'ont pas pu être supprimés du disque - + This track file could not be deleted from disk Ce fichier de piste n'a pas pu être supprimé du disque - + Remaining Track File(s) Fichier(s) de piste restant(s) - + Close Fermer - + Clear Reset metadata in right click track context menu in library Effacer - + Loops Boucles - + Clear BPM and Beatgrid Effacer le tempo et la grille rythmique - + Undo last BPM/beats change Annuler le dernier changement de BPM / battements - + Move this track file to the trash bin? Déplacer ce fichier de piste vers la corbeille ? - + Permanently delete this track file from disk? Supprimer définitivement ce fichier du disque ? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Toutes les platines sur lesquelles ces pistes sont chargées seront arrêtées et les pistes seront éjectés. - + All decks where this track is loaded will be stopped and the track will be ejected. Toutes les platines sur lesquelles cette piste sont chargées seront arrêtées et la piste sera éjectée. - + Removing %n track file(s) from disk... Suppression de %n fichier(s) de piste du disque... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Remarque : si vous êtes dans la vue Ordinateur ou Enregistrement, vous devez cliquer à nouveau sur la vue actuelle pour voir les modifications. - + Track File Moved To Trash Fichier de piste déplacé vers la corbeille - + Track file was moved to trash and purged from the Mixxx database. Fichier de piste déplacé vers la corbeille et purgé de la base de données Mixxx. - + Don't show again during this session Ne plus afficher pendant cette session - + The following %1 file(s) could not be moved to trash Le(s) fichier(s) %1 suivants n'ont pas pu être déplacés vers la corbeille - + This track file could not be moved to trash Ce fichier de piste n'a pas pu être déplacé vers la corbeille + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Définition pochette d'album de %n piste(s)Définition pochette d'album de %n piste(s)Définition pochette d'album de %n piste(s) - + Reloading cover art of %n track(s) Rechargement pochette d'album de %n piste(s)Rechargement pochette d'album de %n piste(s)Rechargement pochette d'album de %n piste(s) @@ -17044,37 +17550,37 @@ Cette opération est irréversible ! WTrackTableView - + Confirm track hide Confirmer le masquage de la piste - + Are you sure you want to hide the selected tracks? Êtes-vous certain de vouloir masquer les pistes sélectionnées ? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Êtes-vous sûr de vouloir supprimer les pistes sélectionnées de la file d'attente AutoDJ ? - + Are you sure you want to remove the selected tracks from this crate? Êtes-vous sûr de vouloir supprimer les pistes sélectionnées de ce bac ? - + Are you sure you want to remove the selected tracks from this playlist? Êtes-vous sûr de vouloir supprimer les pistes sélectionnées de cette liste de lecture ? - + Don't ask again during this session Ne demandez plus pendant cette session - + Confirm track removal Confirmer la suppression de la piste @@ -17082,12 +17588,12 @@ Cette opération est irréversible ! WTrackTableViewHeader - + Show or hide columns. Afficher ou masquer les colonnes. - + Shuffle Tracks Mélanger les pistes @@ -17125,22 +17631,22 @@ Cette opération est irréversible ! bibliothèque - + Choose music library directory Choisissez le répertoire de la bibliothèque musicale - + controllers contrôleurs - + 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. @@ -17263,7 +17769,7 @@ Cliquez sur OK pour sortir. Exported %1 track(s), %2 crate(s), and %3 playlist(s). - %1 piste(s), %2 bac(s) et %3 liste(s) de lecture ont été exportés + %1 piste(s), %2 bac(s) et %3 listes de lecture ont été exportés @@ -17297,6 +17803,24 @@ Cliquez sur OK pour sortir. La demande de réseau n'a pas été lancée + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17305,4 +17829,27 @@ Cliquez sur OK pour sortir. Aucun effet chargé. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_gl.qm b/res/translations/mixxx_gl.qm index 7c3d681a02f7..b6013715ea32 100644 Binary files a/res/translations/mixxx_gl.qm and b/res/translations/mixxx_gl.qm differ diff --git a/res/translations/mixxx_gl.ts b/res/translations/mixxx_gl.ts index 26c7c60391a9..f80493f6f817 100644 --- a/res/translations/mixxx_gl.ts +++ b/res/translations/mixxx_gl.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Caixóns - + Enable Auto DJ - + Activar o DJ automático - + Disable Auto DJ - + Desactivar o DJ automático - + Clear Auto DJ Queue - + Engadir á cola de DJ automático - + Remove Crate as Track Source Retirar caixa como orixe da pista - + Auto DJ DJ automático - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Engadir caixa como orixe da pista @@ -149,7 +157,7 @@ BasePlaylistFeature - + New Playlist Nova lista de reprodución @@ -160,7 +168,7 @@ - + Create New Playlist Crear unha nova lista de reprodución @@ -190,113 +198,120 @@ 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) Engadir á cola do DJ automático (trocar) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion Confimar o borrado - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +319,12 @@ BaseSqlTableModel - + # Num. - + Timestamp Marca de tempo @@ -317,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Non foi posíbel cargar a pista. @@ -325,137 +340,142 @@ BaseTrackTableModel - + Album Álbum - + Album Artist Interprete do álbum - + Artist Interprete - + Bitrate Taxa de bits - + BPM BPM - + Channels Canles - + Color Cor - + Comment Comentario - + Composer Compositor - + Cover Art Deseño da portada - + Date Added Data de engadido - + Last Played Último reproducido - + Duration Duración - + Type Tipo - + Genre Xénero - + Grouping Agrupación - + Key Clave - + Location Localización - + + Overview + + + + Preview Escoita previa - + Rating Cualificación - + ReplayGain ReplayGain - + Samplerate - + Played Reproducidas - + Title Título - + Track # Pista num. - + Year Ano - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -477,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. - + Settings error - + <b>Error with settings for '%1':</b><br> @@ -543,67 +563,77 @@ BrowseFeature - + Add to Quick Links Engadir a ligazóns rápidas - + Remove from Quick Links Retirar de ligazóns rápidas - + Add to Library Engadir a fonoteca - + Refresh directory tree - + Quick Links Ligazóns rápidas - - + + Devices Dispositivos - + Removable Devices Dispositivos extraíbeis - - + + Computer Computador - + 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 - + "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. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -713,12 +743,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. @@ -749,87 +779,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -839,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -957,2547 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Saída de auriculares - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Prato %1 - + Sampler %1 Mostreador %1 - + Preview Deck %1 Escoita previa do prato %1 - + Microphone %1 Micrófono %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restabelecer ao predeterminado - + Effect Rack %1 Caixa de efectos %1 - + Parameter %1 Parámetro %1 - + Mixer Mesturador - - + + Crossfader Cursor de mestura - + Headphone mix (pre/main) Mestura dos auriculares (pre/principal) - + Toggle headphone split cueing Conmutador da escoita previa por auriculares da referencia dividida - + Headphone delay Retardo da saída dos auriculares - + Transport Transporte - + Strip-search through track Buscar nas pistas - + Play button Botón de reprodución - - + + Set to full volume Estabelecer o volume no máximo - - + + Set to zero volume Estabelecer o volume a cero - + Stop button Botón de parada - + Jump to start of track and play Saltar ao comezo da pista e reproducir - + Jump to end of track Saltar á fin da pista - + Reverse roll (Censor) button Botón de desprazamento inverso (Censor) - + Headphone listen button Botón de escoita por auriculares - - + + Mute button Botón de silencio - + Toggle repeat mode Conmutador do modo de repetición - - + + 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 - + Toggle slip mode Conmutador do modo de esvaramento - - + + BPM BPM - + Increase BPM by 1 Incrementar BPM en 1 - + Decrease BPM by 1 Diminuír BPM en 1 - + Increase BPM by 0.1 Incrementar BPM en 0,1 - + Decrease BPM by 0.1 Diminuír BPM en 0,1 - + BPM tap button Botón de toque de BPM - + Toggle quantize mode Conmutador do modo de cuantización - + One-time beat sync (tempo only) Sincronizar só unha vez o golpe (só o tempo) - + One-time beat sync (phase only) Sincronizar só unha vez o golpe (só a fase) - + Toggle keylock mode Conmutador do modo de bloqueo tonal - + Equalizers 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 - + Slot %1 Rañura %1 - + Headphone Mix Mestura dos auriculares - + Headphone Split Cue Escoita previa por auriculares da referencia dividida - + Headphone Delay Retardo da saída dos auriculares - + Play Reproducir - + Fast Rewind Retroceso rápido - + Fast Rewind button Botón de retroceso rápido - + Fast Forward Avance rápido - + Fast Forward button Botón de avance rápido - + Strip Search Busca de faixas - + Play Reverse Reprodución inversa - + Play Reverse button Botón de reprodución inversa - + Reverse Roll (Censor) Botón de desprazamento inverso (Censor) - + Jump To Start Saltar ao comezo - + Jumps to start of track Saltar ao comezo da pista - + Play From Start Reproducir dende o comezo - + Stop Deter - + Stop And Jump To Start Deter e saltar ao comezo - + Stop playback and jump to start of track Deter a reprodución e saltar ao comezo da pista - + Jump To End Saltar cara a fin - + Volume Volume - - - + + + Volume Fader Control de volume - - + + Full Volume Volume máximo - - + + Zero Volume Volume cero - + Track Gain Ganancia da pista - + Track Gain knob Mando da ganancia da pista - - + + Mute Silenciar - + Eject Expulsar - - + + Headphone Listen Escoita por auriculares - + Headphone listen (pfl) button Botón de escoita previa por auriculares - + Repeat Mode Modo repetición - + Slip Mode Modo de esvaramento - - + + Orientation Orientación - - + + Orient Left Orientar cara a esquerda - - + + Orient Center Orientar ao centro - - + + Orient Right Orientar cara a dereita - + BPM +1 BPM +1 - + BPM -1 BPM +1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Toque de BPM - + Adjust Beatgrid Faster +.01 Axustar a grella do ritmo máis rápido +0,1 - + Increase track's average BPM by 0.01 Incrementar BPM medio da pista en 0.01 - + Adjust Beatgrid Slower -.01 Axustar a grella do ritmo máis lento -0,1 - + Decrease track's average BPM by 0.01 Diminuír BPM medio da pista en 0.01 - + Move Beatgrid Earlier Mover a grella do ritmo antes no tempo - + Adjust the beatgrid to the left Axustar a grella do ritmo cara a esquerda - + Move Beatgrid Later Mover a grella do ritmo após no tempo - + Adjust the beatgrid to the right Axustar a grella do ritmo cara a dereita - + Adjust Beatgrid Axustar a grella do ritmo - + Align beatgrid to current position Aliñar a grella do ritmo á posición actual - + Adjust Beatgrid - Match Alignment Axustar a grella do ritmo, deixala aliñada - + Adjust beatgrid to match another playing deck. Axustar a grella do ritmo para que coincida co outro prato en reprodución - + Quantize Mode Modo de cuantización - + Sync Sincronizar - + Beat Sync One-Shot Sincroniza o ritmo ao premer - + Sync Tempo One-Shot Sincroniza o tempo ao premer - + Sync Phase One-Shot 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 - + High EQ EQ agudos - + Mid EQ EQ medios - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 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 - + 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 - + Headphone Gain Ganancia dos auriculares - + Headphone gain Ganancia dos auriculares - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 Axuste %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Tema - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Auricular - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Eliminar %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - - Move Beatgrid + + Move Beatgrid + + + + + Adjust the beatgrid to the left or right + + + + + Move Beatgrid Half a Beat - - Adjust the beatgrid to the left or right + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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) Engadir á cola do DJ automático (trocar) - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3510,6 +3583,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3612,32 +3838,32 @@ trace - Above + Profiling messages 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 @@ -3645,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3698,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Bloquear @@ -3728,7 +3954,7 @@ trace - Above + Profiling messages Orixe das pistas para DJ automático - + Enter new name for crate: Escriba o novo nome para o caixón: @@ -3745,59 +3971,53 @@ trace - Above + Profiling messages 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. - + Confirm Deletion Confimar o borrado - - + + 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) - + M3U Playlist (*.m3u) Lista de reprodución M3U (*.m3u) @@ -3806,23 +4026,29 @@ trace - Above + Profiling messages 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. + + + + Export to Engine DJ + + Crates let you organize your music however you'd like! Os caixóns permítenlle organizar a súa música ao seu gusto! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3917,12 +4143,12 @@ trace - Above + Profiling messages Colaboradores anteriores - + Official Website - + Donate @@ -4434,37 +4660,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Se non funciona a asignación, probe a activar un dos controles avanzados seguintes e probe de novo. Tamén pode volver detectar o control. - + Didn't get any midi messages. Please try again. Non se detectou ningunha mensaxe MIDI. Tenteo de novo. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Non é posíbel detectar unha asignación -- Tenteo de novo. Asegúrese de tocar só un control de vez. - + Successfully mapped control: Control asignado correctamente: - + <i>Ready to learn %1</i> <i>Preparado para aprender sobre %1</i> - + Learning: %1. Now move a control on your controller. Aprendendor: %1. Agora mova un control do seu controlador. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4503,17 +4729,17 @@ You tried to learn: %1,%2 Envorcar a csv - + Log Rexistro - + Search Buscar - + Stats Estatísticas @@ -4709,122 +4935,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4837,27 +5080,27 @@ Two source connections to the same server that have the same mountpoint can not Preferencias da difusión en directo - + Mixxx Icecast Testing Proba de «Mixxx Icecast» - + Public stream Fluxo público - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nome do fluxo - + 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. Por mor dalgún fallo nalgúns clientes de difusión, a actualización dinámica dos metadatos Ogg Vorbis pode causar interferencias e desconexións aos oíntes. Marque esta caixiña para actualizar, aínda así, os metadatos. @@ -4897,67 +5140,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizar dinamicamente os metadatos Ogg Vorbis. - + ICQ - + AIM - + Website Sitio web - + Live mix Mestura en directo - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Xénero - + Use UTF-8 encoding for metadata. Usar a codificación UTF-8 para os metadatos. - + Description Descrición @@ -4983,42 +5231,42 @@ Two source connections to the same server that have the same mountpoint can not Canles - + Server connection Conexión co servidor - + Type Tipo - + Host Máquina - + Login Acceso - + Mount Montaxe - + Port Porto - + Password Contrasinal - + Stream info Información do fluxo @@ -5028,17 +5276,17 @@ Two source connections to the same server that have the same mountpoint can not Metadatos - + Use static artist and title. Usar nome de artista e título fixo. - + Static title Título fixo - + Static artist Artista fixo @@ -5097,13 +5345,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color Cor @@ -5148,17 +5397,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5166,114 +5420,114 @@ associated with each key. DlgPrefController - + Apply device settings? Aplicar os axustes do dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Deben aplicarse os axustes antes de iniciar o asistente de aprendizaxe. Aplicar os axustes e continuar? - + None Ningún - + %1 by %2 %1 de %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Solución de problemas - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Limpar as asignacións de entrada - + Are you sure you want to clear all input mappings? Confirma que quere limpar todas as asignacións de entrada? - + Clear Output Mappings Limpar as asignacións de saída - + Are you sure you want to clear all output mappings? Confirma que quere limpar todas as asignacións de saída? @@ -5291,100 +5545,105 @@ Aplicar os axustes e continuar? Activado - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descrición: - + Support: Asistencia: - + Screens preview - + Input Mappings Asignacións de entrada - - + + Search Buscar - - + + Add Engadir - - + + Remove Retirar @@ -5404,17 +5663,17 @@ Aplicar os axustes e continuar? - + Mapping Info - + Author: Autor: - + Name: Nome: @@ -5424,28 +5683,28 @@ Aplicar os axustes e continuar? Asistente de aprendizaxe (só MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Limpar todo - + Output Mappings Asignacións de saída @@ -5460,21 +5719,21 @@ Aplicar os axustes 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5604,6 +5863,16 @@ Aplicar os axustes e continuar? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5633,137 +5902,137 @@ Aplicar os axustes e continuar? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sen escintileo) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semitono) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6195,62 +6464,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6477,67 +6746,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleccione o tipo de letra para a fonoteca @@ -6586,262 +6885,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Formatos de ficheiros de son - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Tipo de letra da fonoteca - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Alto da fila na fonoteca: - + Use relative paths for playlist export if possible Usar rutas relativas na exportación de listas de reprodución se é posíbel - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms ms - + Load track to next available deck Carga a pista no seguinte prato dispoñíbel - + External Libraries Fonotecas externas - + You will need to restart Mixxx for these settings to take effect. Ten que reiniciar o Mixxx para que estes axustes teñan efecto - + Show Rhythmbox Library Amosar a fonoteca do Rhythmbox - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Amosar a fonoteca do Banshee - + Show iTunes Library Amosar a fonoteca do iTunes - + Show Traktor Library Amosar a fonoteca do Traktor - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. Todas as fonotecas amosadas están protexidas contra escritura. @@ -7186,33 +7490,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Escolla o directorio de gravacións - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7230,43 +7534,55 @@ and allows you to pitch adjust them for harmonic mixing. Examinar... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calidade - + Tags Etiquetas - + Title Título - + Author Autor - + Album Álbum - + Output File Format Formato do ficheiro de saída - + Compression Compresión - + Lossy Con perdas @@ -7281,12 +7597,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Nivel de compresión - + Lossless Sen perdas @@ -7417,173 +7733,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Predeterminado (máis retardado) - + Experimental (no delay) Experimental (sen retardo) - + Disabled (short delay) Desactivado (pouco retardo) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled Desactivado - + Enabled Activado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. A planificación en tempo real está activada. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Produciuse un erro de configuración @@ -7601,131 +7921,136 @@ The loudness target is approximate and assumes track pregain and main output lev API de son - + Sample Rate Taxa de mostraxe - + Audio Buffer Búfer de son - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contador de desbordamento do búfer - + 0 0 - + Keylock/Pitch-Bending Engine Motor de bloqueo tonal/pregado do ton - + Multi-Soundcard Synchronization Sincronización con múltiples tarxetas de son - + Output Saída - + Input Entrada - + System Reported Latency Latencia informada polo sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente búfer de son se o contador de desbordamento está aumentando ou escoita chascar durante a reprodución. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics Consellos e diagnósticos - + Downsize your audio buffer to improve Mixxx's responsiveness. Reduza u búfer de son para mellorar a velocidade de resposta do Mixxx. - + Query Devices Consulta a dispositivos @@ -7767,7 +8092,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configuración do vinilo - + Show Signal Quality in Skin Amosar a calidade do sinal no tema @@ -7803,46 +8128,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Calidade do sinal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Fornecido por xwax - + Hints Consellos - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleccione os dispositivos de son para o Control do Vinilo no panel de Hardware de Son. @@ -7850,58 +8180,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + 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. @@ -7919,22 +8249,17 @@ The loudness target is approximate and assumes track pregain and main output lev Taxa de fotogramas - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Amosa que versión de OpenGL é compatíbel coa plataforma actual. - - Normalize waveform overview - Normalizar a vista xeral da forma de onda - - - + Average frame rate Taxa media de fotogramas @@ -7950,7 +8275,7 @@ The loudness target is approximate and assumes track pregain and main output lev Nivel predeterminado de ampliación - + Displays the actual frame rate. Amosa a taxa de fotogramas actual. @@ -7985,7 +8310,7 @@ The loudness target is approximate and assumes track pregain and main output lev Graves - + Show minute markers on waveform overview @@ -8030,7 +8355,7 @@ The loudness target is approximate and assumes track pregain and main output lev Ganancia visual global - + 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. @@ -8097,22 +8422,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching Almacenamento na caché - + 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. A primeira vez que carga unha pista, Mixxx garda a caché da forma de onda no disco. Isto reduce o uso da CPU cando se está reproducindo en directo, mais require espazo adicional no disco. - + Enable waveform caching Activar o almacenamento na caché da forma de onda - + Generate waveforms when analyzing library Xerar formas de onda cando se analiza a fonoteca @@ -8128,7 +8453,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8158,12 +8483,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Limpar as formas de onda na caché @@ -8171,47 +8542,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Hardware de son - + Controllers Controladores - + Library Fonoteca - + Interface Interface - + Waveforms Formas de onda - + Mixer Mesturador - + Auto DJ DJ automático - + Decks - + Colors @@ -8246,47 +8617,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efectos - + 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> - + Vinyl Control Control do vinilo - + Live Broadcasting Difusión en directo - + Modplug Decoder Descodificador do Modplug @@ -8642,284 +9013,289 @@ This can not be undone! Resumo - + Filetype: Tipo de ficheiro: - + BPM: BPM: - + Location: Localización: - + Bitrate: Taxa de bits: - + Comments Comentarios - + BPM BPM - + Sets the BPM to 75% of the current value. Estabelece os BPM ao 75% do valor detectado. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Estabelece os BPM ao 50% do valor actual. - + Displays the BPM of the selected track. Amosar os BPM da pista seleccionada. - + Track # Pista num. - + Album Artist Interprete do álbum - + Composer Compositor - + Title Título - + Grouping Agrupación - + Key Clave - + Year Ano - + Artist Interprete - + Album Álbum - + Genre Xénero - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Estabelece os BPM ao 200% do valor actual. - + Double BPM Duplicar os BPM - + Halve BPM Dividir ÷2 os BPM - + Clear BPM and Beatgrid Limpar os BPM e a grella de ritmo - + Move to the previous item. "Previous" button Mover ao elemento anterior - + &Previous &Anterior - + Move to the next item. "Next" button Mover ao seguinte elemento - + &Next &Seguinte - + Duration: Duración: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color Cor - + Date added: - + Open in File Browser Abrir no navegador de ficheiros - + Samplerate: - + + Filesize: + + + + Track BPM: BPM da pista: - + 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. - + Assume constant tempo Asumir tempo constante - + Sets the BPM to 66% of the current value. Estabelece os BPM ao 66% do valor actual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Estabelece os BPM ao 150% do valor actual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Estabelece os BPM ao 133% do valor actual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Golpee seguindo o ritmo para estabelecer os BPM. - + Tap to Beat Toque para golpe de ritmo - + Hint: Use the Library Analyze view to run BPM detection. Consello: Use a vista de análise na fototeca para executar a detección de BPM. - + Save changes and close the window. "OK" button Gardar os cambios e pechar a xanela. - + &OK &Aceptar - + Discard changes and close the window. "Cancel" button Desbotar os cambios e pechar a xanela. - + Save changes and keep the window open. "Apply" button Gardar os cambios e manter a xanela aberta. - + &Apply A&plicar - + &Cancel &Cancelar - + (no color) @@ -9076,7 +9452,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9278,27 +9654,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9513,15 +9889,15 @@ 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 @@ -9533,57 +9909,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9591,62 +9967,62 @@ OpenGL. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9656,22 +10032,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9718,27 +10094,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found Non se atoparon os controis do Mixxx - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9798,22 +10174,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Non se atopan as pistas - + Hidden Tracks Pistas agachadas - - Export to Engine Prime + + Export to Engine DJ - + Tracks Pistas @@ -9821,209 +10197,250 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10039,13 +10456,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reprodución @@ -10055,32 +10472,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Desbloquear - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -10179,58 +10627,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 @@ -10344,69 +10792,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Auriculares - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier Prato - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Control do vinilo - + Microphone + Audio path indetifier Micrófono - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path Tipo de ruta descoñecido %1 @@ -10735,47 +11196,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11559,19 +12022,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Prato %1 @@ -11704,7 +12167,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Pasante @@ -11735,7 +12198,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11756,29 +12219,100 @@ Hint: compensates "chipmunk" or "growling" voices - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - Off + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11809,6 +12343,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11819,11 +12354,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11835,11 +12372,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11868,12 +12407,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11908,42 +12447,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12001,54 +12540,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12204,193 +12743,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx atopou un problema - + Could not allocate shout_t Non foi posíbel asignar shout_t - + Could not allocate shout_metadata_t Non foi posíbel asignar shout_metadata_t - + Error setting non-blocking mode: Produciuse un erro ao estabelecer o modo de sen bloqueo: - + Error setting tls mode: - + Error setting hostname! Produciuse un erro ao estabelecer o nome da máquina! - + Error setting port! Produciuse un erro ao estabelecer o porto! - + Error setting password! Produciuse un erro ao estabelecer o contrasinal! - + Error setting mount! Produciuse un erro ao estabelecer a montaxe! - + Error setting username! Produciuse un erro ao estabelecer o nome de usuario! - + Error setting stream name! Produciuse un erro ao estabelecer o nome do fluxo! - + Error setting stream description! Produciuse un erro ao estabelecer a descrición do fluxo! - + Error setting stream genre! Produciuse un erro ao estabelecer o xénero do fluxo! - + Error setting stream url! Produciuse un erro ao estabelecer o URL do fluxo! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! Produciuse un erro ao estabelecer o fluxo público! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Produciuse un erro ao estabelecer a taxa de bits - + Error: unknown server protocol! Erro: protocolo descoñecido do servidor! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Produciuse un erro ao estabelecer o protocolo! - + Network cache overflow Desbordamento da caché de rede - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Perdeuse a conexión co servidor de fluxo e fallaron ½1 intentos de reconexión. - + Lost connection to streaming server. Perdeuse a conexión co servidor de fluxo - + Please check your connection to the Internet. Comprobe a súa conexión a internet. - + Can't connect to streaming server Non é posíbel conectar co servidor de fluxo - + Please check your connection to the Internet and verify that your username and password are correct. Comprobe a súa conexión a internet e verifique que o seu nome de usuario e contrasinal son correctos. @@ -12398,7 +12937,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrado @@ -12406,23 +12945,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device un dispositivo - + An unknown error occurred Produciuse un erro descoñecido - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12607,7 +13146,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vinilo xirando @@ -12789,7 +13328,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Deseño da portada @@ -12979,243 +13518,243 @@ may introduce a 'pumping' effect and/or distortion. Mantén a ganancia do EQ de graves a cero cando esta activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Amosa o tempo da pista cargada en BPM (golpes por minuto). - + Tempo Tempo - + Key The musical key of a track Clave - + BPM Tap Toque de BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Cando toca repetidamente, axusta o BPM para que coincida con el BPM dos toques. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Toque de tempo e BPM - + Show/hide the spinning vinyl section. Amosar/agachar a sección do vinilo xiratorio. - + Keylock Bloqueo tonal - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Reproducir - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13438,941 +13977,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Gardar o banco de mostras - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Cargar o banco de mostras - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Súper mando - + Next Chain Seguinte cadea - + Previous Chain Cadea anterior - + Next/Previous Chain Cadea seguinte/anterior - + Clear Limpar - + Clear the current effect. - + Toggle Conmutar - + Toggle the current effect. - + Next Seguinte - + Clear Unit Limpar a unidade - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit Conmutador da unidade - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Anterior - + Switch to the previous effect. - + Next or Previous Seguinte ou anterior - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Axustar a grella do ritmo - + Adjust beatgrid so the closest beat is aligned with the current play position. Axusta grella de ritmo polo que o ritmo máis próximo aliñase coa reprodución actual. - - + + Adjust beatgrid to match another playing deck. Axustar a grella do ritmo para que coincida co outro prato en reprodución - + If quantize is enabled, snaps to the nearest beat. Se está activada a cuantización, acóplase ao ritmo máis próximo. - + Quantize Cuantizar - + Toggles quantization. Conmutar o modo de cuantización. - + Loops and cues snap to the nearest beat when quantization is enabled. Bucles e referencias axústanse ao ritmo próximo cando a cuantización está activada. - + Reverse Inverter - + Reverses track playback during regular playback. Inverte a reprodución da pista durante unha reprodución normal. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Reproducir/Deter - + Jumps to the beginning of the track. Salta ao principio da pista. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough Activa o paso do son - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14507,33 +15087,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. Reproduce ou detén a pista. - + (while playing) (cando reproduce) @@ -14553,215 +15133,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (cando está detida) - + Cue Referencia - + Headphone Auricular - + Mute Silenciar - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincronizase co primeiro prato (en orde numérica) que estea reproducindo unha pista e teña BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Se non hai un prato reproducindo, sincronizase co primeiro prato que teña BPM. - + 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. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Axuste de ton - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Gravar a mestura - + Toggle mix recording. - + Enable Live Broadcasting Activar a difusión en directo - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. A reprodución retomase cando corresponda na pista como se non houbera entrado no bucle. - + Loop Exit Saír do bucle - + Turns the current loop off. Apaga o bucle actual. - + Slip Mode Modo de esvaramento - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cando está activado, a reprodución continua silenciosa en segundo plano durante un bucle, inversión de xiro, rabuñada, etc. - + Once disabled, the audible playback will resume where the track would have been. Unha vez desactivado, a reprodución sonora retomarase na pista na que debera estar. - + Track Key The musical key of a track Clave da pista - + Displays the musical key of the loaded track. Amosa a clave musical da pista cargada. - + Clock Reloxo - + Displays the current time. Amosa o tempo actual. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14801,259 +15381,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Active o Control do vinilo desde e Menú -> Opcións. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Retroceso rápido - + Fast rewind through the track. Retroceder rápido na pista. - + Fast Forward Avance rápido - + Fast forward through the track. Avance rápido na pista. - + Jumps to the end of the track. Salta á fin da pista. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Control do ton - + Pitch Rate Taxa de ton - + Displays the current playback rate of the track. Amosa a taxa de reprodución actual da pista. - + Repeat Repetición - + When active the track will repeat if you go past the end or reverse before the start. Cando está activada, a pista repetirase se sobrepasa a fin ou cara atrás antes do inicio. - + Eject Expulsar - + Ejects track from the player. Expulsa a pista do reprodutor. - + Hotcue Referencia activa - + If hotcue is set, jumps to the hotcue. Se está estabelecida a referencia activa, salta á referencia activa. - + If hotcue is not set, sets the hotcue to the current play position. Se non está estabelecida a referencia activa, estabelece a referencia activa na posición de reprodución actual. - + Vinyl Control Mode Modo do Control do vinilo - + Absolute mode - track position equals needle position and speed. Modo absoluto - a posición da pista é igual a posición e velocidade da agulla. - + Relative mode - track speed equals needle speed regardless of needle position. Modo relativo - a velocidade da pista é igual á velocidade da agulla sen importar a posición da agulla. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo constante - a velocidade da pista é igual á última velocidade constante coñecida, independentemente da entrada da agulla. - + Vinyl Status Estado do vinilo - + Provides visual feedback for vinyl control status: Fornece información visual para o estado do control do vinilo: - + Green for control enabled. Verde para o control activado. - + Blinking yellow for when the needle reaches the end of the record. Amarelo intermitente para cando a agulla chega á fin do disco. - + Loop-In Marker Marcador do inicio do bucle - + Loop-Out Marker Marcador da fin do bucle - + Loop Halve Divide o bucle á metade - + Halves the current loop's length by moving the end marker. Divide á metade a lonxitude do bucle actual movendo o marcador da fin. - + Deck immediately loops if past the new endpoint. O prato reinicia inmediatamente o bucle de sobrepasarse o novo punto de fin. - + Loop Double Duplica a lonxitude do bucle - + Doubles the current loop's length by moving the end marker. Duplica a lonxitude do bucle actual movendo o marcador da fin. - + Beatloop Golpe de bucle - + Toggles the current loop on or off. Conmutar o apagado e activado do bucle actual. - + Works only if Loop-In and Loop-Out marker are set. Só funciona se se estabelecen as marcas de inicio fin do de bucle. - + Vinyl Cueing Mode Modo punto de referencia do vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina como se tratan os puntos de referencia no modo relativo do control do vinilo: - + Off - Cue points ignored. Apagado: Os puntos de referencia son ignorados. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Unha referencia: Se a agulla fose soltada despois dun punto de referencia, a pista vai buscar ese punto de referencia. - + Track Time Tempo da pista - + Track Duration Duración da pista - + Displays the duration of the loaded track. Amosa a duración da pista cargada. - + Information is loaded from the track's metadata tags. A información cargase desde as etiquetas de metadatos da pista. - + Track Artist Intérprete da pista - + Displays the artist of the loaded track. Amosa o intérprete da pista cargada. - + Track Title Título da pista - + Displays the title of the loaded track. Amosa o título da pista cargada. - + Track Album Álbum da pista - + Displays the album name of the loaded track. Amosa o álbum da pista cargada. - + Track Artist/Title Pista interprete/título - + Displays the artist and title of the loaded track. Amosa o interprete e o título da pista cargada. @@ -15061,12 +15641,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15281,47 +15861,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue - - Left-click: Use the old size or the current beatloop size as the loop size + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. - - Right-click: Use the current play position as loop end if it is after the cue + + Turn this cue into a saved backward jump (one shot loop). - + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 @@ -15446,323 +16054,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crear unha &nova lista de reprodución - + Create a new playlist Crear unha nova lista de reprodución - + Ctrl+n Ctrl+n - + Create New &Crate Crear un novo &caixón - + Create a new crate Crear un novo caixón - + Ctrl+Shift+N Ctrl+Maiús+N - - + + &View &Ver - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. É probábel que non admita todos os temas. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Amosar a sección do micrófono - + Show the microphone section of the Mixxx interface. Amosa a sección do micrófono na interface do Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Amosar a sección do Control do vinilo - + Show the vinyl control section of the Mixxx interface. Amosa a sección do control do vinilo na interface do Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Amosar a escoita previa do prato - + Show the preview deck in the Mixxx interface. Amosar a escoita previa do prato na interface do Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Amosa o deseño da portada - + Show cover art in the Mixxx interface. Amosar o deseño da portada na interface do Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar a 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 - + Space Menubar|View|Maximize Library Espazo - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pantalla completa - + Display Mixxx using the full screen Amosa o Mixxx usando a pantalla completa - + &Options &Opcións - + &Vinyl Control &Control do vinilo - + Use timecoded vinyls on external turntables to control Mixxx Usar vinilos con código de tempo en xira discos externos para controlar Mixxx - + Enable Vinyl Control &%1 Activar o Control do vinilo &%1 - + &Record Mix &Gravar a mestura - + Record your mix to a file Grava a súa mestura a un ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar a &difusión en directo - + Stream your mixes to a shoutcast or icecast server Difundir as súas mesturas a un servidor Shoutcast ou Icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar os atallos do &teclado - + Toggles keyboard shortcuts on or off Conmutar os atallos de teclado activados ou desactivados - + Ctrl+` Ctrl+` - + &Preferences &Preferencias - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambiar os axustes do Mixxx (p.ex. reprodución, MIDI, controles) - + &Developer &Desenvolvedor - + &Reload Skin &Volver cargar o tema - + Reload the skin Volver cargar o tema - + Ctrl+Shift+R Ctrl+Maiús+R - + Developer &Tools &Ferramentas de desenvolvemento - + Opens the developer tools dialog Abre o cadro de diálogo das ferramentas de desenvolvemento - + Ctrl+Shift+T Ctrl+Maiús+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Maiús+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Maiús+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Maiús+D - + &Help &Axuda - + Show Keywheel menu title @@ -15779,74 +16427,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support Axuda da &comunidade - + Get help with Mixxx Obter axuda con Mixxx - + &User Manual Manual do &usuario - + Read the Mixxx user manual. Lea o manual do usuario do Mixxx. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Traducir este aplicativo - + Help translate this application into your language. Axude a traducir este aplicativo ao seu idioma. - + &About &Sobre - + About the application Sobre o aplicativo @@ -15854,25 +16502,25 @@ This can not be undone! WOverview - + Passthrough 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 @@ -15881,25 +16529,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Buscar - + Clear input @@ -15910,169 +16546,163 @@ This can not be undone! Buscar... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Atallo + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Clave - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Interprete - + Album Artist Interprete do álbum - + Composer Compositor - + Title Título - + Album Álbum - + Grouping Agrupación - + Year Ano - + Genre Xénero - + Directory - + &Search selected @@ -16080,620 +16710,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck Prato - + Sampler Mostras - + Add to Playlist Engadir á lista de reprodución - + Crates Caixóns - + Metadata Metadatos - + Update external collections - + Cover Art Deseño da portada - + Adjust BPM - + Select Color - - + + Analyze Analizar - - + + Delete Track Files - + 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) Engadir á cola do DJ automático (trocar) - + Preview Deck Escoita previa do prato - + Remove Retirar - + Remove from Playlist - + Remove from Crate - + Hide from Library Agachar da fonoteca - + Unhide from Library Amosar da fonoteca - + Purge from Library Purgar da fonoteca - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Propiedades - + Open in File Browser Abrir no navegador de ficheiros - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Cualificación - + Cue Point - - + + Hotcues Referencias activas - + Intro - + Outro - + Key Clave - + ReplayGain ReplayGain - + Waveform - + Comment Comentario - + All Todas - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Bloquear os BPM - + Unlock BPM Desbloquear os BPM - + Double BPM Duplicar os BPM - + Halve BPM Dividir ÷2 os BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Prato %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Cancelar - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Pechar - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16709,37 +17359,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16747,37 +17397,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16785,12 +17435,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Amosar ou agachar as columnas. - + Shuffle Tracks @@ -16798,52 +17448,52 @@ This can not be undone! 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. @@ -16854,68 +17504,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Examinar - + Export directory - + Database version - + Export Exportar - + Cancel Cancelar - + Export Library to Engine DJ "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16936,7 +17596,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16946,23 +17606,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -16987,6 +17647,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -16995,4 +17673,27 @@ Click OK to exit. Non hai ningún efecto cargado + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_hi_IN.ts b/res/translations/mixxx_hi_IN.ts index 24ee16559a5e..e938c5f3f053 100644 --- a/res/translations/mixxx_hi_IN.ts +++ b/res/translations/mixxx_hi_IN.ts @@ -3643,32 +3643,32 @@ trace - Above + Profiling messages 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. @@ -5633,6 +5633,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6224,62 +6234,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes इस स्किन में रंग परियोजना का समर्थन नहीं है - + Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -9560,57 +9570,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9683,22 +9693,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9971,129 +9981,129 @@ Do you really want to overwrite it? - + 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? - + Scan took %1 - + No changes detected. - - + + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10115,7 +10125,7 @@ Do you want to select an input device? - + Playlists @@ -10156,27 +10166,27 @@ Do you want to select an input device? - + 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 नई प्लेलिस्ट बनाएं @@ -11800,7 +11810,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -15548,323 +15558,353 @@ This can not be undone! - Create &New Playlist + Search in Current View... + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + + Create &New Playlist + + + + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title @@ -15881,74 +15921,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15983,25 +16023,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -16012,92 +16040,86 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history @@ -16905,52 +16927,52 @@ This can not be undone! 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. diff --git a/res/translations/mixxx_hu.qm b/res/translations/mixxx_hu.qm index 13e00e7c7ea7..d0769d9de2e9 100644 Binary files a/res/translations/mixxx_hu.qm and b/res/translations/mixxx_hu.qm differ diff --git a/res/translations/mixxx_hu.ts b/res/translations/mixxx_hu.ts index 67e16b4bea85..6af0f66880d0 100644 --- a/res/translations/mixxx_hu.ts +++ b/res/translations/mixxx_hu.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Rekeszek - + Enable Auto DJ Auto DJ engedélyezése - + Disable Auto DJ Auto DJ letiltása - + Clear Auto DJ Queue - Auto DJ lista törlése + Auto DJ-lista ürítése - + Remove Crate as Track Source Rekesz, mint zene forrás eltávoltása - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? Biztosan el akarod távolítani az összes számot az Auto DJ-listából? - + This can not be undone. Ezt a műveletet nem lehet visszavonni. - + Add Crate as Track Source Rekesz, mint zene forrás hozzáadása @@ -223,7 +231,7 @@ - + Export Playlist Lejátszólista exportálása @@ -277,13 +285,13 @@ - + 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: @@ -295,15 +303,15 @@ Do you really want to delete playlist <b>%1</b>? - Biztos törölni akarod a(z) „%1” lejátszólistát? + Biztos törölni akarod a(z) <b>„%1”</b> lejátszólistát? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Időbélyeg @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nem lehet a számot betölteni. @@ -362,7 +370,7 @@ Csatornák - + Color Szín @@ -377,7 +385,7 @@ Szerző - + Cover Art Borító @@ -387,7 +395,7 @@ Hozzáadás dátuma - + Last Played Legutóbb játszott @@ -417,7 +425,7 @@ Hangnem - + Location Hely @@ -427,7 +435,7 @@ Áttekintés - + Preview Előnézet @@ -467,7 +475,7 @@ Év - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Kép betöltése... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Nem használható a biztonságos jelszótároló: Kulcstartó megnyitása sikertelen. - + Secure password retrieval unsuccessful: keychain access failed. Biztonságos jelszó visszanyerés sikertelen: Kulcshozzáférés nem sikerült - + Settings error Beállítási hiba - + <b>Error with settings for '%1':</b><br> <b>Hiba a '%1' beállításokban:</b><br> @@ -592,7 +600,7 @@ - + Computer Számítógép @@ -612,17 +620,17 @@ 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 - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: A Mixxx egy nyílt forráskódú DJ szoftver. Bővebb információkért lásd: - + Starts Mixxx in full-screen mode Teljes képernyős módban indítja el a Mixxx-et - + Use a custom locale for loading translations. (e.g 'fr') - + 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. Elindítja az Auto DJ-t a Mixxx indításakor. - + Rescans the library when Mixxx is launched. Újra átvizsgálja a könyvtárat a Mixxx indításakor. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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] Színek használata a konzolos kimeneten. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -861,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 Felülírja az alkalmazás alapértelmezett GUI stílusát. Lehetséges értékek: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -979,2566 +992,2747 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Fejhallgató kimenet - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 - + Sampler %1 Sampler %1 - + Preview Deck %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Auxiliary %1 - + Reset to default Alapértelmezés visszaállítása - + Effect Rack %1 Effekt állvány %1 - + Parameter %1 Paraméter %1 - + Mixer Keverő - - + + Crossfader Crossfader - + Headphone mix (pre/main) Fejhallgató keverés (elő/fő) - + Toggle headphone split cueing - + Headphone delay Fejhallgató késleltetés - + Transport Lejátszásvezérlés - + Strip-search through track Csupaszító keresés a zeneszámok között - + Play button Lejátszás gomb - - + + Set to full volume Teljes hangerő - - + + Set to zero volume Nulla hangerő - + Stop button Megállít - + Jump to start of track and play Ugrás a szám elejére és lejátszás - + Jump to end of track Ugrás a szám végére - + Reverse roll (Censor) button Visszafele görgetés (Cenzúra) gomb - + Headphone listen button Fejhallgató belehallgatás gomb - - + + Mute button Némítás - + Toggle repeat mode Ismétlés mód - - + + 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 - + Toggle slip mode Csúsztató mód ki/be - - + + BPM BPM - + Increase BPM by 1 BPM növelése 1-gyel - + Decrease BPM by 1 BPM csökkentése 1-gyel - + Increase BPM by 0.1 BPM növelése 0,1-gyel - + Decrease BPM by 0.1 BPM csökkentése 0,1-gyel - + BPM tap button BPM koppintás gomb - + Toggle quantize mode Kvantálási mód kapcsolása - + One-time beat sync (tempo only) Egyszeres ütemigazítás (csak BPM) - + One-time beat sync (phase only) Egyszeres ütemigazítás (csak fázis) - + Toggle keylock mode Hangszín zár kapcsoló - + Equalizers 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 Ugrás a(z) % 1 hotcue-hoz - + Jump to hotcue %1 and stop Ugrás a(z) hotcue-hoz és 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 - + Slot %1 - + Headphone Mix Fejhallgató Mix - + Headphone Split Cue Megosztott fejhallgató - + Headphone Delay Fejhallgató Késleltetés - + Play Lejátszás - + Fast Rewind Gyors hátracsévélés - + Fast Rewind button Gyors hátracsévélés gomb - + Fast Forward Gyors előrecsévélés - + Fast Forward button Gyors előrecsévélés gomb - + Strip Search Szalag keresés - + Play Reverse Lejátszás visszafelé - + Play Reverse button Lejátszás visszafelé gomb - + Reverse Roll (Censor) Visszafele játszás csúsztatással (Cenzúra) - + Jump To Start Ugrás a kezdőponthoz - + Jumps to start of track A szám elejére ugrik - + Play From Start Lejátszás a legelejétől - + Stop Megállítás - + Stop And Jump To Start Megállítás és ugrás a kezdőponthoz - + Stop playback and jump to start of track Megállítja a lejátszást és a szám elejére ugrik - + Jump To End Ugrás a végponthoz - + Volume Hangerő - - - + + + Volume Fader Hangerő Fader - - + + Full Volume Teljes hangerő - - + + Zero Volume Némítás - + Track Gain Szám erősítése - + Track Gain knob - - + + Mute Némítás - + Eject Kiadás - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode Ismétlés módja - + Slip Mode Csúsztató mód - - + + Orientation Tájolás - - + + Orient Left Balra igazítás - - + + Orient Center Középre igazítás - - + + Orient Right Jobbra igazítás - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM gomb - + Adjust Beatgrid Faster +.01 Ütemrács felgyorsítása +.01 - + Increase track's average BPM by 0.01 Szám átlagos BPM-jének növelése 0.01-gyel - + Adjust Beatgrid Slower -.01 Ütemrács lelassítása -.01 - + Decrease track's average BPM by 0.01 Szám átlagos BPM-jének csökkentése 0.01-gyel - + Move Beatgrid Earlier Ütemrács csúsztatása korábbra - + Adjust the beatgrid to the left Ütemrács mozgatása balra - + Move Beatgrid Later Ütemrács csúsztatása későbbre - + Adjust the beatgrid to the right Ütemrács mozgatása jobbra - + Adjust Beatgrid Ütemrács igazítása - + Align beatgrid to current position Ütemrács igazítása a jelenlegi pozícióra - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. Ütemrács igazítása másik futó lemezjátszóhoz. - + Quantize Mode Kvantált mód - + Sync Szinkron - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 - + High EQ Magas EQ - + Mid EQ Közép EQ - - + + Main Output Fő kimenet - + Main Output Balance Fő kimenet egyensúlya - + Main Output Delay Fő kimenet késleltetése - + Main Output Gain Fő kimenet erősítése - + Low EQ 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 Hotcue %1 törlés - + Set Hotcue %1 Hotcue %1 beállítás - + Jump To Hotcue %1 Ugrás a %1 Hotcue - + Jump To Hotcue %1 And Stop - + Jump To Hotcue %1 And Play - + Preview Hotcue %1 Hotcue %1 előnézet - + 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 Unit Egység ürítése - + Clear effect unit - + Toggle Unit Egység kapcsolása - + Dry/Wet Száraz/nedves - + Adjust the balance between the original (dry) and processed (wet) signal. - + Super Knob Super potméter - + Next Chain Következő lánc - + Assign Hozzárendelés - + Clear Törlés - + Clear the current effect A jelenlegi effekt törlése - + Toggle - + Toggle the current effect - + Next Következő - + Switch to next effect Váltás a következő effektre - + Previous Előző - + Switch to the previous effect Váltás az előző effektre - + Next or Previous Következő vagy előző - + Switch to either next or previous effect - - + + Parameter Value Paraméter érték - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain Előerősítés - + 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 - + 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 Hullámforma kicsinyítése - + Headphone Gain Fejhallgató erősítés - + Headphone gain Fejhallgató erősítés - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + Playback Speed Lejátszási sebesség - + 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 növelése átmenetileg - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed Sebesség ideiglenes csökkentése - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Kinézet - + Controller - + Crossfader / Orientation - + Main Output gain Fő kimenet erősítése - + Main Output balance Fő kimenet egyensúlya - + Main Output delay Fő kimenet késleltetése - + Headphone Fejhallgató - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid BPM / Ütemrács - + Halve BPM BPM felezése - + Multiply current BPM by 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Jelenlegi BPM 0.666-szorosa - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM BPM duplázása - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 Sebesség - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats Ütemek ismétlése - + Loop Roll Beats Ütemek ismétlése csúsztatással - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 billentyűket 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 billentyűket 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + Go to the currently selected item Ugrás az utoljára kiválasztott elemhez - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button Gyors effekt engedély gomb - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing - + Super Knob (control effects' Meta Knobs) - + Mix Mode Toggle Mix mód kiválsztás - + Toggle effect unit between D/W and D+W modes - + Next chain preset Következő lánc beállítás - + Previous Chain Előző lánc - + Previous chain preset Előző lánc beállítás - + Next/Previous Chain Következő/előző lánc - + Next or previous chain preset - - + + Show Effect Parameters Effekt paraméterek mutatása - + 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 Kikrofon ki/be - + Microphone on/off Mikrofon be/ki - + Toggle microphone ducking mode (OFF, AUTO, MANUAL) - + Auxiliary On/Off AUX ki/be - + 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 Felhasználói felület - + Samplers Show/Hide Sampler mutat/elrejt - + Show/hide the sampler section Sampler szekció mutat/elrejt - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mikrofon és külső bemenetek mutatása/rejtése - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - - Navigate Through Track Colors + + Navigate Through Track Colors + + + + + Select either next or previous color in the palette for the loaded track. + + + + + Start/Stop Live Broadcasting + + + + + Stream your mix over the Internet. + + + + + Start/stop recording your mix. + + + + + + Deck %1 Stems + + + + + + 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 + Hanghullámforma zoom + + + + Waveform Zoom + Hanghullámforma 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 + + + + + Controller + + + Unknown + + + + + ControllerHidReportTabsManager + + + Read - - Select either next or previous color in the palette for the loaded track. + + Send - - Start/Stop Live Broadcasting + + Payload Size - - Stream your mix over the Internet. + + bytes - - Start/stop recording your mix. + + Byte Position - - - Samplers + + Bit Position - - Vinyl Control Show/Hide + + Bit Size - - Show/hide the vinyl control section + + Logical Min - - Preview Deck Show/Hide + + Logical Max - - Show/hide the preview deck + + Value - - Toggle 4 Decks + + Physical Min - - Switches between showing 2 decks and 4 decks. + + Physical Max - - Cover Art Show/Hide (Decks) + + Unit Scaling - - Show/hide cover art in the main decks + + Unit - - Vinyl Spinner Show/Hide + + Abs/Rel - - Show/hide spinning vinyl widget + + + Wrap - - Vinyl Spinners Show/Hide (All Decks) + + + Linear - - Show/Hide all spinnies + + + Preferred - - Toggle Waveforms + + + Null - - Show/hide the scrolling waveforms. + + + Volatile - - Waveform zoom - Hanghullámforma zoom - - - - Waveform Zoom - Hanghullámforma zoom + + Usage Page + - - Zoom waveform in + + Usage - - Waveform Zoom In + + Relative - - Zoom waveform out + + Absolute - - Star Rating Up + + No Wrap - - Increase the track rating by one star + + Non Linear - - Star Rating Down + + No Preferred - - Decrease the track rating by one star + + No Null - - - Controller - - Unknown + + Non Volatile @@ -3644,32 +3838,32 @@ trace - Above + Profiling messages 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. Probáld resetelni a controllered - + Controller Mapping Error - + The mapping for your controller "%1" is not working properly. - + The script code needs to be fixed. @@ -3677,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3730,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Zárolás @@ -3760,7 +3954,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3777,22 +3971,22 @@ trace - Above + Profiling messages 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 @@ -3802,28 +3996,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U lejátszási lista (*.m3u) @@ -3844,17 +4038,17 @@ trace - Above + Profiling messages A Rekeszekkel tudod a zenéidet úgy rendszerezni, ahogy szeretnéd! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3949,12 +4143,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4740,122 +4934,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono Mono - + Stereo Sztereó - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Az akció nem sikerült - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4868,27 +5079,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing Mixxx Icecast tesztelés - + Public stream Nyilvános stream - + http://www.mixxx.org - + Stream name Stream neve - + 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. @@ -4928,67 +5139,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website Weboldal - + Live mix Élő mix - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Műfaj - + Use UTF-8 encoding for metadata. - + Description Leírás @@ -5014,42 +5230,42 @@ Two source connections to the same server that have the same mountpoint can not Csatornák - + Server connection Szerver kapcsolat - + Type Típus - + Host Kiszolgáló - + Login Bejelentkezés - + Mount Felcsatol - + Port Port - + Password Jelszó - + Stream info @@ -5059,17 +5275,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5128,13 +5344,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color Szín @@ -5179,17 +5396,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5197,113 +5419,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Nincs - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5321,100 +5543,105 @@ Apply settings and continue? Engedélyezve - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add Hozzáadás - - + + Remove Eltávolítás @@ -5434,17 +5661,17 @@ Apply settings and continue? - + Mapping Info - + Author: - + Name: @@ -5454,28 +5681,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Összes törlése - + Output Mappings @@ -5490,21 +5717,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5634,6 +5861,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5663,137 +5900,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx mód - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (félhang) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6244,62 +6481,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6526,67 +6763,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + Choose a music directory Válassz zenei gyűjtemény könyvtárat - + Confirm Directory Removal Könyvtár Törlésének Megerősítse - + 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 Sávok Változatlanul Hagyása - + Relink music directory to new location - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font @@ -6635,262 +6902,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Zenei fájlformátumok - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) >1200 képpont (ha elérhető) - + 1200 px (if available) 1200 képpont (ha elérhető) - + 500 px 500 képpont - + 250 px 250 képpont - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms ms - + Load track to next available deck - + External Libraries Külső könyvtárak - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library Rhythmbox könyvtár megjelenítése - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Banshee könyvtár megjelenítése - + Show iTunes Library iTunes könyvtár megjelenítése - + Show Traktor Library Traktor könyvtár megjelenítése - + Show Rekordbox Library Rekordbox könyvtár megjelenítése - + Show Serato Library Serato könyvtár megjelenítése - + All external libraries shown are write protected. Minden megjelenített külső könyvtár írásvédett. @@ -7235,33 +7507,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7279,43 +7551,55 @@ and allows you to pitch adjust them for harmonic mixing. Tallózás... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Minőség - + Tags Címkék - + Title Cím - + Author Szerző - + Album Album - + Output File Format - + Compression - + Lossy @@ -7330,12 +7614,12 @@ and allows you to pitch adjust them for harmonic mixing. Könyvtár: - + Compression Level - + Lossless @@ -7466,172 +7750,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled Letiltva - + Enabled Engedélyezve - + Stereo Sztereó - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error @@ -7698,17 +7987,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 @@ -7733,12 +8027,12 @@ The loudness target is approximate and assumes track pregain and main output lev Bemenet - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. @@ -7768,7 +8062,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Downsize your audio buffer to improve Mixxx's responsiveness. @@ -7815,7 +8109,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7851,46 +8145,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Jel minőség - + http://www.xwax.co.uk - + Powered by xwax - + Hints Tippek - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7898,58 +8197,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7967,22 +8266,17 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. - - Normalize waveform overview - - - - + Average frame rate @@ -7998,7 +8292,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -8033,7 +8327,7 @@ The loudness target is approximate and assumes track pregain and main output lev Alacsony - + Show minute markers on waveform overview @@ -8078,7 +8372,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + 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. @@ -8145,22 +8439,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8176,7 +8470,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8206,12 +8500,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8700,7 +9040,7 @@ This can not be undone! BPM: - + Location: Hely: @@ -8715,27 +9055,27 @@ This can not be undone! Megjegyzések: - + BPM BPM - + Sets the BPM to 75% of the current value. A BPM-et a jelenlegi érték 75%-ára állítja - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. A BPM-et a jelenlegi érték 50%-ára állítja - + Displays the BPM of the selected track. A kiválasztott szám BPM értékét mutatja. @@ -8790,49 +9130,49 @@ This can not be undone! Műfaj - + ReplayGain: - + Sets the BPM to 200% of the current value. A BPM-et a jelenlegi érték 200%-ára állítja - + Double BPM BPM duplázása - + Halve BPM BPM felezése - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next @@ -8857,12 +9197,12 @@ This can not be undone! Szín - + Date added: - + Open in File Browser Megnyitás fájlkezelőben @@ -8872,102 +9212,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: Zene BPM - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Alkalmaz - + &Cancel &Mégsem - + (no color) @@ -9124,7 +9469,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9326,27 +9671,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9561,15 +9906,15 @@ 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 @@ -9580,57 +9925,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9638,62 +9983,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9703,22 +10048,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9855,12 +10200,12 @@ Do you really want to overwrite it? - + Export to Engine DJ - + Tracks @@ -9868,37 +10213,37 @@ 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 @@ -9908,209 +10253,209 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10126,13 +10471,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Zárolás - - + + Playlists Lejátszólista @@ -10142,58 +10487,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Feloldás - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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. Megeshet, hogy ki kell hagynod pár számot az előkészített lejátszólistádból, vagy egyéb számokat is be kell fűznöd, hogy fenntartsd a buli energiaszintjét. - + 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 @@ -10292,58 +10642,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 @@ -10457,69 +10807,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Fülhallgatók - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Bakelit vezérlés - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10848,47 +11211,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync Szinkron - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11673,14 +12038,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11818,7 +12183,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11886,15 +12251,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11923,6 +12359,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11933,11 +12370,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11949,11 +12388,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11982,12 +12423,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12022,42 +12463,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12318,193 +12759,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem A Mixxx problémába ütközött - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. Kérlek ellenőrizd az internet kapcsolatodat! - + Can't connect to streaming server Nem lehet csatlakozni a stream szerverhez - + Please check your connection to the Internet and verify that your username and password are correct. Kérlek ellenőrizd az internet kapcsolatodat és bizonyosodj meg róla, hogy a felhasználónet és a jelszót pontosan adtad meg! @@ -12512,7 +12953,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12520,23 +12961,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device - + An unknown error occurred - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12721,7 +13162,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12903,7 +13344,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Borító @@ -13093,243 +13534,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track Billentyű - + BPM Tap BPM gomb - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock Hangnemzár - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Lejátszás - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13552,947 +13993,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters Effekt paraméterek mutatása - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Super potméter - + Next Chain Következő lánc - + Previous Chain Előző lánc - + Next/Previous Chain Következő/előző lánc - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Következő - + Clear Unit Egység ürítése - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit Egység kapcsolása - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Előző - + Switch to the previous effect. - + Next or Previous Következő vagy előző - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Ütemrács igazítása - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. Ütemrács igazítása másik futó lemezjátszóhoz. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14627,33 +15103,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14673,215 +15149,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue Cue - + Headphone Fejhallgató - + Mute Némítás - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Hangmagasság állítás - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Mix felvétele - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit Ismétlésből kilép - + Turns the current loop off. - + Slip Mode Csúsztató mód - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14921,259 +15397,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Gyors hátracsévélés - + Fast rewind through the track. - + Fast Forward Gyors előrecsévélés - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Kiadás - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode Bakelit vezérlés mód - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve Ismétlés felezése - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double Ismétlés kétszerezése - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15401,47 +15877,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15566,323 +16070,363 @@ This can not be undone! - Create &New Playlist + Search in Current View... + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + + Create &New Playlist + + + + Create a new playlist Új lejátszólista létrehozása - + Ctrl+n - + Create New &Crate - + Create a new crate Új rekesz készítése - + Ctrl+Shift+N - - + + &View &Nézet - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + 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. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Teljes képernyő - + Display Mixxx using the full screen A Mixxx teljes képernyőben mutatása - + &Options &Opciók - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx Használjon időkódos lemezeket a külső lemezjátszókon a Mixxx vezérléséhez - + Enable Vinyl Control &%1 - + &Record Mix &Mix felvétele - + Record your mix to a file A mix rögzítése fileba - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server Közvetítse a mixeit shoutcast vagy icecast serverre - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences &Testreszabás - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &Súgó - + Show Keywheel menu title @@ -15899,74 +16443,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. A Mixxx felhasználói beállítások könyvtár megnyitása. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application Az alkalmazásról @@ -15974,25 +16518,25 @@ This can not be undone! WOverview - + 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 @@ -16001,25 +16545,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -16030,92 +16562,86 @@ This can not be undone! Keresés... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history @@ -16200,625 +16726,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Hozzáadás lejátszólistához - + Crates Rekeszek - + Metadata - + Update external collections - + Cover Art Borító - + Adjust BPM - + Select Color - - + + Analyze Elemzés - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Eltávolítás - + Remove from Playlist Eltávolítás a lejátszólistából - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser Megnyitás fájlkezelőben - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Értékelés - + Cue Point - - + + Hotcues Hotcue pontok - + Intro - + Outro - + Key Billentyű - + ReplayGain Visszajátszás hangerősítése - + Waveform - + Comment Megjegyzés - + All Mind - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPM zárolása - + Unlock BPM BPM zárolás feloldása - + Double BPM BPM duplázása - + Halve BPM BPM felezése - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Mégsem - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. A Track fájl törölve lett a meghajtóról, és kitisztítva a Mixxx adatbázisból. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk Ez a track fájl nem törölhető a meghajtóról - + Remaining Track File(s) Hátralévő Track Fájl(ok) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16872,37 +17413,37 @@ This can not be undone! WTrackTableView - + Confirm track hide Track elrejtés megerősítése - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? Biztosan el akarod távolítani a kijelölt számokat ebből a lejátszólistából? - + Don't ask again during this session Ne kérdezzen rá többször ebben a munkamenetben - + Confirm track removal @@ -16910,12 +17451,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Oszlop mutatása vagy elrejtése. - + Shuffle Tracks @@ -16953,22 +17494,22 @@ This can not be undone! - + 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. @@ -17122,6 +17663,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17130,4 +17689,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_hy.ts b/res/translations/mixxx_hy.ts index 32191e39eb15..26655fb58d97 100644 --- a/res/translations/mixxx_hy.ts +++ b/res/translations/mixxx_hy.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ Ավտո DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist Փլեյլիստի էքսպորտ @@ -258,13 +258,13 @@ - + Playlist Creation Failed Չհաջողվեց ստեղծել փլեյլիստ - + An unknown error occurred while creating playlist: Անհայտ սխալ ծագեց փլեյլիստի ստեղծման ժամանակ՝ @@ -279,12 +279,12 @@ - + 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) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp Թայմստեմպ @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Չկարողացա բացել երգը @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Ալբոմ - + Album Artist - + Artist Արտիստ - + Bitrate Բիթրեյթ - + BPM BPM - + Channels - + Color - + Comment Մեկնաբանություն - + Composer Կոմպոզիտոր - + Cover Art - + Date Added Ավելացման օր - + Last Played - + Duration Տևողություն - + Type Տեսակ - + Genre Ժանր - + Grouping - + Key Բանալի - + Location Վայր - + Preview Նախադիտում - + Rating Վարկանիշ - + ReplayGain - + Samplerate - + Played Երգված - + Title Անուն - + Track # Երգ # - + Year Տարի - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links Ավելացնել Արագ հղումներում - + Remove from Quick Links Հեռացնել Արագ հղումներից - + Add to Library - + Refresh directory tree - + Quick Links - - + + Devices - + Removable Devices - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Լոք @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Ավտո DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Վերանվանել - + Export - + Delete - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Երգ # - + Album Artist - + Composer Կոմպոզիտոր - + Title Անուն - + Grouping - + Key Բանալի - + Year Տարի - + Artist Արտիստ - + Album Ալբոմ - + Genre Ժանր @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Լոք - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Լոք - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Բանալի - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Արտիստ - + Album Artist - + Composer Կոմպոզիտոր - + Title Անուն - + Album Ալբոմ - + Grouping - + Year Տարի - + Genre Ժանր - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) Ավելացնել ավտո DJ-ի հերթին - + Add to Auto DJ Queue (top) Ավելացնել ավտո DJ-ի հերթին - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Ջնջել - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Վարկանիշ - + Cue Point - + Hotcues - + Intro - + Outro - + Key Բանալի - + ReplayGain - + Waveform - + Comment Մեկնաբանություն - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_id.qm b/res/translations/mixxx_id.qm index 63c46250dc8b..1e841013b713 100644 Binary files a/res/translations/mixxx_id.qm and b/res/translations/mixxx_id.qm differ diff --git a/res/translations/mixxx_id.ts b/res/translations/mixxx_id.ts index 42d1c31e39b5..60ab85e9ed7f 100644 --- a/res/translations/mixxx_id.ts +++ b/res/translations/mixxx_id.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -147,28 +147,28 @@ 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 @@ -178,12 +178,12 @@ Ganti Nama - + Lock Kunci - + Duplicate Duplikasi @@ -204,24 +204,24 @@ 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 @@ -231,70 +231,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -302,12 +309,12 @@ BaseSqlTableModel - + # # - + Timestamp Penanda waktu @@ -315,7 +322,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tidak dapat memuat lagu @@ -323,137 +330,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Artis dari Album - + Artist Artis - + Bitrate Bitrasi - + BPM DPM - + Channels - + Color - + Comment Komentar - + Composer Penyusun - + Cover Art Gambar - + Date Added Tanggal Ditambahkan - + Last Played - + Duration Durasi - + Type Jenis - + Genre Aliran - + Grouping Kelompok - + Key Kunci - + Location Tempat - + + Overview + + + + Preview Pratinjau - + Rating Penilaian - + ReplayGain - + Samplerate - + Played Dimainkan - + Title Judul - + Track # Lagu # - + Year Tahun - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -541,67 +553,77 @@ BrowseFeature - + Add to Quick Links Tambahkan ke Link Cepat - + Remove from Quick Links Hapus dari Link Cepat - + Add to Library Tambahkan ke Library - + Refresh directory tree - + Quick Links Link Cepat - - + + Devices Perangkat - + Removable Devices Perangkat Removable - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -747,87 +769,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -837,27 +859,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1039,13 +1066,13 @@ trace - Above + Profiling messages - + Set to full volume buat jadi volume maksimal - + Set to zero volume buat jadi tidak ada volume @@ -1070,13 +1097,13 @@ trace - Above + Profiling messages - + Headphone listen button Tombol dengar headphone - + Mute button Tombol diam @@ -1087,25 +1114,25 @@ trace - Above + Profiling messages - + 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 @@ -1146,22 +1173,22 @@ trace - Above + Profiling messages Tombol sadap BPM - + Toggle quantize mode Mode pengalihan quantisasi - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode Aktifkan mode Keylock @@ -1171,193 +1198,193 @@ trace - Above + Profiling messages 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 @@ -1473,20 +1500,20 @@ trace - Above + Profiling messages - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1502,7 +1529,7 @@ trace - Above + Profiling messages - + Mute @@ -1513,7 +1540,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1534,25 +1561,25 @@ trace - Above + Profiling messages - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1622,82 +1649,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1738,451 +1765,451 @@ trace - Above + Profiling messages - + 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 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 - + 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 @@ -2197,102 +2224,102 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2444,1041 +2471,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3593,32 +3642,32 @@ trace - Above + Profiling messages 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. @@ -3662,13 +3711,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Hapus - + Create New Crate @@ -3678,132 +3727,132 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) - + 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. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Peti memberi kebebasan Anda mengatur musik seperti yang diinginkan! - + Do you really want to delete crate <b>%1</b>? - + 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 @@ -3898,12 +3947,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4022,72 +4071,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Detik - + Auto DJ Fade Modes Full Intro + Outro: @@ -4118,80 +4167,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto DJ - + Shuffle Acak - + 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. @@ -4414,37 +4463,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4483,17 +4532,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -5146,113 +5195,113 @@ associated with each key. DlgPrefController - + Apply device settings? Terapkan pengaturan perangkat? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Tidak ada - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5265,105 +5314,105 @@ Apply settings and continue? - + Enabled - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add Tambah - - + + Remove Hapus @@ -5378,22 +5427,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5403,28 +5452,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Hapus Semua - + Output Mappings @@ -5583,6 +5632,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6174,62 +6233,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7396,173 +7455,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7580,131 +7638,131 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7859,27 +7917,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7892,250 +7951,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate Tingkat bingkai - - Displays which OpenGL version is supported by the current platform. - Menampilkan versi OpenGL yang didukung oleh platform saat ini. + + OpenGL Status + - - Waveform - + + Displays which OpenGL version is supported by the current platform. + Menampilkan versi OpenGL yang didukung oleh platform saat ini. - + Normalize waveform overview - + Average frame rate - + Visual gain Tambah visual - + Default zoom level Waveform zoom - + Displays the actual frame rate. Menampilkan frame rate yang sebenarnya. - + Visual gain of the middle frequencies Tambahan visual suntuk frekuensi tengah - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Rendah - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies Tambahan visual suntuk frekuensi tinggi - + Visual gain of the low frequencies Tambahan visual suntuk frekuensi rendah - + High Tinggi - + Global visual gain Tambahan visual global - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. Sinkronkan tingkat tanjak di semua tampilan bentuk gelombang. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8143,47 +8208,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library Pustaka - + Interface - + Waveforms - + Mixer Mixer - + Auto DJ Auto DJ - + Decks - + Colors @@ -8218,47 +8283,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efek - + 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> - + Vinyl Control Kontrol Vinil - + Live Broadcasting - + Modplug Decoder @@ -8291,22 +8356,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8614,284 +8679,284 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM DPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Lagu # - + Album Artist Artis dari Album - + Composer Penyusun - + Title Judul - + Grouping Kelompok - + Key Kunci - + Year Tahun - + Artist Artis - + Album Album - + Genre Aliran - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid Hapus DPM dan Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Buka di Browser Berkas - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9048,7 +9113,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9250,27 +9315,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9414,38 +9479,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. Check the logs for details. @@ -9453,12 +9518,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9466,18 +9531,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9485,15 +9550,15 @@ 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 @@ -9504,57 +9569,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9562,62 +9627,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9627,22 +9692,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9689,27 +9754,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9769,18 +9834,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9792,208 +9857,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10009,13 +10115,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Kunci - - + + Playlists @@ -10025,32 +10131,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Buka Kunci - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -11541,7 +11673,7 @@ Fully right: end of the effect period - + Deck %1 Deck %1 @@ -11674,7 +11806,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11705,7 +11837,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11838,12 +11970,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11878,42 +12010,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11971,54 +12103,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12153,19 +12285,19 @@ may introduce a 'pumping' effect and/or distortion. Kunci - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12577,7 +12709,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12759,7 +12891,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Gambar @@ -12995,197 +13127,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13423,924 +13555,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14475,33 +14615,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14521,205 +14661,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14764,254 +14914,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15019,12 +15169,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15032,47 +15182,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15244,47 +15389,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15408,407 +15553,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view - + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15816,25 +15992,25 @@ This can not be undone! WOverview - + 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 @@ -15843,25 +16019,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -15872,169 +16036,163 @@ This can not be undone! Pencarian... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Kunci - + harmonic with %1 - + BPM DPM - + between %1 and %2 - + Artist Artis - + Album Artist Artis dari Album - + Composer Penyusun - + Title Judul - + Album Album - + Grouping Kelompok - + Year Tahun - + Genre Aliran - + Directory - + &Search selected @@ -16042,599 +16200,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Tambah ke Daftar Putar - + Crates Peti - + Metadata - + Update external collections - + Cover Art Gambar - + Adjust BPM - + Select Color - - + + Analyze Menganalisis - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Hapus - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Pengaturan - + Open in File Browser Buka di Browser Berkas - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Penilaian - + Cue Point - + + Hotcues Penanda Utama - + Intro - + Outro - + Key Kunci - + ReplayGain - + Waveform - + Comment Komentar - + All - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Kunci DPM - + Unlock BPM Buka Kunci BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16650,37 +16834,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16688,37 +16872,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16726,60 +16910,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Tampilkan atau sembunyikan kolom. + + + Shuffle Tracks + + 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. @@ -16790,67 +16979,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Telusuri - + Export directory - + Database version - + Export - + Cancel - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16871,7 +17071,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16881,23 +17081,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_is.ts b/res/translations/mixxx_is.ts index b255bd68ba9b..454604fad56b 100644 --- a/res/translations/mixxx_is.ts +++ b/res/translations/mixxx_is.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ Sjálfvirk hljóðblöndun - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist @@ -258,13 +258,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Gat ekki opnað lag. @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Plata - + Album Artist - + Artist Flytjandi - + Bitrate Bitahraði - + BPM BPM - + Channels Rásir - + Color - + Comment Athugasemd - + Composer - + Cover Art - + Date Added Bætt við - + Last Played - + Duration Lengd - + Type Tegund - + Genre Stíll - + Grouping - + Key Tónlykill - + Location Staðsetning - + Preview - + Rating Stjörnugjöf - + ReplayGain - + Samplerate - + Played Spilað - + Title Heiti - + Track # Lag # - + Year Ár - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links Flýtihlekkir - - + + Devices Tæki - + Removable Devices Fjarlægjanleg tæki - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Læsa @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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 @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Sleppa - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Sjálfvirk hljóðblöndun - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo Víðóma - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Ekkert - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Endurnefna - + Export Flytja út - + Delete Eyða - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Virkt - + Stereo Víðóma - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Stillingarvilla @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev Hljóð-forritaskil - + Sample Rate Tíðni - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Úttak - + Input Inntak - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices Finna tæki @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: BPM: - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Lag # - + Album Artist - + Composer - + Title Heiti - + Grouping - + Key Tónlykill - + Year Ár - + Artist Flytjandi - + Album Plata - + Genre Stíll @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: Lengd: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: BPM lags: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Virkja - + &Cancel &Hætta við - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Læsa - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Læsa - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Tónlykill - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Flytjandi - + Album Artist - + Composer - + Title Heiti - + Album Plata - + Grouping - + Year Ár - + Genre Stíll - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Kassar - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze Greina - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Fjarlægja - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Stjörnugjöf - + Cue Point - + Hotcues - + Intro - + Outro - + Key Tónlykill - + ReplayGain - + Waveform - + Comment Athugasemd - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_it.qm b/res/translations/mixxx_it.qm index 01e4cbbbae35..979e4ec15cb7 100644 Binary files a/res/translations/mixxx_it.qm and b/res/translations/mixxx_it.qm differ diff --git a/res/translations/mixxx_it.ts b/res/translations/mixxx_it.ts index cda53d9233d7..8cc67e68579c 100644 --- a/res/translations/mixxx_it.ts +++ b/res/translations/mixxx_it.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Contenitori - + Enable Auto DJ Attiva Auto DJ - + Disable Auto DJ Disattiva Auto DJ - + Clear Auto DJ Queue Pulisci Coda Auto DJ - + Remove Crate as Track Source Rimuovi Contenitore come Sorgente Traccia - + Auto DJ Auto DJ - + Confirmation Clear Conferma rimozione - + Do you really want to remove all tracks from the Auto DJ queue? Vuoi rimuovere tutte le tracce dalla coda dell'Auto DJ? - + This can not be undone. Non può essere annullato. - + Add Crate as Track Source Aggiungi Contenitore come Sorgente Tracce @@ -223,7 +231,7 @@ - + Export Playlist Esporta Playlist @@ -277,13 +285,13 @@ - + Playlist Creation Failed Creazione della Playlist non Riuscita - + An unknown error occurred while creating playlist: Errore sconosciuto durante la creazione della playlist: @@ -298,12 +306,12 @@ Sei davvero sicuro di voler cancellare la playlist <b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Marca temporale @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossibile caricare la traccia. @@ -362,7 +370,7 @@ Canali - + Color Colore @@ -377,7 +385,7 @@ Autore - + Cover Art Immagine Copertina @@ -387,7 +395,7 @@ Data di Importazione - + Last Played Ultima Riproduzione @@ -417,7 +425,7 @@ Chiave - + Location Posizione @@ -427,7 +435,7 @@ - + Preview Anteprima @@ -467,7 +475,7 @@ Anno - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Recupero immagine ... @@ -489,22 +497,22 @@ BroadcastProfile - + 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. - + Settings error Errore impostazioni - + <b>Error with settings for '%1':</b><br> <b>Errore con le impostazioni per '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Computer @@ -612,17 +620,17 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx è un software open source per DJ. Per maggiori informazioni, vedere: - + Starts Mixxx in full-screen mode Avvia Mixxx in modalità a schermo intero - + Use a custom locale for loading translations. (e.g 'fr') Usare un locale personalizzato per caricare le traduzioni. (ad esempio 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Directory di primo livello in cui Mixxx dovrebbe cercare i suoi file di risorse come le mappature MIDI, sovrascrivendo la posizione di installazione predefinita. - + Path the debug statistics time line is written to Percorso in cui viene scritta la linea temporale delle statistiche di debug - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Fa sì che Mixxx visualizzi/registri tutti i dati che riceve dal controller e le funzioni di script che carica - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! La mappatura del controller genererà avvisi ed errori più aggressivi quando viene rilevato un uso improprio delle API del controller. Le nuove mappature dei controller dovrebbero essere sviluppate con questa opzione abilitata! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Abilita la modalità sviluppatore. Include informazioni extra sul registro, statistiche sulle prestazioni e un menu di strumenti per sviluppatori. - + Top-level directory where Mixxx should look for settings. Default is: Directory di primo livello in cui Mixxx deve cercare le impostazioni. L'impostazione predefinita è: - + Starts Auto DJ when Mixxx is launched. Fai partire Auto DJ quando Mixxx viene lanciato. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter Usa il vecchio vu meter - + Use legacy spinny Usa lo spinny legacy - - Loads experimental QML GUI instead of legacy QWidget skin - Carica la GUI sperimentale QML invece della skin legacy QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Abilita la modalità sicura. Disabilita le forme d'onda OpenGL e i widget di vinile che girano. Prova questa opzione se Mixxx và in crash all'avvio. - + [auto|always|never] Use colors on the console output. [auto|sempre|mai] Usa i colori sull'output della console. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ debug - Come sopra + Messaggi di debug/sviluppatore traccia - Come sopra + Messaggi di profilazione - + 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. Imposta la soglia di registrazione alla quale il buffer di log viene scaricato in mixxx.log. <level> è uno dei valori definiti in --log-level sopra. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Interrompe (SIGINT) Mixxx, se un DEBUG_ASSERT è valutato come false. In un debugger è possibile continuare in seguito. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Carica i file musicali specificati all'avvio. Ogni file specificato sarà caricato nel deck virtuale successivo. - + Preview rendered controller screens in the Setting windows. Anteprima renderizzata dello schermo del controller nella finestra impostazioni. @@ -984,2557 +997,2585 @@ traccia - Come sopra + Messaggi di profilazione ControlPickerMenu - + Headphone Output Uscita Cuffie - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Campionatore %1 - + Preview Deck %1 Anteprima Deck %1 - + Microphone %1 Microfono %1 - + Auxiliary %1 Ausiliario %1 - + Reset to default Ripristina i valori predefiniti - + Effect Rack %1 Rack Effetti %1 - + Parameter %1 Parametro %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mix Cuffia (pre/main) - + Toggle headphone split cueing Attiva/disattiva una separazione cuffie per il cueing - + Headphone delay Ritardo cuffia - + Transport Trasporto - + Strip-search through track Cerca stream nella traccia - + Play button Bottone Play - - + + Set to full volume Imposta a tutto volume - - + + Set to zero volume Imposta a volume zero - + Stop button Bottone stop - + Jump to start of track and play Vai a inizio traccia e riproduci - + Jump to end of track Vai a fine traccia - + Reverse roll (Censor) button Bottone riproduci al contrario (censura) - + Headphone listen button Bottone preascolto cuffia - - + + Mute button Bottone Muto - + Toggle repeat mode Attiva/disattiva modo ripetizione - - + + Mix orientation (e.g. left, right, center) Orientamento mix (es. sinistra, destra, centro) - - + + Set mix orientation to left Imposta orientamento del mix a sinistra - - + + Set mix orientation to center Imposta orientamento del mix al centro - - + + Set mix orientation to right Imposta orientamento del mix a destra - + Toggle slip mode Abilita/disabilita modo scivolamento - - + + BPM BPM - + Increase BPM by 1 Aumenta BPM di 1 - + Decrease BPM by 1 Diminuisce BPM di 1 - + Increase BPM by 0.1 Aumenta BPM di 0.1 - + Decrease BPM by 0.1 Diminuisce BPM di 0.1 - + BPM tap button Bottone BPM tap - + Toggle quantize mode Attiva quantizzazione - + One-time beat sync (tempo only) Beat sync ad un tempo (solo tempo) - + One-time beat sync (phase only) Beat sync ad un tempo (solo fase) - + Toggle keylock mode Attiva modo keylock - + Equalizers Equalizzatori - + Vinyl Control Controllo Vinile - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Attiva/disattiva il modo cueing controllo-vinile (OFF/ONE/HOT) - + 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 Imposta il punto di 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 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 battute - + Library Libreria - + Slot %1 Slot %1 - + Headphone Mix Mix Cuffie - + Headphone Split Cue Separa Cue Cuffie - + Headphone Delay Ritardo Cuffie - + Play Riproduci - + Fast Rewind Indietro veloce - + Fast Rewind button Bottone indietro veloce - + Fast Forward Avanti veloce - + Fast Forward button Bottone avanti veloce - + Strip Search Cerca Striscia - + Play Reverse Riproduci al contrario - + Play Reverse button Bottone riproduci al contrario - + Reverse Roll (Censor) Reverse Roll (Censura) - + Jump To Start Salta all'inizio - + Jumps to start of track Salta all'inizio della traccia - + Play From Start Riproduci dall'inizio - + Stop Stop - + Stop And Jump To Start Stop E Salta All'Inizio - + Stop playback and jump to start of track Ferma la riproduzione e salta ad inizio traccia - + Jump To End Salta Alla Fine - + Volume Volume - - - + + + Volume Fader Fader Volume - - + + Full Volume Volume Massimo - - + + Zero Volume Volume Zero - + Track Gain Guadagno Traccia - + Track Gain knob Manopola Guadagno Traccia - - + + Mute Muto - + Eject Espelli - - + + Headphone Listen Preascolto cuffia - + Headphone listen (pfl) button Bottone preascolto cuffia (pfl) - + Repeat Mode Modalità Ripetizione - + Slip Mode Modalità Slip - - + + Orientation Orientamento - - + + Orient Left Orienta a Sinistra - - + + Orient Center Orienta al Centro - - + + Orient Right Orienta a Destra - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM Tap - + Adjust Beatgrid Faster +.01 Regola Beatgrid più Veloce +.01 - + Increase track's average BPM by 0.01 Aumenta BPM medio della traccia di 0.01 - + Adjust Beatgrid Slower -.01 Regola Beatgrid più Lento -.01 - + Decrease track's average BPM by 0.01 Diminuisci il BPM medio della traccia di 0.01 - + Move Beatgrid Earlier Muove Beatgrid Anticipando - + Adjust the beatgrid to the left Regola beatgrid a sinistra - + Move Beatgrid Later Muove Beatgrid Posticipando - + Adjust the beatgrid to the right Regola Beatgrid a destra - + Adjust Beatgrid Regola Beatgrid - + Align beatgrid to current position Allinea beatgrid alla posizione corrente - + Adjust Beatgrid - Match Alignment Regola Beatgrid - Accoppia Allineamento - + Adjust beatgrid to match another playing deck. Regola Beatgrid per allinearsi ad un altro deck che stà suonando. - + Quantize Mode Modalità quantizzazione - + Sync Sincronizza - + 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 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 Reimposta chiave musicale - + Resets key to original Reimposta la chiave musicale all'originale - + High EQ EQ Alti - + Mid EQ EQ Medi - - + + Main Output Uscita Master - + Main Output Balance Bilanciamento Uscita Master - + Main Output Delay Ritardo Uscita Master - + Main Output Gain Guadagno Uscita Master - + Low EQ 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 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 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 alla Coda di 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 la traccia selezionata in cima alla Coda di 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 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 Mescola 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 Abilita Auto Dj - + Toggle Auto DJ On/Off Abilita/Disabilita Auto Dj - + 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/Nasconde Mixer - + Show or hide the mixer. Mostra o nasconde il mixer - + Cover Art Show/Hide (Library) Mostra/Nasconde Copertina (Libreria) - + Show/hide cover art in the library Mostra/Nasconde copertina nella libreria - + 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/Nasconde Rack Effetti - + Show/hide the effect rack Mostra/Nasconde il rack effetti - + Waveform Zoom Out Waveform Zoom out - + Headphone Gain Guadagno Cuffie - + Headphone gain Guadagno cuffie - + 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) Controllo velocità riproduzione (slider "pitch" vinile) - + Pitch (Musical key) Pitch (Chiave Musicale) - + Increase Speed Aumenta la Velocità - + Adjust speed faster (coarse) Regola velocità rapidamente (grossolanamente) - + 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à lentamente (grossolanamente) - + Adjust speed slower (fine) Regola Velocità in diminuzione (fine) - + Temporarily Increase Speed Aumenta Velocità temporaneamente - + Temporarily increase speed (coarse) Aumenta Velocità temporaneamente (grossolanamente) - + 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) - - + + Adjust %1 Regola %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Unità Effetto %1 - + Button Parameter %1 Parametro Pulsante %1 - + Skin Skin - + Controller Controller - + Crossfader / Orientation Crossfader / Orientamento - + Main Output gain Guadagno Uscita Master - + Main Output balance Bilanciamento Uscita Master - + Main Output delay Ritardo Uscita Master - + Headphone Cuffie - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Elimina %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Espelle o ricarica traccia, ovvero ricarica l'ultima traccia espulsa (di qualsiasi deck)<br>Premere due volte per ricaricare l'ultima traccia sostituita. Nei deck vuoti ricarica la penultima traccia espulsa. - + BPM / Beatgrid BPM / Beatgrid - + Halve BPM Dimezza BPM - + Multiply current BPM by 0.5 Moltiplica il BPM attuale per 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Moltiplica il BPM attuale per 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Moltiplica il BPM attuale per 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Moltiplica il BPM attuale per 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Moltiplica il BPM attuale per 1.5 - + Double BPM Raddoppia BPM - + Multiply current BPM by 2 Moltiplica il BPM attuale per 2 - + Tempo Tap Tempo Tap - + Tempo tap button Pulsante tap tempo - + Move Beatgrid Sposta Beatgrid - + Adjust the beatgrid to the left or right Regola beatgrid a sinistra o destra - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock Attiva/disattiva il blocco dei BPM/beatgrid - + Revert last BPM/Beatgrid Change Ripristina l'ultima Modifica dei BPM/Beatgrid - + Revert last BPM/Beatgrid Change of the loaded track. Ripristina l'ultima modifica di BPM/Beatgrid della traccia caricata. - + Sync / Sync Lock Sincronizza / Blocca Sincronizzazione - + Internal Sync Leader Leader Sincronizzazione Interno - + Toggle Internal Sync Leader Attiva/disattiva Leader Sincronizzazione Interno - - + + Internal Leader BPM Leader Interno BPM - + Internal Leader BPM +1 Leader Interno BPM +1 - + Increase internal Leader BPM by 1 Aumenta Leader BPM interno di 1 - + Internal Leader BPM -1 Leader Interno BPM -1 - + Decrease internal Leader BPM by 1 Diminusce Leader BPM interno di 1 - + Internal Leader BPM +0.1 Leader Interno BPM +0.1 - + Increase internal Leader BPM by 0.1 Aumenta Leader BPM interno di 0.1 - + Internal Leader BPM -0.1 Leader Interno BPM -0.1 - + Decrease internal Leader BPM by 0.1 Diminusce Leader BPM interno di 0.1 - + Sync Leader Leader Sincronizzazione - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Modalità di sincronizzazione a 3 stati / indicatore (Off, Soft Leader, Explicit Leader) - + Speed Velocità - + Decrease Speed (Fine) Diminuisci Velocità (Preciso) - + Pitch (Musical Key) Tono (Chiave Musicale) - + Increase Pitch Incrementa Tono - + Increases the pitch by one semitone Incrementa il tono di un semitono - + Increase Pitch (Fine) Incrementa Tono (Fine) - + Increases the pitch by 10 cents Incrementa il tono di 10 centesimi - + Decrease Pitch Decrementa Tono - + Decreases the pitch by one semitone Decrementa il tono di un semitono - + Decrease Pitch (Fine) Decrementa Tono (Fine) - + Decreases the pitch by 10 cents Decrementa il tono di 10 centesimi - + Keylock Keylock - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds Se la traccia non ha beats l'unità sono i secondi - + Loop Selected Beats Loop Battiti Selezionati - + Create a beat loop of selected beat size Crea un loop di battiti della dimensione dei battiti selezionati - + Loop Roll Selected Beats Loop Battiti Selezionati - + Create a rolling beat loop of selected beat size Crea un loop di battiti in rotazione della dimensione dei battiti selezionati - + Loop %1 Beats set from its end point Cicla %1 Beat impostati a partire dal suo punto finale - + Loop Roll %1 Beats set from its end point Ciclo di rotazione %1 Beat impostati a partire dal suo punto finale - + Create %1-beat loop with the current play position as loop end Crea un loop di %1 battute con la posizione di riproduzione corrente come fine del loop - + Create temporary %1-beat loop roll with the current play position as loop end Crea un loop temporaneo di %1 battute con la posizione di riproduzione corrente come fine del loop - + Loop Beats Loop Battiti - + Loop Roll Beats Loop Roll Beats - + Go To Loop In Vai all'Inizio del Loop - + Go to Loop In button Bottone Vai all'Inizio del Loop - + Go To Loop Out Vai alla Fine del Loop - + Go to Loop Out button Bottone Vai alla Fine del Loop - + 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 Reloop e 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 Salto Battuta / Sposta Loop - + Jump / Move Loop Forward %1 Beats Salta / Sposta Loop Avanti di %1 Battiti - + Jump / Move Loop Backward %1 Beats Salta / Sposta Loop Indietro di %1 Battiti - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Salta in avanti di %1 battiti, o se un loop è abilitato, sposta il loop avanti di %1 battiti - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Salta all'indietro di %1 battiti, o se un loop è abilitato, sposta il loop indietro di %1 battiti - + Beat Jump / Loop Move Forward Selected Beats Salto Battito / Sposta Loop Avanti Battiti 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 del numero di battiti, o se un loop è abilitato, sposta il loop in avanti in base al numero di battiti selezionati - + Beat Jump / Loop Move Backward Selected Beats Salto Battito / Sposta Loop Indietro Battiti 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 battiti, o se un loop è abilitato, sposta il loop all'indietro in base al numero di battiti selezionati - + Beat Jump Salto beat - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Indica quale marcatore di ciclo rimane statico quando si regolano le dimensioni o viene ereditato dalla posizione corrente. - + 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 - + Remove Temporary Loop Rimuovi Loop Temporaneo - + Remove the temporary loop Rimuove il loop temporaneo - + 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 premessero i tasti 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 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 - + Sort focused column Ordinamento della colonna selezionata - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Ordina la colonna della cella attualmente selezionata, come se si facesse click sulla sua intestazione - + 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 Riproduci - + 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 - + Clear search Pulisci ricerca - + Clears the search query Cancella la query di ricerca - - + + Select Next Color Available Seleziona Colore Successivo Disponibile - + Select the next color in the color palette for the first selected track Seleziona il colore successivo nella tavolozza dei colori per la prima traccia selezionata - - + + Select Previous Color Available Seleziona Colore Precedente Disponibile - + Select the previous color in the color palette for the first selected track Seleziona il colore precedente nella tavolozza dei colori per la prima traccia selezionata - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Deck %1 Bottone Abilitazione Effetto Rapido - + + Quick Effect Enable Button Bottone Abilitazione Effetto Rapido - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing Abilita o disabilita processore effetti - + 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 Preimpostazione prossima catena - + Previous Chain Catena Precedente - + Previous chain preset Preimpostazione catena precedente - + Next/Previous Chain Passa alla Prossima/Precedente catena - + Next or previous chain preset Passa alla Prossima/Precedente catena - - + + Show Effect Parameters Mostra Parametri Effetto - + Effect Unit Assignment Assegna Unità Effetto - + Meta Knob Manopola Meta - + Effect Meta Knob (control linked effect parameters) Effetto Manopola Meta (controlla parametri effetti collegati). - + Meta Knob Mode Modalità Meta Knob - + 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 Modalità Meta Knob 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 - 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 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 prossima - + Trigger the transition to the next track Attiva la transizione alla prossima traccia - + User Interface Interfaccia Grafica - + Samplers Show/Hide Mostra/Nasconde Campioni - + Show/hide the sampler section Mostra/nasconde la sezione campionatori - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Microfono && Ausiliario Mostra/Nasconde - + Waveform Zoom Reset To Default Ripristina zoom forma d'onda ai valori predefiniti - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Ripristina il livello di zoom della forma d'onda al valore predefinito selezionato in Preferenze -> Forme d'onda - + Select the next color in the color palette for the loaded track. Seleziona il colore successivo nella tavolozza dei colori per la traccia caricata. - + Select previous color in the color palette for the loaded track. Seleziona il colore precedente nella tavolozza dei colori per la traccia caricata. - + Navigate Through Track Colors Naviga fra i Colori delle Tracce - + Select either next or previous color in the palette for the loaded track. Seleziona il colore successivo o precedente nella tavolozza per la traccia caricata. - + 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. - - + + + Deck %1 Stems + + + + + 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 Mostra/Nasconde il Deck Anteprima - + Show/hide the preview deck Mostra/nasconde l'anteprima del deck - + Toggle 4 Decks Abilita 4 Deck - + 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 Controllo Vinile - + Show/hide spinning vinyl widget Mostra/nasconde Strumento Controllo 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/Nasconde lo scorrimento delle forme d'onda. - + 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 Incrementa Valutazione Stelle - + Increase the track rating by one star Incrementa la valutazione della traccia di una stella - + Star Rating Down Decrementa Valutazione Stelle - + Decrease the track rating by one star Decrementa la valutazione della traccia di una stella @@ -3547,6 +3588,159 @@ traccia - Come sopra + Messaggi di profilazione Sconosciuto + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ traccia - Come sopra + Messaggi di profilazione 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. Tenta il ripristino tramite la reimpostazione ai valori predefiniti 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. @@ -3682,27 +3876,27 @@ traccia - Come sopra + Messaggi di profilazione ControllerScriptEngineLegacy - + 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: @@ -3735,7 +3929,7 @@ traccia - Come sopra + Messaggi di profilazione - + Lock Blocca @@ -3765,7 +3959,7 @@ traccia - Come sopra + Messaggi di profilazione Sorgente Traccia Auto DJ - + Enter new name for crate: Inserisci il nuovo nome per il contenitore: @@ -3782,22 +3976,22 @@ traccia - Come sopra + Messaggi di profilazione Importa il Contenitore - + Export Crate Esporta il Contenitore - + Unlock Sblocca - + An unknown error occurred while creating crate: Si è verificato un errore sconosciuto durante la creazione del contenitore: - + Rename Crate Rinomina il Contenitore @@ -3807,28 +4001,28 @@ traccia - Come sopra + Messaggi di profilazione Crea un contenitore per il tuo prossimo spettacolo, per le tue tracce ElectroHouse preferite, o per quelle più richieste. - + Confirm Deletion Conferma Cancellazione - - + + Renaming Crate Failed Impossibile Rinominare il Contenitore - + Crate Creation Failed Impossibile Creare il Contenitore - + 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) - + M3U Playlist (*.m3u) Playlist M3U (*.m3u) @@ -3849,17 +4043,17 @@ traccia - Come sopra + Messaggi di profilazione I contenitori ti consentono di organizzare la tua musica a tuo piacimento! - + Do you really want to delete crate <b>%1</b>? Sei davvero sicuro di voler cancellare il contenitore <b>%1</b>? - + A crate cannot have a blank name. Un contenitore non può avere un nome nullo. - + A crate by that name already exists. Un contenitore con quel nome esiste già. @@ -3931,7 +4125,7 @@ traccia - Come sopra + Messaggi di profilazione Mixxx %1.%2 Development Team - + Mixxx %1.%2 Team di Sviluppo @@ -3954,12 +4148,12 @@ traccia - Come sopra + Messaggi di profilazione Collaboratori passati - + Official Website Sito Ufficiale - + Donate Dona @@ -4764,123 +4958,140 @@ Hai cercato di addestrare: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Automatica - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Azione fallita - + You can't create more than %1 source connections. Non puoi creare più di %1 connessioni sorgente. - + Source connection %1 Connessione sorgente %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + 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 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' ha lo stesso mountpoint Icecast di '%2'. Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non possono essere abilitate simultaneamente. - + 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': - + Can't rename '%1' to '%2': name already in use Non posso rinominare '%1' come '%2': il nome è già in uso @@ -4893,27 +5104,27 @@ Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non p Impostazioni Trasmissione Live - + Mixxx Icecast Testing Test Mixxx di Icecast - + Public stream Stream pubblico - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nome dello 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. @@ -4953,67 +5164,72 @@ Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non p Impostazione per %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Aggiorna dinamicamente i metadata Ogg Vorbis. - + 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) - + Genre Genere - + Use UTF-8 encoding for metadata. Utilizza la codifica UTF-8 per i metadati. - + Description Descrizione @@ -5039,42 +5255,42 @@ Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non p Canali - + Server connection Connessione server - + Type Digita - + Host Host - + Login Login - + Mount - Monta + - + Port Porta - + Password Password - + Stream info Informazioni stream @@ -5084,17 +5300,17 @@ Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non p Metadati - + Use static artist and title. Usa artista e titolo statici. - + Static title Titolo statico - + Static artist Artista statico @@ -5153,13 +5369,14 @@ Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non p DlgPrefColors - - + + + By hotcue number Per numero hotcue - + Color Colore @@ -5204,17 +5421,22 @@ Due connessioni sorgente allo stesso server che hanno lo stesso mountpoint non p + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5222,114 +5444,114 @@ associated with each key. DlgPrefController - + Apply device settings? Applicare le impostazioni della 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 da %2 - + 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à. - + 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. 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? - + Clear Input Mappings Elimina le Mappature di Ingresso - + Are you sure you want to clear all input mappings? Sei sicuro di voler eliminare tutte le mappature di ingresso? - + Clear Output Mappings Elimina le Mappature di Uscita - + Are you sure you want to clear all output mappings? Sei sicuro di voler eliminare tutte le mappature di uscita? @@ -5347,100 +5569,105 @@ Applicare la configurazione e continuare? Attivato - + + Refresh mapping list + + + + Device Info Info del dispositivo - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: Numero seriale: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descrizione: - + Support: Supporto: - + Screens preview Anteprima Schermate - + Input Mappings Mappature Input - - + + Search Cerca - - + + Add Aggiungi - - + + Remove Rimuovi @@ -5460,17 +5687,17 @@ Applicare la configurazione e continuare? Carica Mappature: - + Mapping Info Info Mappatura - + Author: Autore: - + Name: Nome: @@ -5480,28 +5707,28 @@ Applicare la configurazione e continuare? Procedura guidata di apprendimento (Solo MIDI) - + Data protocol: - + Mapping Files: Files Mappatura: - + Mapping Settings - - + + Clear All Pulisci Tutto - + Output Mappings Mappature di Uscita @@ -5516,21 +5743,21 @@ Applicare la configurazione e continuare? - 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 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ Guida Hardware - + MIDI Mapping File Format Formato File Mappatura MIDI - + MIDI Scripting with Javascript MIDI Scripting con Javascript @@ -5660,6 +5887,16 @@ Applicare la configurazione e continuare? Multi-Sampling Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5689,137 +5926,137 @@ Applicare la configurazione e continuare? DlgPrefDeck - + 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 Cue principale - + First hotcue Primo hotcue - + First sound (skip silence) Primo suono (salta silenzio) - + Beginning of track Inizio della traccia - + Reject Rifiuta - + Allow, but stop deck Consenti, ma ferma il deck - + Allow, play from load point Consenti, riproduci da punto di partenza - + 4% 4% - + 6% (semitone) 6% (semitono) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6274,62 +6511,62 @@ Puoi sempre trascinare tracce sullo schermo per clonare un 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 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 - + Disabled Disabilitato - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. Mixxx deve essere riavviato prima che le nuove impostazioni di localizzazione, scalatura o multi-sampling abbiano effetto. @@ -6556,67 +6793,97 @@ and allows you to pitch adjust them for harmonic mixing. Vedi il manuale per i dettagli - + 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 - + Item is not a directory or directory is missing L'elemento non è una directory o la directory non esiste - + 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 Tracce - + Delete Track Metadata Elimina Metadati Traccia - + Leave Tracks Unchanged Lascia Tracce senza Cambiamenti - + Relink music directory to new location Collega la cartella della musica alla nuova posizione - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Seleziona Font Libreria @@ -6665,262 +6932,267 @@ and allows you to pitch adjust them for harmonic mixing. Riesamina cartelle all'avvio - + Audio File Formats Formati file audio - + Track Table View Vista Tabella Tracce - + Track Double-Click Action: Azione Doppio-Click su Traccia: - + BPM display precision: Precisione visualizzazione BPM: - + Session History Storia Sessione - + Track duplicate distance Distanza fra tracce duplicate - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Quando si riproduce di nuovo un brano, lo si registra nella cronologia della sessione solo se nel frattempo sono stati riprodotti più di N altri brani. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Le playlist della cronologia con meno di N brani verranno eliminate<br/><br/>Nota: la pulizia verrà effettuata durante l'avvio o la chiusura di Mixxx. - + Delete history playlist with less than N tracks Elimina playlist con meno di N brani dalla cronologia - + Library Font: Font Libreria: - + + Show scan summary dialog + + + + Grey out played tracks In grigio le tracce riprodotte - + Track Search Ricerca Traccia - + Enable search completions Abilita completamento della ricerca - + Enable search history keyboard shortcuts Abilita collegamenti da tastiera per cronologia di ricerca - + Percentage of pitch slider range for 'fuzzy' BPM search: Percentuale dell'intervallo del cursore dell'intonazione per la ricerca 'fuzzy' dei BPM: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Questo intervallo sarà utilizzato per la ricerca 'fuzzy' dei BPM (~bpm:) attraverso la casella di ricerca, cosiccome per la ricerca dei BPM nel menu contestuale Traccia > Cerca tracce correlate - + Preferred Cover Art Fetcher Resolution Risoluzione Preferita Fetcher Copertina - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Recupera copertina da coverartarchive.com utilizzando Import Metadata da MusicBrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Nota: ">1200 px" può recuperare fino a copertine molto grandi. - + >1200 px (if available) >1200 px (se disponibile) - + 1200 px (if available) 1200 px (se disponibile) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Cartella Impostazioni - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. La cartella delle impostazioni di Mixxx contiene il database della libreria, vari file di configurazione, file di log, dati di analisi della traccia e le mappature personalizzate dei controllori. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Modificate 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: - + Use relative paths for playlist export if possible Se possibile usa il percorso relativo per esportare la playlist - + ... ... - + px px - + Synchronize library track metadata from/to file tags Sincronizza i metadati delle tracce della libreria dai/ai tag dei file - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Scrive automaticamente i metadati delle tracce modificate dalla libreria nei tag dei file e reimporta i metadati dai tag dei file aggiornati nella libreria - + Synchronize Serato track metadata from/to file tags (experimental) Sincronizza i metadati delle tracce di Serato dai/ai tag dei file (sperimentale) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Mantiene il colore della traccia, la griglia dei beat, il blocco dei bpm, i punti di attacco e i loop sincronizzati con i tag dei file SERATO_MARKERS/MARKERS2.<br/><br/>ATTENZIONE: Abilitando questa opzione si abilita anche la reimportazione dei metadati Serato dopo che i file sono stati modificati fuori da Mixxx. Alla reimportazione i metadati esistenti in Mixxx vengono sostituiti con i metadati trovati nei tag dei file. I metadati personalizzati non inclusi nei tag dei file, come i colori dei loop, vengono persi. - + Edit metadata after clicking selected track Modifica metadati dopo il click sulla traccia selezionata - + Search-as-you-type timeout: Timeout di ricerca alla digitazione: - + ms ms - + Load track to next available deck Carica traccia nel prossimo deck disponibile - + External Libraries Librerie Esterne - + You will need to restart Mixxx for these settings to take effect. Dovrai riavviare Mixxx in modo che questi cambiamenti abbiano effetto. - + Show Rhythmbox Library Mostra la Libreria di Rhythmbox - + Track Metadata Synchronization / Playlists Sincronizzazione Metadati Traccia / Playlist - + 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 la Libreria di Banshee - + Show iTunes Library Mostra la Libreria di iTunes - + Show Traktor Library Mostra la Libreria di Traktor - + Show Rekordbox Library Mostra Libreria Rekordbox - + Show Serato Library Mostra Libreria Serato - + All external libraries shown are write protected. Tutte le librerie esterne visualizzate sono protette da scrittura. @@ -7265,33 +7537,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Scegli la cartella di Registrazione - - + + 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. @@ -7309,43 +7581,55 @@ and allows you to pitch adjust them for harmonic mixing. Sfoglia... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Qualità - + Tags Etichette - + Title Titolo - + Author Autore - + Album Album - + Output File Format Formato audio Output - + Compression Compressione - + Lossy Con perdita @@ -7360,12 +7644,12 @@ and allows you to pitch adjust them for harmonic mixing. Cartella: - + Compression Level Livello Compressione - + Lossless Senza perdita @@ -7498,172 +7782,177 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Predefinita (ritardo lungo) - + Experimental (no delay) Sperimentale (nessun ritardo) - + Disabled (short delay) Disabilitato (ritardo corto) - + Soundcard Clock Clock Scheda Audio - + Network Clock Clock Rete - + Direct monitor (recording and broadcasting only) Monitor diretto (solo registrazione e trasmissione) - + Disabled Disabilitato - + Enabled Attivato - + Stereo Stereo - + Mono Mono - + 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 - + + Find details in the Mixxx user manual + + + + Information Informazione - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx deve essere riavviato prima che la modifica delle impostazioni di RubberBand multi-thread abbia effetto. - + auto (<= 1024 frames/period) automatico (<= 1024 fotogrammi/periodo) - + 2048 frames/period 2048 fotogrammi/periodo - + 4096 frames/period 4096 fotogrammi/periodo - + Are you sure? Sei sicuro? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. La diffusione di canali stereo in canali mono per l'elaborazione parallela comporta la perdita della compatibilità mono e un'immagine stereo diffusa. Non è consigliabile durante la trasmissione o la registrazione. - + Are you sure you wish to proceed? Si è sicuri di voler procedere? - + No No - + Yes, I know what I am doing Si, sò cosa stò facendo - + 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 della Latenza Microfono per allineare la temporizzazione microfono. - + Refer to the Mixxx User Manual for details. Riferirsi al Manuale Utente Mixxx per dettagli. - + Configured latency has changed. La latenza configurata è cambiata. - + 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 della 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 - + %1 ms %1 ms - + Configuration error Errore di configurazione @@ -7730,17 +8019,22 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Numero Buffer Underflow - + 0 0 @@ -7757,7 +8051,7 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Output - + Uscita @@ -7765,12 +8059,12 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del 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 musica. @@ -7800,7 +8094,7 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Suggerimenti e Diagnostica - + Downsize your audio buffer to improve Mixxx's responsiveness. Diminuisci il tuo buffer audio per aumentare la responsività di Mixxx @@ -7847,7 +8141,7 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Configurazione Vinile - + Show Signal Quality in Skin Mostra qualità del segnale nella skin @@ -7883,46 +8177,51 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 Deck 3 - + Deck 4 Deck 4 - + Signal Quality Qualità del segnale - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + Realizzato da xwax - + Hints Suggerimenti - + Select sound devices for Vinyl Control in the Sound Hardware pane. Seleziona i dispositivi sonori per il Controllo Vinile nel pannello Hardware Audio. @@ -7930,58 +8229,58 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del DlgPrefWaveform - + Filtered Filtrato - + HSV HSV - + RGB RGB - + Top Alto - + Center Centro - + Bottom Basso - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL non disponibile - + dropped frames frames persi - + Cached waveforms occupy %1 MiB on disk. Le waveform nella cache occupano %1 Mib sul disco @@ -7999,22 +8298,17 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Frame rate - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Mostra quale versioni di OpenGL è supportata della piattaforma corrente. - - Normalize waveform overview - Normalizza la forma d'onda della panoramica - - - + Average frame rate Frame rate medio @@ -8030,7 +8324,7 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Livello di zoom predefinito - + Displays the actual frame rate. Mostra i fotogrammi per secondo attuali. @@ -8065,7 +8359,7 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Bassi - + Show minute markers on waveform overview Mostra i marcatori dei minuti sulla panoramica della forma d'onda @@ -8110,7 +8404,7 @@ Il target di intensità sonora è approssimativo e presuppone che il pregain del Guadagno visivo globale - + 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. La panoramica della forma d'onda mostra lo sviluppo dell'intera traccia. @@ -8178,22 +8472,22 @@ Select from different types of displays for the waveform, which differ primarily pt - + Caching Caching - + 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 memorizza in caches le waveform delle tracce sul disco la prima volta che carichi una traccia. Questo riduce l'uso della CPU quando stai suonando live ma richiede spazio extra sul disco. - + Enable waveform caching Abilita memorizzazione waveform in cache - + Generate waveforms when analyzing library Genera le waveform quando si analizza la libreria @@ -8209,7 +8503,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8239,12 +8533,58 @@ Select from different types of displays for the waveform, which differ primarily Muove la posizione del marker sulle forme d'onda a sinistra, destra o al centro (predefinito). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Cancella le waveform memorizzate in cache @@ -8736,7 +9076,7 @@ Questa azione non può essere annullata! BPM: - + Location: Posizione: @@ -8751,27 +9091,27 @@ Questa azione non può essere annullata! Commenti - + BPM BPM (Pulsazioni/minuto) - + Sets the BPM to 75% of the current value. Imposta i BPM al 75% del valore corrente. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Imposta i BPM al 50% del valore corrente. - + Displays the BPM of the selected track. Mostra i BPM della traccia selezionata. @@ -8826,49 +9166,49 @@ Questa azione non può essere annullata! Genere - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Imposta i BPM al 200% del valore corrente. - + Double BPM raddoppia BPM - + Halve BPM Dimezza BPM - + Clear BPM and Beatgrid Cancella i BPM e i Beatgrid - + Move to the previous item. "Previous" button Passa alla voce precedente - + &Previous &Precedente - + Move to the next item. "Next" button Passa alla voce successiva - + &Next &Successivo @@ -8893,12 +9233,12 @@ Questa azione non può essere annullata! Colore - + Date added: Data inserimento: - + Open in File Browser Apri nel File Manager @@ -8908,12 +9248,17 @@ Questa azione non può essere annullata! Frequenza di campionamento: - + + Filesize: + + + + Track BPM: BPM della 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. @@ -8922,90 +9267,90 @@ Usa quest'opzione se le tue tracce hanno un ritmo costante (ad esempio la m 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 i BPM al 66% del valore corrente. - + 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. Tocca a ritmo per impostare i BPM alla velocita a 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 Annulla le modifiche e chiudi la finestra. - + Save changes and keep the window open. "Apply" button Salva le modifiche e non chiude la finestra. - + &Apply &Applica - + &Cancel &Cancella - + (no color) (nessun colore) @@ -9162,7 +9507,7 @@ Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà b &OK - + (no color) (nessun colore) @@ -9364,27 +9709,27 @@ Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà b EngineBuffer - + Soundtouch (faster) Soundtouch (più veloce) - + Rubberband (better) Rubberband (migliore) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (qualità quasi-alta-fedeltà) - + Unknown, using Rubberband (better) Sconosciuto, usando Rubberband (migliore) - + Unknown, using Soundtouch Sconosciuto, utilizzando Soundtouch @@ -9599,15 +9944,15 @@ Spesso si avrà un buon risultato con tracce a ritmo costante, non funzionerà b 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 @@ -9619,57 +9964,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9677,37 +10022,37 @@ supporto OpenGL. Library - + This or a parent directory is already in your library. Questa o una cartella superiore è già presente nella tua libreria. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Questa o una cartella elencata non esiste o è inaccessibile. Interrompi l'operazione per evitare incongruenze nella libreria - - + + This directory can not be read. La cartella non può essere letta. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Si è verificato un errore sconosciuto. Interrompi l'operazione per evitare incongruenze nella libreria - + Can't add Directory to Library Non posso aggiungere la Cartella alla Libreria - + Could not add <b>%1</b> to your library. %2 @@ -9716,27 +10061,27 @@ Interrompi l'operazione per evitare incongruenze nella libreria - + Can't remove Directory from Library Non posso rimuovere la Cartella dalla Libreria - + An unknown error occurred. Si è verificato un errore sconosciuto - + This directory does not exist or is inaccessible. La cartella non esiste o non è accessibile. - + Relink Directory Ricollega Cartella - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9748,22 +10093,22 @@ Interrompi l'operazione per evitare incongruenze nella libreria LibraryFeature - + Import Playlist Importa Playlist - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) File playlist (*.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. @@ -9904,12 +10249,12 @@ Vuoi veramente sovrascriverlo? Tracce Nascoste - + Export to Engine DJ Esporta a Engine DJ - + Tracks Tracce @@ -9917,37 +10262,37 @@ Vuoi veramente sovrascriverlo? 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 @@ -9957,213 +10302,213 @@ Vuoi veramente sovrascriverlo? skin - + Allow Mixxx to hide the menu bar? Permetti a Mixxx di nascondere la barra dei menu? - + Hide Always show the menu bar? Nascondi - + Always show Mostra sempre - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label La barra dei menu di Mixxx è nascosta e può essere attivata/disattivata con una singola pressione del tasto <b>Alt</b> .<br><br>Clicca <b>%1</b> per confermare.<br><br>Clicca <b>%2</b> per non confermare, per esempio se non usi Mixxx con una tastiera.<br><br>Puoi cambiare in ogni momento queste impostazioni da Preferenze -> Interfaccia.<br> - + Ask me again Chiedi nuovamente - - + + Reconfigure Riconfigura - + Help Guida - - + + 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 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? 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? - + Scan took %1 - + No changes detected. Nessun cambiamento rilevato. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. 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 è 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? @@ -10179,13 +10524,13 @@ Vuoi selezionare un dispositivo di input? PlaylistFeature - + Lock Blocca - - + + Playlists Playlist @@ -10195,58 +10540,63 @@ Vuoi selezionare un dispositivo di input? Mescola Playlist - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Sblocca - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 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 @@ -10345,59 +10695,59 @@ Vuoi selezionare un dispositivo di input? QMessageBox - + Upgrading Mixxx Aggiornando 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 cercare i file di copertina 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 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 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 @@ -10511,69 +10861,82 @@ Vuoi scansionare la tua libreria per cercare i file di copertina adesso?14-bit (MSB) - + Main + Audio path indetifier Main - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier Cuffie - + Left Bus + Audio path indetifier Bus Sinistra - + Center Bus + Audio path indetifier Bus Centro - + Right Bus + Audio path indetifier Bus Destra - + Invalid Bus + Audio path indetifier Bus non valido - + Deck + Audio path indetifier Deck - + Record/Broadcast + Audio path indetifier Registra/Trasmetti - + Vinyl Control + Audio path indetifier Controllo Vinile - + Microphone + Audio path indetifier Microfono - + Auxiliary + Audio path indetifier Ausiliario - + Unknown path type %1 + Audio path Tipo di percorso %1 sconosciuto @@ -10918,47 +11281,49 @@ Con larghezza a zero, consente di scorrere manualmente l'intero intervallo Larghezza - + Metronome Metronomo - + + The Mixxx Team Il Team Mixxx - + Adds a metronome click sound to the stream Aggiunge un suono click metronomo allo stream - + BPM BPM (Pulsazioni/minuto) - + Set the beats per minute value of the click sound Imposta il valore delle battute per minuto del suono del click - + Sync Sincronizza - + Synchronizes the BPM with the track if it can be retrieved Sincronizza il BPM con la traccia se esso può essere recuperato - + + Gain - + Set the gain of metronome click sound @@ -11763,14 +12128,14 @@ Completamente a destra: fine del periodo La registrazione OGG non è supportata. Impossibile inizializzare la libreria OGG/Vorbis. - - + + encoder failure - - + + Failed to apply the selected settings. Applicazione delle impostazioni selezionate non riuscita. @@ -11910,7 +12275,7 @@ Suggerimento: compensa le voci "chipmunk" o "ringhio"La quantità di amplificazione applicata al segnale audio. Ad alti livelli, il suono sarà più distorto. - + Passthrough Passthrough @@ -11946,47 +12311,118 @@ Suggerimento: compensa le voci "chipmunk" o "ringhio"Campionatore %1 - - - Compressor - Compressore + + + Compressor + Compressore + + + + Auto Makeup Gain + Auto Makeup Gain + + + + Makeup + Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + Il pulsante Auto Makeup consente la regolazione automatica del guadagno per mantenere il segnale di ingresso +e il segnale elaborato in uscita quanto più possibile simili in termini di volume percepito + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Soglia (dBFS) + + + + + Threshold + Soglia + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + - - Auto Makeup Gain - Auto Makeup Gain + + The Target knob adjusts the desired target level of the output signal + - - Makeup - Makeup + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - Il pulsante Auto Makeup consente la regolazione automatica del guadagno per mantenere il segnale di ingresso -e il segnale elaborato in uscita quanto più possibile simili in termini di volume percepito + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) - Soglia (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Soglia + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12018,6 +12454,7 @@ Con un rapporto di 1:1 non avviene alcuna compressione, poiché l'ingresso Knee (dBFS) + Knee Knee @@ -12028,11 +12465,13 @@ Con un rapporto di 1:1 non avviene alcuna compressione, poiché l'ingresso La manopola Knee viene utilizzata per ottenere una curva di compressione più rotonda. + Attack (ms) Attacco (ms) + Attack Attacco @@ -12045,11 +12484,13 @@ will set in once the signal exceeds the threshold viene attivata appena il segnale supera la soglia + Release (ms) Rilascio (ms) + Release Rilascio @@ -12080,12 +12521,12 @@ possono introdurre un effetto di "pompaggio" e/o distorsione.varie - + built-in integrato - + missing mancante @@ -12120,42 +12561,42 @@ possono introdurre un effetto di "pompaggio" e/o distorsione. - + Empty Vuoto - + Simple Semplice - + Filtered Filtrato - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Impilato - + Unknown Sconosciuto @@ -12416,193 +12857,193 @@ possono introdurre un effetto di "pompaggio" e/o distorsione. ShoutConnection - - + + 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 nell'impostare il non-blocking mode: - + Error setting tls mode: Errore impostando il modo tls: - + Error setting hostname! Errore durante l'impostazione dell'hostname! - + Error setting port! Errore di configurazione della porta! - + Error setting password! Errore nell'impostazione della password! - + Error setting mount! Errore nell'impostazione del mount! - + Error setting username! Errore durante l'impostazione dell'username! - + Error setting stream name! Indefinito - + Error setting stream description! Errore nell'impostazione della descrizione della trasmissione! - + Error setting stream genre! Errore nell'impostazione del genere della trasmissione! - + Error setting stream url! Errore di impostazione URL corrente! - + Error setting stream IRC! Errore impostazione IRC stream! - + Error setting stream AIM! Errore impostazione AIM stream! - + Error setting stream ICQ! Errore impostazione ICQ stream! - + Error setting stream public! Errore configurazione 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Vedi https://github.com/mixxxdj/mixxx/issues/5701 per ulteriori informazioni. - + Unsupported sample rate Frequenza di campionamento non supportata - + Error setting bitrate Errore nella regolazione del bitrate - + Error: unknown server protocol! Errore: protocollo del server sconosciuto! - + Error: Shoutcast only supports MP3 and AAC encoders Errore: Shoutcast supporta solo codifiche MP3 e AAC - + Error setting protocol! Errore nell'impostazione del protocollo! - + Network cache overflow - + Connection error Errore Connessione - + 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> - + Connection message Messaggio connessione - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Messaggio dalla connessione Trasmissione Live '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Persa connessione al server streaming e %1 tentativi di riconnessione sono falliti. - + Lost connection to streaming server. Persa connessione al server streaming - + Please check your connection to the Internet. Controlla la tua connessione ad Internet. - + Can't connect to streaming server Impossibile connettersi al server streaming - + Please check your connection to the Internet and verify that your username and password are correct. Controlla la tua connessione a Internet e verifica che username e password siano corrette @@ -12610,7 +13051,7 @@ possono introdurre un effetto di "pompaggio" e/o distorsione. SoftwareWaveformWidget - + Filtered Filtrato @@ -12618,23 +13059,23 @@ possono introdurre un effetto di "pompaggio" e/o distorsione. SoundManager - - + + a device un dispositivo - + An unknown error occurred Errore sconosciuto - + Two outputs cannot share channels on "%1" Due uscite non possono condividere canali su %1 - + Error opening "%1" Errore aprendo "%1" @@ -12819,7 +13260,7 @@ possono introdurre un effetto di "pompaggio" e/o distorsione. - + Spinning Vinyl Vinile in esecuzione @@ -13001,7 +13442,7 @@ possono introdurre un effetto di "pompaggio" e/o distorsione. - + Cover Art Immagine Copertina @@ -13191,243 +13632,243 @@ possono introdurre un effetto di "pompaggio" e/o distorsione.Trattiene il gain degli EQ bassi a zero mentre è attivo. - + Displays the tempo of the loaded track in BPM (beats per minute). Visualizza il tempo della tracce caricata in BPM (beats per minute). - + Tempo Tempo - + Key The musical key of a track Parola chiave - + BPM Tap BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Quando toccato ripetutamente, regola i BPM a secondo la velocità dei tocchi - + Adjust BPM Down Abbassa BPM - + When tapped, adjusts the average BPM down by a small amount. Quando toccato, diminuisce la media BPM in basso di poco. - + Adjust BPM Up Incrementa BPM - + When tapped, adjusts the average BPM up by a small amount. Quando toccato, aumenta la media BPM di poco. - + Adjust Beats Earlier Regola Beats Prima - + When tapped, moves the beatgrid left by a small amount. Quando toccato, sposta la beatgrid a sx di poco. - + Adjust Beats Later Regola Beats Dopo - + When tapped, moves the beatgrid right by a small amount. Quando toccato, sposta la beatgrid a destra di poco. - + Tempo and BPM Tap Tempo e BPM Tap - + Show/hide the spinning vinyl section. Mostra/nasconde la sezione vinile in esecuzione. - + Keylock Keylock - + Toggling keylock during playback may result in a momentary audio glitch. Abilitando il keylock durante l'esecuzione può causare una momentanea interruzione dell'audio - + Toggle visibility of Loop Controls Attiva/disattiva visibilità del Controllo Loops - + Toggle visibility of Beatjump Controls Attiva/disattiva visibilità del Controllo Beatjump - + Toggle visibility of Rate Control Attiva/disattiva visibilità del Controllo Velocità - + Toggle visibility of Key Controls Attiva/disattiva visibilità del Controllo Chiavi - + (while previewing) (durante anteprima) - + Places a cue point at the current position on the waveform. Mette un punto di taglio alla posizione attuale sulla forma d'onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Ferma la traccia al punto di taglio, O và al punto di taglio e riproduce al rilascio (modo CUP). - + 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). - + Is latching the playing state. In agganciamento al play. - + Seeks the track to the cue point and stops. Posiziona la traccia al punto cue e si arresta. - + Play Riproduci - + Plays track from the cue point. Riproduce la traccia dal punto di taglio. - + 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 Audio. - + (This skin should be updated to use Sync Lock!) (Questa skin dovrebbe essere aggiornata per usare il Blocco Sync!) - + Enable Sync Lock Abilita Blocco Sync - + Tap to sync the tempo to other playing tracks or the sync leader. Premi per sincronizzare il tempo ad un altra traccia in riproduzione oppure al sincronismo principale. - + Enable Sync Leader Abilita Sync Leader - + When enabled, this device will serve as the sync leader for all other decks. Quando è abilitato, questo dispositivo servirà come riferimento di sincronizzazione per tutti gli altri deck. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Questo è rilevante quando viene caricata una traccia di tempo dinamica su un deck di sincronizzazione leader. In tal caso, gli altri dispositivi sincronizzati adotteranno il tempo che cambia. - + 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 temo che il pitch). Se keylock è abilitato, verrà 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. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Ricarica quando nessuna traccia è caricata, ovvero ricarica l'ultima traccia espulsa (di qualsiasi deck). - + Delete selected hotcue. Cancella hotcue selezionate. - + Track Comment Commento Traccia - + Displays the comment tag of the loaded track. Mostra il tag commento della traccia caricata. - + Opens separate artwork viewer. Apre visualizzatore copertine seperatamente. - + Effect Chain Preset Settings Impostazioni Preselezione Catena Effetti - + Show the effect chain settings menu for this unit. Mostra il menu delle impostazioni della catena di effetti per questa unità. - + Select and configure a hardware device for this input Seleziona e configura il dispositivo hardware per questa entrata - + Recording Duration Durata Registrazione @@ -13650,949 +14091,984 @@ possono introdurre un effetto di "pompaggio" e/o distorsione.Mantiene la velocità di riproduzione più bassa (di poco) mentre è attivo. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Quando toccato ripetutamente, regola i BPM a secondo la velocità dei tocchi, + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Tempo Tap - + Rate Tap and BPM Tap Rate Tap e BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change Ripristina l'ultima modifica di BPM/Beatgrid - + Revert last BPM/Beatgrid Change of the loaded track. Ripristina l'ultima modifica di BPM/Beatgrid della traccia caricata. - - + + Toggle the BPM/beatgrid lock Attiva/disattiva il blocco dei BPM/beatgrid - + Tempo and Rate Tap Tempo e Rate Tap - + Tempo, Rate Tap and BPM Tap Tempo, Rate Tap e BPM Tap - + 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 - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. Rende muto l'audio del canale selezionato nell'output principale. - + Main mix enable Abilita il mix master - + Hold or short click for latching to mix this input into the main output. Tenere premuto o fare click brevemente per agganciare questo input e mixare nell'uscita master. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. Se la posizione di riproduzione si trova all'interno di un loop attivo, memorizza il loop come loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers Espandi/Collassa Campionatori - + Toggle expanded samplers view. Alterna la visualizzazione espansa dei campionatori. - + Displays the duration of the running recording. Mostra la durata della registrazione in corso. - + Auto DJ is active Auto DJ è attivo - + Red for when needle skip has been detected. - + 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. - + If the track has no beats the unit is seconds. Se la traccia non ha beats l'unità sono i secondi. - + Beatloop Size Dimensione Beatloop - + Select the size of the loop in beats to set with the Beatloop button. Seleziona la dimensione del loop in battiti per abbinarla 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 battiti impostati. - + Temporarily enable a rolling loop over the set number of beats. Abilita temporaneamente un loop continuo in base al numero di battiti impostati. - + Beatloop Anchor Ancora Beatloop - + Define whether the loop is created and adjusted from its staring point or ending point. Definisce se il loop viene creato e regolato dal punto di partenza o dal punto di arrivo. - + 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 battiti impostato. - + Move the loop forward by the set number of beats. Muove il loop in avanti del numero di battiti 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 battiti 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. - + Reloop Reloop - + 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. - + Displays the elapsed and/or remaining time of the track loaded. Mostra il tempo trascorso e/o rimanente della traccia caricata. - + Click to toggle between time elapsed/remaining time/both. Clicca per passare fra tempo trascorso/rimanente/entrambi. - + Hint: Change the time format in Preferences -> Decks. Suggerimento: Modifica il formato del tempo in Preferenze -> Decks. - + Show/hide intro & outro markers and associated buttons. Mostra/nasconde marcatori intro & outro e bottoni associati. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Marcatore Inizio Intro - - - - + + + + If marker is set, jumps to the marker. Se il marcatore è impostato, passa al marcatore. - - - - + + + + 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. - - - - + + + + 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 - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Regola il mixaggio del segnale dry (in entrata) con il wet (in uscita) dell'unità effetto - + D/W mode: Crossfade between dry and wet Modalità D/W: dissolvenza incrociata tra dry e wet - + D+W mode: Add wet to dry Modo D+W: Aggiunge wet a dry - + Mix Mode Modo Mix - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Regola come il segnale dry (in entrata) viene mixato con il wet (in uscita) dell'unità effetto - + 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): manopola mix 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 modificare solo il segnale modificato (wet) con effetti di EQ e 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + 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 Banco Campioni - + Load a previously saved collection of samples into the samplers. Carica nei campionatori una collezione di campioni salvata in precedenza. - + Show Effect Parameters Mostra Parametri Effetto - + Enable Effect Abilita Effetto - + Meta Knob Link Meta Manopola Link - + Set how this parameter is linked to the effect's Meta Knob. Mostra come questo parametro è collegato all'effetto di Meta Knob. - + Meta Knob Link Inversion Meta Manopola Inversione Link - + 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 Passa alla Prossima/Precedente catena - + Clear Cancella - + Clear the current effect. Cancella l'effetto corrente. - + Toggle Abilita - + Toggle the current effect. Abilità l'effetto corrente. - + Next Successivo - + Clear Unit Cancella Unità - + Clear effect unit. Unità di pulizia effetti. - + Show/hide parameters for effects in this unit. Mostra/nasconde i parametri per gli effetti in questa unità. - + Toggle Unit Attiva Unità - + Enable or disable this whole effect unit. Abilita o disabilita questa intera unità effetto. - + 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit Assegna Unità Effetto - + Assign this effect unit to the channel output. Assegna questa unità effetto all'uscita canale. - + 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. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. L'unità effetto deve essere assegnata anche ad un deck o altra sorgente suono per sentire l'effetto. - + Switch to the 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 the next or previous effect. Passa all'effetto precedente o successivo. - + Meta Knob Manopola Meta - + Controls linked parameters of this effect Controlla parametri collegati a questo effetto. - + Effect Focus Button Pulsante Focus Effetto - + Focuses this effect. Focalizza questo effetto. - + Unfocuses this effect. Toglie la focalizzazione da questo effetto. - + 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 - + Adjusts a parameter of the effect. Regola un parametro dell'effetto. - + 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. Trattiene il gain del EQ a zero quando attivo. - + Quick Effect Super Knob Effetto rapido Super Manopola - + Quick Effect Super Knob (control linked effect parameters). Effetto Rapido Super Manopola (parametri di controllo effetti collegati). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Suggerimento: Modifica il modo Effetto Rapido predefinito in Preferenze -> Equalizzatori. - + Equalizer Parameter Parametro Equalizzatore - + Adjusts the gain of the EQ filter. Regola il gain del filtro EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Suggerimento: Modifica il Modo EQ predefinito in Preferenze -> Equalizzatori - - + + Adjust Beatgrid Regola Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. Regola Beatgrid per allinearlo alla posizione di esecuzione corrente. - - + + Adjust beatgrid to match another playing deck. Regola Beatgrid per allinearsi ad un altro deck che suona - + If quantize is enabled, snaps to the nearest beat. Se quantizza è abilitato, si collega al beat più vicino. - + Quantize Quantizza - + Toggles quantization. Abilita 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 l'esecuzione della traccia durante l'esecuzione normale. - + Puts a track into reverse while being held (Censor). Pone una traccia in reverse mentre è cliccato (Censore). - + Playback continues where the track would have been if it had not been temporarily reversed. L'esecuzione continua dove la traccia sarebbe stata se non fosse stata temporaneamente invertita. - - - + + + Play/Pause Play/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 a quello dell'altra traccia, se il BPM è stato calcolato su entrambe. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincronizza il tempo (BPM) a quello dell'altra traccia, se il BPM è stato calcolato su entrambe. - + Sync and Reset Key Sincronizza e Reimposta Chiave - + Increases the pitch by one semitone. Incrementa il pitch di un semitono. - + Decreases the pitch by one semitone. Diminuisce il pitch di un semitono. - + Enable Vinyl Control Abilita il Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. Quando disabilitato, la traccia è controllata dai controlli di esecuzione di Mixxx. - + When enabled, the track responds to external vinyl control. Quando abilitata, la traccia risponde al controllo vinile esterno. - + Enable Passthrough Abilita Inoltro diretto Passtrough - + Indicates that the audio buffer is too small to do all audio processing. Indica che il buffer audio è troppo piccolo per elaborare l'audio. - + Displays cover artwork of the loaded track. Mostra la copertina della traccia caricata. - + Displays options for editing cover artwork. Visualiza le opzioni per modificare la copertina. - + Star Rating Valutazione Stelle - + Assign ratings to individual tracks by clicking the stars. Assegna valutazione alle tracce individualmente cliccando sulle stelle. @@ -14727,33 +15203,33 @@ Usalo per modificare solo il segnale modificato (wet) con effetti di EQ e filtro Forza Ducking Talkover Microfono - + Prevents the pitch from changing when the rate changes. Previene il cambio del pitch quando il rate cambia. - + 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 l'esecuzione 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. Riproduci o Pausa la traccia - + (while playing) (quando riproduce) @@ -14773,215 +15249,215 @@ Usalo per modificare solo il segnale modificato (wet) con effetti di EQ e filtro Livello Volume Canale Master R - + (while stopped) (mentre è in stop) - + Cue Cue - + Headphone Cuffie - + Mute Muto - + Old Synchronize Vecchio Sincronizza - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincronizza al primo deck (in ordine numerico) che sta suonando una traccia e ha un BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Se nessun deck sta suonando, sincronizza al primo deck che ha un BPM. - + Decks can't sync to samplers and samplers can only sync to decks. I Deck non si possono sincronizzare con i campioni e i campioni si possono sincronizzare solo con i deck. - + Hold for at least a second to enable sync lock for this deck. Trattieni per almeno un secondo per abilitare il blocca sincronizzazione 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. I deck con il blocco sync suoneranno tutti allo stesso tempo, e anche i deck che hanno anche il quantizza abilitato avranno il beat allineato. - + Resets the key to the original track key. Reimposta la chiave alla chiave originale della traccia. - + Speed Control Controllo Velocità - - - + + + Changes the track pitch independent of the tempo. Modifica il pitch della traccia indipendentemente del tempo. - + Increases the pitch by 10 cents. Incrementa il pitch di 10 centesimi. - + Decreases the pitch by 10 cents. Diminuisce il pitch di 10 centesimi. - + Pitch Adjust Controlla intonazione - + Adjust the pitch in addition to the speed slider pitch. Regola il pitch dal pitch velocità slider - + 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. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Registra il Mix - + Toggle mix recording. Abilita registrazione mix - + Enable Live Broadcasting Abilita la Trasmissione Live - + Stream your mix over the Internet. Trasmette il tuo mix su Internet. - + Provides visual feedback for Live Broadcasting status: Offre un feedback visivo dello stato della Trasmissione Live: - + disabled, connecting, connected, failure. Disabilitato, in connessione, connesso, fallimento. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Quando abilitato, il deck suona direttamente l'audio proveniente dall'input vinile. - + Playback will resume where the track would have been if it had not entered the loop. L'esecuzione riprenderà dove la traccia sarebbe stata se non si fossero abilitati i loop. - + Loop Exit Esci dal Loop - + Turns the current loop off. Interrompe il loop corrente. - + Slip Mode Modalità Slip - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Quando attivo, l'esecuzione 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 disabilitato, il suono udibile riprenderà dove la traccia avrebbe dovuta essere. - + Track Key The musical key of a track Chiave della traccia - + Displays the musical key of the loaded track. Mostra la chiave musicale della traccia caricata. - + Clock Orologio - + 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. Mostra la frazione di latenza usata per processare l'audio. - + A high value indicates that audible glitches are likely. Un valore alto indica che artefatti udibili sono probabili. - + 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 @@ -15021,259 +15497,259 @@ Usalo per modificare solo il segnale modificato (wet) con effetti di EQ e filtro Attiva il Vinyl Control dal Menu -> Opzioni. - + Displays the current musical key of the loaded track after pitch shifting. Mostra la chiave musicale corrente della traccia caricata dopo lo spostamento del pitch. - + Fast Rewind Indietro veloce - + Fast rewind through the track. Indietro veloce attraverso la traccia. - + Fast Forward Avanti veloce - + 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 pitch ad una chiave che permetta una transizione armonica all'altra traccia. Richiede che sia stata calcolata una Chiave su entrambe le tracce dei deck coinvolti. - - - + + + Pitch Control Controllo Pitch - + Pitch Rate - + Displays the current playback rate of the track. Visualizza il rate dell'esecuzione della traccia corrente. - + Repeat Ripeti - + When active the track will repeat if you go past the end or reverse before the start. Quando attivo, la traccia si ripeterà se vai oltre la fine oppure inverti prima dell'inizio. - + Eject Espelli - + Ejects track from the player. Espelli la Traccia dal Player - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Se è configurato l'hotcue, salta all'hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Se non è configurato l'hotcue, lo fissa alla posizione di esecuzione corrente. - + Vinyl Control Mode Modalità Controllo Vinile - + Absolute mode - track position equals needle position and speed. Modo Assoluto - posizione della traccia uguale alla posizione e alla velocita della puntina. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - velocita 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 - velocità traccia uguale all'ultima velocità stabile indipendentemente dall'input della puntina. - + Vinyl Status Stato Vinile - + Provides visual feedback for vinyl control status: Fornisce un feedback visivo dello stato del controllo vinile: - + 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 muovendo la fine del marcatore. - + Deck immediately loops if past the new endpoint. Il deck va in loop immediatamente se si passe il nuovo endpoint. - + Loop Double Raddoppia Loop - + Doubles the current loop's length by moving the end marker. Raddoppia la lunghezza del loop corrente muovento il marcatore di fine loop. - + Beatloop Beatloop - + Toggles the current loop on or off. Abilita o Disabilita il loop corrente. - + Works only if Loop-In and Loop-Out marker are set. Funziona solo se i marcatori Loop-in e Loop-Out sono fissati. - + Vinyl Cueing Mode Modo Cueing Vinile - + Determines how cue points are treated in vinyl control Relative mode: Determina come gestire i cue points nel Modo di Controllo Vinile Relativo: - + Off - Cue points ignored. Off - Cue points 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 cue point, la traccia si posizionerà a quel cue point. - + Track Time Tempo della Traccia - + Track Duration Durata Traccia - + Displays the duration of the loaded track. Mostra la durata della traccia caricata. - + Information is loaded from the track's metadata tags. Le informazioni sono caricate dai tags metadata della traccia. - + 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 - + 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. @@ -15504,47 +15980,75 @@ Questa azione non può essere annullata! WCueMenuPopup - + Cue number Numero cue - + Cue position Posizione cue - + Edit cue label Modifica etichetta cue - + Label... Etichetta... - + Delete this cue Cancella questa cue - - Toggle this cue type between normal cue and saved loop - Alterna questo cue tra il tipo di cue standard ed il loop salvato + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - Clic-sinistro del mouse: Usa la vecchia dimensione o la dimensione del beatloop corrente come dimensione del loop + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Clic-destro: Utilizza la posizione di riproduzione corrente come fine loop, se esso è dopo la cue. + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Hotcue #%1 @@ -15669,323 +16173,363 @@ Questa azione non può essere annullata! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + Ctrl+f + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crea una &Nuova Playlist - + Create a new playlist Crea una nuova playlist - + Ctrl+n Ctrl+n - + Create New &Crate Crea Nuovo &Contenitore - + Create a new crate Crea un nuovo contenitore - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Vista - + Auto-hide menu bar Auto-nascondi la barra del menu - + Auto-hide the main menu bar when it's not used. Auto-nasconde la barra del menu quando non viene usata. - + May not be supported on all skins. Potrebbe non essere supportata su tutte le skin - + 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 la Sezione Microfono - + Show the microphone section of the Mixxx interface. Mostra la Sezione Microfono dell'interfaccia Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostra la Sezione Controllo Vinile - + Show the vinyl control section of the Mixxx interface. Mosta la sezione Vinyl Control della Interfaccia Mixxx - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostra Anteprima Deck - + Show the preview deck in the Mixxx interface. Mostra l'anteprima del deck nell'interfaccia di Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Mostra Copertina - + Show cover art in the Mixxx interface. Mostra la 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 - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Schermo intero - + Display Mixxx using the full screen Visualizza Mixxx a schermo intero - + &Options &Opzioni - + &Vinyl Control Controllo &Vinile - + Use timecoded vinyls on external turntables to control Mixxx Usa vinili timecoded su piatti esterni per controllare Mixxx - + Enable Vinyl Control &%1 Abilita Controllo Vinile &%1 - + &Record Mix &Registra il Mixaggio - + Record your mix to a file Registra il tuo Mixaggio su un file - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Abilita Live &Broadcasting - + 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 da Tastiera - + Toggles keyboard shortcuts on or off Alterna le scorciatoie da Tastiera On/Offf - + Ctrl+` Ctrl+` - + &Preferences &Preferenze - + Change Mixxx settings (e.g. playback, MIDI, controls) Cambia le impostazioni di Mixxx (per esempio la riproduzione, i Midi, i controlli) - + &Developer &Sviluppatore - + &Reload Skin Ricarica la Skin - + Reload the skin Ricarica la Skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Strumenti Sviluppa&tori - + Opens the developer tools dialog Apre lo strumento dialogo sviluppatore - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Statistiche: Cassetto &Esperimento - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Abilita il modo esperimento. Colleziona statistiche nel cassetto di tracciamento esperimento. - + 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 ruota di chiave @@ -16002,74 +16546,74 @@ Questa azione non può essere annullata! Esporta la libreria nel formato Engine DJ - + Show keywheel tooltip text Mostra ruota di chiave - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Supporto della &comunità - + Get help with Mixxx Ottieni dell'aiuto con 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. - + &Settings directory Cartella Impostazioni - + Open the Mixxx user settings directory. Apre la directory delle impostazioni utente di Mixxx. - + &Translate This Application &Traduci questa applicazione - + Help translate this application into your language. Aiutaci a tradurre questo programma nella tua lingua. - + &About &Informazioni su - + About the application Informazioni sull'applicazione @@ -16077,25 +16621,25 @@ Questa azione non può essere annullata! WOverview - + 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... @@ -16104,25 +16648,13 @@ Questa azione non può essere annullata! WSearchLineEdit - - Clear input - Clear the search bar input field - Cancella l'input - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Cerca - + Clear input Cancella l'input @@ -16133,93 +16665,87 @@ Questa azione non può essere annullata! 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 + + Return + Invio - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Usa operatori come bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Per maggiori informazioni vedi il Manuale Utente > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Scorciatoia da tastiera + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Il centro + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Del + + Additional Shortcuts When Focused: + - Shortcuts - Scorciatoie + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - + Esc or Ctrl+Return + Esc or Ctrl+Invio - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Attiva la ricerca prima del timeout della ricerca-come-tu-scrivi o salta alla visualizzazione dei brani in seguito + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Spazio - + Toggle search history Shows/hides the search history entries Attiva/disattiva cronologia ricerche - + Delete or Backspace Cancella o Backspace - - Delete query from history - Cancella query dallo storico - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Esci dalla ricerca + + Delete query from history + Cancella query dallo storico @@ -16303,625 +16829,640 @@ Questa azione non può essere annullata! WTrackMenu - + Load to Carica su - + Deck Deck - + Sampler Campionatore - + Add to Playlist Aggiungi alla playlist - + Crates Contenitori - + Metadata Metadati - + Update external collections Aggiorna collezioni estrerne - + Cover Art Immagine Copertina - + Adjust BPM Regolazione BPM - + Select Color Seleziona Colore - - + + Analyze Analizza - - + + Delete Track Files Cancella File Traccia - + 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) Aggiunge a Auto DJ (sostituisce) - + Preview Deck Deck Anteprima - + Remove Rimuovi - + Remove from Playlist Rimuovi dalla Playlist - + Remove from Crate Togli da Contenitore - + Hide from Library Nascondi dalla Libreria - + Unhide from Library Mostra nella Libreria - + Purge from Library Elimina dalla Libreria - + Move Track File(s) to Trash Sposta file della traccia/e nel Cestino - + Delete Files from Disk Cancella File dal Disco - + Properties Proprietà - + Open in File Browser Apri nel File Manager - + Select in Library Seleziona in Libreria - + 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 - + Rating Voto - + Cue Point Punto Cue - - + + Hotcues Hotcue - + Intro Intro - + Outro Outro - + Key Parola chiave - + ReplayGain Riapplica Gain - + Waveform Forma d'onda - + Comment Commento - + All Tutto - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Blocca i BPM - + Unlock BPM Sblocca i BPM - + Double BPM raddoppia BPM - + Halve BPM Dimezza BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze Rianalizza - + Reanalyze (constant BPM) Ri-Analizza (BPM costanti) - + Reanalyze (variable BPM) Ri-Analizza (BPM variabili) - + Update ReplayGain from Deck Gain Aggiorna il ReplayGain dal Guadagno del Deck - + Deck %1 Deck %1 - + Importing metadata of %n track(s) from file tags Import dei metadati di %n traccia dai tags dei fileImport dei metadati di %n tracce dai tags dei fileImport dei metadati di %n traccia(e) dai tags dei file - + Marking metadata of %n track(s) to be exported into file tags Marca i metadati di %n traccia al fine di essere esportati nei tags dei fileMarca i metadati di %n tracce al fine di essere esportati nei tags dei fileMarca i metadati di %n tracce al fine di essere esportati nei tags dei file - - + + 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 Aggiungi a Nuovo Contenitore - + Scaling BPM of %n track(s) Scalatura BPM di %n tracciaScalatura BPM di %n tracceScalatura BPM di %n tracce - + Undo BPM/beats change of %n track(s) Annulla la modifica ai BPM/beats di %n tracciaAnnulla la modifica ai BPM/beats di %n tracceAnnulla la modifica ai BPM/beats di %n traccia(e) - + Locking BPM of %n track(s) Blocco BPM di %n tracciaBlocco BPM di %n tracceBlocco BPM di %n tracce - + Unlocking BPM of %n track(s) Sblocco BPM di %n tracciaSblocco BPM di %n traccieSblocco BPM di %n tracce - + Setting rating of %n track(s) Imposta la valutazione di %n tracciaImposta la valutazione di %n tracceImposta la valutazione di %n traccia(e) - + Setting color of %n track(s) Impostazione del colore di %n tracciaImpostazione del colore di %n tracceImpostazione del colore di %n tracce - + Resetting play count of %n track(s) Reimpostazione del conteggio di riproduzione di %n tracciaReimpostazione del conteggio di riproduzione di %n tracceReimpostazione del conteggio di riproduzione di %n tracce - + Resetting beats of %n track(s) Reimpostazione delle battute di %n tracciaReimpostazione delle battute di %n tracceReimpostazione delle battute di %n tracce - + Clearing rating of %n track(s) Cancellazione della valutazione di %n tracciaCancellazione della valutazione di %n tracceCancellazione della valutazione di %n tracce - + Clearing comment of %n track(s) Cancellazione dei commenti di %n tracciaCancellazione dei commenti di %n tracceCancellazione del commento di %n tracce - + Removing main cue from %n track(s) Rimozione del main cue da %n tracciaRimozione del main cue da %n tracceRimozione del main cue da %n tracce - + Removing outro cue from %n track(s) Rimozione dell'outro cue da %n tracciaRimozione dell'outro cue da %n tracceRimozione dell'outro cue da %n tracce - + Removing intro cue from %n track(s) Rimozione dell'intro cue da %n tracciaRimozione dell'intro cue da %n tracceRimozione dell'intro cue da %n tracce - + Removing loop cues from %n track(s) Rimozione loop cues da %n tracciaRimozione loop cues da %n tracceRimozione loop cues da %n tracce - + Removing hot cues from %n track(s) Rimozione hot cues da %n tracciaRimozione hot cues da %n tracceRimozione hot cues da %n tracce - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) Reimpostazione della chiave musicale di %n tracciaReimpostazione della chiave musicale di %n tracceReimpostazione della chiave musicale di %n tracce - + Resetting replay gain of %n track(s) Reimpostazione del guadagno di riproduzione di %n tracciaReimpostazione del guadagno di riproduzione di %n tracceReimpostazione del guadagno di riproduzione di %n tracce - + Resetting waveform of %n track(s) Reimpostazione della forma d'onda di %n tracciaReimpostazione della forma d'onda di %n tracceReimpostazione della forma d'onda di %n tracce - + Resetting all performance metadata of %n track(s) Reimpostazione dei metadati delle performance di %n tracciaReimpostazione dei metadati delle performance di %n tracceReimpostazione dei metadati delle performance di %n tracce - + Move these files to the trash bin? Spostare questi file nel cestino? - + Permanently delete these files from disk? Cancellare definitivamente questi file dal disco? - - + + This can not be undone! Questo non può essere annullato! - + Cancel Annulla - + Delete Files Cancella Files - + Okay Okay - + Move Track File(s) to Trash? Sposto il/i File Traccia/e nel Cestino? - + Track Files Deleted File Tracce Cancellate - + Track Files Moved To Trash File Traccia Spostati nel Cestino - + %1 track files were moved to trash and purged from the Mixxx database. %1 file delle tracce sono stati spostati nel cestino ed eliminati dal database di Mixxx. - + %1 track files were deleted from disk and purged from the Mixxx database. i file delle tracce %1 sono stati cancellati dal disco ed eliminati dal database di Mixxx. - + Track File Deleted File Traccia Cancellati - + Track file was deleted from disk and purged from the Mixxx database. Il file della traccia è stato eliminato dal disco e cancellato dal database Mixxx. - + The following %1 file(s) could not be deleted from disk I seguenti file %1 file(s) non possono essere eliminati dal disco - + This track file could not be deleted from disk Non è stato possibile eliminare questo file di traccia dal disco - + Remaining Track File(s) File di Tracce Rimanente(i) - + Close Chiudi - + Clear Reset metadata in right click track context menu in library Pulisci - + Loops Loop - + Clear BPM and Beatgrid Pulisci BPM e Beatgrid - + Undo last BPM/beats change Annulla l'ultima modifica dei BPM/Beat - + Move this track file to the trash bin? Spostare questo file traccia nel cestino? - + Permanently delete this track file from disk? Cancellare definitivamente questi file dal disco? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Tutti i deck in cui sono caricate queste tracce verranno fermati e le tracce verranno espulse. - + All decks where this track is loaded will be stopped and the track will be ejected. Tutti i deck in cui è caricata questa traccia verrà fermato e la traccia verrà espulsa. - + Removing %n track file(s) from disk... Rimuovendo %n file dal disco... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: se sei nella vista Computer o Registrazione devi cliccare di nuovo sulla vista corrente per vedere i cambiamenti. - + Track File Moved To Trash File Traccia Spostato nel Cestino - + Track file was moved to trash and purged from the Mixxx database. Il file della traccia è stato spostato nel cestino ed eliminato dal database di Mixxx. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash I seguenti file %1 non possono essere spostati nel cestino - + This track file could not be moved to trash Questo file di traccia non può essere spostato nel cestino + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Impostazione della copertina di %n tracciaImpostazione della copertina di %n tracceImpostazione della copertina di %n tracce - + Reloading cover art of %n track(s) Ricaricamento copertina di %n tracciaRicaricamento copertina di %n tracceRicaricamento copertina di %n tracce @@ -16975,37 +17516,37 @@ Questa azione non può essere annullata! WTrackTableView - + Confirm track hide Conferma nascondimento traccia - + Are you sure you want to hide the selected tracks? Sei sicuro di voler nascondere le tracce selezionate? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Sei sicuro di voler rimuovere le tracce selezionate dalla coda di AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Sei sicuro di voler rimuovere le tracce selezionate da questo contenitore? - + Are you sure you want to remove the selected tracks from this playlist? Sei sicuro di voler rimuovere i brani selezionati da questa playlist? - + Don't ask again during this session Non chiedere ancora durante questa sessione - + Confirm track removal Conferma rimozione traccia @@ -17013,12 +17554,12 @@ Questa azione non può essere annullata! WTrackTableViewHeader - + Show or hide columns. Mostra o nasconde colonne. - + Shuffle Tracks @@ -17056,22 +17597,22 @@ Questa azione non può essere annullata! libreria - + Choose music library directory Scegli la cartella della tua libreria musicale - + controllers 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. @@ -17228,6 +17769,24 @@ Clicca su OK per uscire. La richiesta di rete non è stata avviata + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17236,4 +17795,27 @@ Clicca su OK per uscire. Nessun effetto caricato. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_ja.qm b/res/translations/mixxx_ja.qm index 609067dc47e6..48e35707c001 100644 Binary files a/res/translations/mixxx_ja.qm and b/res/translations/mixxx_ja.qm differ diff --git a/res/translations/mixxx_ja.ts b/res/translations/mixxx_ja.ts index acb121d3d6ef..f240c7e6e7f0 100644 --- a/res/translations/mixxx_ja.ts +++ b/res/translations/mixxx_ja.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates レコードボックス - + Enable Auto DJ オートDJを有効にする - + Disable Auto DJ オートDJを無効にする - + Clear Auto DJ Queue - + Remove Crate as Track Source - + Auto DJ オートDJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. この操作は取り消しできません - + Add Crate as Track Source トラックソースを追加 @@ -221,7 +229,7 @@ - + Export Playlist プレイリストをエクスポート @@ -275,13 +283,13 @@ - + Playlist Creation Failed プレイリストの作成に失敗 - + An unknown error occurred while creating playlist: プレイリストの作成中に不明なエラーが発生しました @@ -296,12 +304,12 @@ - + 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);; @@ -309,12 +317,12 @@ BaseSqlTableModel - + # # - + Timestamp 更新日時 @@ -322,7 +330,7 @@ BaseTrackPlayerImpl - + Couldn't load track. トラックを読み込めませんでした @@ -360,7 +368,7 @@ チャンネル - + Color @@ -375,7 +383,7 @@ 作曲者 - + Cover Art カバーアート @@ -385,7 +393,7 @@ 追加日時 - + Last Played 最終プレイ @@ -415,7 +423,7 @@ キー - + Location ファイルの場所 @@ -425,7 +433,7 @@ - + Preview プレビュー @@ -465,7 +473,7 @@ 発売年 - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk イメージを取得しています @@ -487,22 +495,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. キーチェインにアクセス不可のためパスワードを利用できません。 - + Secure password retrieval unsuccessful: keychain access failed. キーチェインにアクセス不可のためパスワードの回復に失敗しました。 - + Settings error 設定エラー - + <b>Error with settings for '%1':</b><br> @@ -590,7 +598,7 @@ - + Computer コンピュータ @@ -610,17 +618,17 @@ スキャン - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -733,12 +741,12 @@ ファイルを作成しました - + Mixxx Library Mixxx ライブラリ - + Could not load the following file because it is in use by Mixxx or another application. Mixxxもしくは他のアプリケーションで使用中のため、以下のファイルを読み込めませんでした @@ -769,88 +777,93 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: MixxxはオープンソースのDJソフトウェアです。 さらなる情報はこちら - + Starts Mixxx in full-screen mode Mixxxをフルスクリーンで起動する - + Use a custom locale for loading translations. (e.g 'fr') - + 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -860,32 +873,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -978,2567 +991,2748 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output ヘッドホン出力 - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 デッキ %1 - + Sampler %1 サンプラー %1 - + Preview Deck %1 プレビューデッキ %1 - + Microphone %1 マイク %1 - + Auxiliary %1 - + Reset to default 初期値に戻す - + Effect Rack %1 - + Parameter %1 パラメータ %1 - + Mixer ミキサー - - + + Crossfader クロスフェーダー - + Headphone mix (pre/main) - + Toggle headphone split cueing ヘッドフォンのスプリットキューイングのON/OFF - + Headphone delay ヘッドホン ディレイ - + Transport - + Strip-search through track - + Play button 再生ボタン - - + + Set to full volume 最大音量に設定 - - + + Set to zero volume 最小音量に設定 - + Stop button 停止ボタン - + Jump to start of track and play トラックの先頭から再生 - + Jump to end of track トラックの最後に移動 - + Reverse roll (Censor) button - + Headphone listen button モニタリングボタン - - + + Mute button ミュートボタン - + Toggle repeat mode リピート切り替えボタン - - + + Mix orientation (e.g. left, right, center) - - + + Set mix orientation to left - - + + Set mix orientation to center - - + + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode キーロックモードON/OFF - + Equalizers イコライザ - + 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 ホットキュー %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 ライブラリ - + Slot %1 - + Headphone Mix ヘッドホンミックス - + Headphone Split Cue ヘッドホン スプリットキュー - + Headphone Delay ヘッドホン ディレイ - + Play 再生 - + Fast Rewind 早戻し - + Fast Rewind button 早戻しボタン - + Fast Forward 早送り - + Fast Forward button 早送りボタン - + Strip Search - + Play Reverse 逆再生 - + Play Reverse button 逆再生ボタン - + Reverse Roll (Censor) - + Jump To Start 先頭に戻る - + Jumps to start of track 曲の先頭に戻る - + Play From Start 先頭から再生 - + Stop 停止 - + Stop And Jump To Start 停止して先頭に戻る - + Stop playback and jump to start of track - + Jump To End - + Volume 音量 - - - + + + Volume Fader 音量フェーダー - - + + Full Volume 最大音量 - - + + Zero Volume 音量 0 - + Track Gain トラック ゲイン - + Track Gain knob トラック ゲイン ノブ - - + + Mute ミュート - + Eject イジェクト - - + + Headphone Listen ヘッドホン モニタリング - + Headphone listen (pfl) button - + Repeat Mode リピートモード - + Slip Mode - - + + Orientation - - + + Orient Left - - + + Orient Center - - + + Orient Right - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPMタップ - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync 同期 - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 オリジナルのキーへリセットする - + High EQ 高域 EQ - + Mid EQ 中域 EQ - - + + Main Output - + Main Output Balance - + Main Output Delay メイン出力 ディレイ - + Main Output Gain - + Low EQ 低域 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 キューをセット - + 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 選択された曲をオート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 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 - + 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 - + Headphone Gain ヘッドホン ゲイン - + Headphone gain ヘッドホン ゲイン - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin スキン - + Controller コントローラー - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone ヘッドホン - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 スピード - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button デッキ %1 クイックエフェクト有効ボタン - + + Quick Effect Enable Button クイックエフェクト有効化ボタン - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - - Select either next or previous color in the palette for the loaded track. + + Select either next or previous color in the palette for the loaded track. + + + + + Start/Stop Live Broadcasting + + + + + Stream your mix over the Internet. + + + + + Start/stop recording your mix. + + + + + + Deck %1 Stems + + + + + + Samplers + + + + + Vinyl Control Show/Hide + + + + + Show/hide the vinyl control section + + + + + Preview Deck Show/Hide + + + + + Show/hide the preview deck + + + + + Toggle 4 Decks + 4デッキ ON/OFF + + + + 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 + + + + + Controller + + + Unknown + + + + + ControllerHidReportTabsManager + + + Read - - Start/Stop Live Broadcasting + + Send - - Stream your mix over the Internet. + + Payload Size - - Start/stop recording your mix. + + bytes - - - Samplers + + Byte Position - - Vinyl Control Show/Hide + + Bit Position - - Show/hide the vinyl control section + + Bit Size - - Preview Deck Show/Hide + + Logical Min - - Show/hide the preview deck + + Logical Max - - Toggle 4 Decks - 4デッキ ON/OFF + + Value + - - Switches between showing 2 decks and 4 decks. - 2デッキと4デッキを切り替えます。 + + Physical Min + - - Cover Art Show/Hide (Decks) + + Physical Max - - Show/hide cover art in the main decks + + Unit Scaling - - Vinyl Spinner Show/Hide + + Unit - - Show/hide spinning vinyl widget + + Abs/Rel - - Vinyl Spinners Show/Hide (All Decks) + + + Wrap - - Show/Hide all spinnies + + + Linear - - Toggle Waveforms + + + Preferred - - Show/hide the scrolling waveforms. + + + Null - - Waveform zoom + + + Volatile - - Waveform Zoom + + Usage Page - - Zoom waveform in + + Usage - - Waveform Zoom In + + Relative - - Zoom waveform out + + Absolute - - Star Rating Up + + No Wrap - - Increase the track rating by one star + + Non Linear - - Star Rating Down + + No Preferred - - Decrease the track rating by one star + + No Null - - - Controller - - Unknown + + Non Volatile @@ -3644,32 +3838,32 @@ trace - Above + Profiling messages 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. @@ -3677,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3730,7 +3924,7 @@ trace - Above + Profiling messages - + Lock ロックをかける @@ -3760,7 +3954,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3777,22 +3971,22 @@ trace - Above + Profiling messages レコードボックスのインポート - + Export Crate レコードボックスのエクスポート - + Unlock ロックを解除 - + An unknown error occurred while creating crate: 新しいレコードボックスを作成中にエラーが発生しました - + Rename Crate レコードボックスの名前を変更 @@ -3802,28 +3996,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + 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);; - + M3U Playlist (*.m3u) M3U プレイリスト (*.m3u) @@ -3844,17 +4038,17 @@ trace - Above + Profiling messages Cratesはあなたがしたいあなたの音楽を整理しましょう! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. レコードボックスには名前が必要です。 - + A crate by that name already exists. この名前のレコードボックスは既に存在します @@ -3949,12 +4143,12 @@ trace - Above + Profiling messages 過去の開発 - + Official Website - + Donate @@ -4746,122 +4940,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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-AACv2 - + Automatic - + Mono モノラル - + Stereo ステレオ - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed 操作に失敗しました - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4874,27 +5085,27 @@ Two source connections to the same server that have the same mountpoint can not ライブ放送設定 - + Mixxx Icecast Testing - + Public stream 公開ストリーム - + http://www.mixxx.org http://www.mixxx.org - + Stream name ストリーム名 - + 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. Ogg Vorbis の動的メタデータ更新は、ストリーミング受信側に不備があった場合に切断などの不具合を引き起こすことがあります。 @@ -4934,67 +5145,72 @@ Two source connections to the same server that have the same mountpoint can not %1 の設定 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Ogg Vorbis のメタデータを動的に更新 - + ICQ ICQ - + AIM AIM - + Website ウェブサイト - + Live mix ライブミックス - + IRC IRC - + Select a source connection above to edit its settings here 上で接続を選択し、ここで設定してください - + Password storage パスワード保管 - + Plain text 平文 - + Secure storage (OS keychain) セキュア (OSのキーチェイン) - + Genre ジャンル - + Use UTF-8 encoding for metadata. メタデータに UTF-8 エンコーディングを使用 - + Description 概要 @@ -5020,42 +5236,42 @@ Two source connections to the same server that have the same mountpoint can not チャンネル - + Server connection サーバ接続 - + Type タイプ - + Host ホストアドレス - + Login ログイン名 - + Mount マウントポイント - + Port ポート番号 - + Password パスワード - + Stream info ストリーム情報 @@ -5065,17 +5281,17 @@ Two source connections to the same server that have the same mountpoint can not メタデータ - + Use static artist and title. 固定のアーティストとタイトルを使用 - + Static title 固定のタイトル - + Static artist 固定のアーティスト @@ -5134,13 +5350,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5185,17 +5402,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5203,113 +5425,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None なし - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5327,100 +5549,105 @@ Apply settings and continue? 有効 - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: 説明: - + Support: サポート - + Screens preview - + Input Mappings - - + + Search - - + + Add 追加 - - + + Remove 削除する @@ -5440,17 +5667,17 @@ Apply settings and continue? - + Mapping Info - + Author: 作者: - + Name: 名称: @@ -5460,28 +5687,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All すべてクリア - + Output Mappings @@ -5496,21 +5723,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5640,6 +5867,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5669,137 +5906,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx モード - + Mixxx mode (no blinking) Mixxx モード(点滅なし) - + Pioneer mode Pioneer モード - + Denon mode Denon モード - + Numark mode Numark モード - + CUP mode CUP モード - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start イントロスタート - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6%(半音) - + 8% (Technics SL-1210) 8%(Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6231,62 +6468,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information 通知 - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6513,67 +6750,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 スキャン - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font @@ -6622,262 +6889,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats オーディオファイル形式 - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: ライブラリのフォント: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory 設定フォルダ - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder Mixxx 設定フォルダを開く - + Library Row Height: ライブラリの行の高さ - + Use relative paths for playlist export if possible プレイリストのエクスポート時に可能ならば相対パスを使用する - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: 検索タイプ入力のタイムアウト: - + ms ms - + Load track to next available deck - + External Libraries 外部ライブラリ - + You will need to restart Mixxx for these settings to take effect. 設定を有効にするには Mixxx を再起動する必要があります。 - + Show Rhythmbox Library Rhythmbox ライブラリを表示 - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore 何もしない - + Show Banshee Library Banshee ライブラリを表示 - + Show iTunes Library iTunes ライブラリを表示 - + Show Traktor Library Traktor ライブラリを表示 - + Show Rekordbox Library Rekordbox ライブラリを表示 - + Show Serato Library Serato ライブラリを表示 - + All external libraries shown are write protected. 表示されている全ての外部ライブラリは書き込み保護されます。 @@ -7222,33 +7494,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7266,43 +7538,55 @@ and allows you to pitch adjust them for harmonic mixing. 参照... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality 音質 - + Tags タグ - + Title タイトル - + Author 作者 - + Album アルバム - + Output File Format エクスポート ファイル 形式 - + Compression 圧縮 - + Lossy 非可逆圧縮 @@ -7317,12 +7601,12 @@ and allows you to pitch adjust them for harmonic mixing. 場所: - + Compression Level 圧縮レベル - + Lossless ロスレス @@ -7453,172 +7737,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) 標準 (遅延 大) - + Experimental (no delay) 試験中 (遅延無し) - + Disabled (short delay) 無効 (遅延 小) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled 無効 - + Enabled 有効 - + Stereo ステレオ - + Mono モノラル - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error 設定エラー @@ -7685,17 +7974,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 @@ -7720,12 +8014,12 @@ The loudness target is approximate and assumes track pregain and main output lev 入力 - + System Reported Latency システムで検知した遅延 - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. @@ -7755,7 +8049,7 @@ The loudness target is approximate and assumes track pregain and main output lev ヒントと診断 - + Downsize your audio buffer to improve Mixxx's responsiveness. @@ -7802,7 +8096,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinylの設定 - + Show Signal Quality in Skin スキン内のシグナルクオリティを表示 @@ -7838,46 +8132,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 Deck 3 - + Deck 4 Deck 4 - + Signal Quality 信号の強さ - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + Hints ヒント - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7885,58 +8184,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGLが利用できません - + dropped frames ドロップフレーム - + Cached waveforms occupy %1 MiB on disk. @@ -7954,22 +8253,17 @@ The loudness target is approximate and assumes track pregain and main output lev フレームレート - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. - - Normalize waveform overview - - - - + Average frame rate @@ -7985,7 +8279,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -8020,7 +8314,7 @@ The loudness target is approximate and assumes track pregain and main output lev 低い - + Show minute markers on waveform overview @@ -8065,7 +8359,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + 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. @@ -8132,22 +8426,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8163,7 +8457,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8193,12 +8487,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8687,7 +9027,7 @@ This can not be undone! BPM: - + Location: @@ -8702,27 +9042,27 @@ This can not be undone! - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. @@ -8777,49 +9117,49 @@ This can not be undone! ジャンル - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM 2倍 BPM - + Halve BPM 1/2 BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next @@ -8844,12 +9184,12 @@ This can not be undone! - + Date added: - + Open in File Browser @@ -8859,12 +9199,17 @@ This can not be undone! - + + Filesize: + + + + Track BPM: トラックBPM: - + 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. @@ -8873,90 +9218,90 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 高い品質のビートグリッドが得られることが多いですが、テンポが変化するトラックではうまくいきません。 - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat タップテンポ - + Hint: Use the Library Analyze view to run BPM detection. ヒント:BPM検出をさせるにはライブラリの解析画面を使用します。 - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply 適用(&A) - + &Cancel キャンセル(&C) - + (no color) @@ -8986,7 +9331,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Album Artist - アルバムアーティスト + アルバム アーティスト @@ -9113,7 +9458,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9315,27 +9660,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (高速) - + Rubberband (better) Rubberband (高品質) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9388,7 +9733,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Album - アーティスト + + アーティスト + アルバム @@ -9550,15 +9895,15 @@ 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 @@ -9569,57 +9914,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9627,62 +9972,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9692,22 +10037,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9844,12 +10189,12 @@ Do you really want to overwrite it? - + Export to Engine DJ - + Tracks @@ -9857,37 +10202,37 @@ 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 リトライ @@ -9897,209 +10242,209 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10115,13 +10460,13 @@ Do you want to select an input device? PlaylistFeature - + Lock ロックをかける - - + + Playlists プレイリスト @@ -10131,58 +10476,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock ロックを解除 - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 新規プレイリストの作成 @@ -10281,58 +10631,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 @@ -10446,69 +10796,82 @@ Do you want to scan your library for cover files now? 14ビット (MSB) - + Main + Audio path indetifier メイン - + Booth + Audio path indetifier ブース - + Headphones + Audio path indetifier ヘッドフォン - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier デッキ - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Vinylコントロール - + Microphone + Audio path indetifier マイク - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path 不明なパスタイプ %1 @@ -10839,47 +11202,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome メトロノーム - + + The Mixxx Team - + Adds a metronome click sound to the stream ストリームにメトロノームのクリック音を追加 - + BPM BPM - + Set the beats per minute value of the click sound クリック音のBPM値を設定 - + Sync 同期 - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11664,14 +12029,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11809,7 +12174,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough パススルー @@ -11877,15 +12242,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11914,6 +12350,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11924,11 +12361,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11940,11 +12379,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11973,12 +12414,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12013,42 +12454,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12309,193 +12750,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxxに問題が発生しました。 - + Could not allocate shout_t shout_tがアロケートできませんでした。 - + Could not allocate shout_metadata_t shout_metadata_tがアロケートできませんでした。 - + Error setting non-blocking mode: non-blockingモードに設定できませんでした。 - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. Ogg Vorbis を使った 96 kHz での放送は現在サポートされていません。他のサンプルレートを試すか他のエンコード方式に変更してください。 - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! エラー: 不明なサーバプロトコルです! - + Error: Shoutcast only supports MP3 and AAC encoders エラー: Shoutcast は MP3 と AAC エンコーダのみサポートします - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. ストリーミングサーバとの接続が失われました。 - + Please check your connection to the Internet. インターネットの接続を確認してください。 - + Can't connect to streaming server ストリーミングサーバに接続できません - + Please check your connection to the Internet and verify that your username and password are correct. インターネットの接続、ユーザ名とパスワードを確認してください @@ -12503,7 +12944,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12511,23 +12952,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device デバイス - + An unknown error occurred 未知のエラーがおこりました - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12712,7 +13153,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12894,7 +13335,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art カバーアート @@ -13084,243 +13525,243 @@ may introduce a 'pumping' effect and/or distortion. アクティブにすると低域EQのゲインをゼロにします。 - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo テンポ - + Key The musical key of a track キー - + BPM Tap BPMタップ - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap テンポとBPMタップ - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play 再生 - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13543,947 +13984,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active オートDJを有効にする - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix ミックス - + 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: Add wet to dry - + Mix Mode ミックスモード - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank サンプラーバンクを保存 - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank サンプラーバンクの読み込み - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters エフェクトのパラメータを表示 - + Enable Effect エフェクトを有効化 - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob クイックエフェクトスーパーノブ - + Quick Effect Super Knob (control linked effect parameters). クイックエフェクトスーパーノブ (エフェクトのパラメーターにリンク) - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. ヒント: クイックエフェクトのデフォルトモードの変更は 環境設定->いこらいぜー - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize クォンタイズ - + Toggles quantization. クォンタイズの ON/OFF を切り替えます。 - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause 再生/一時停止 - + Jumps to the beginning of the track. トラックの先頭にジャンプ - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control Vinylコントロールを有効にする - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough パススルーを有効にする - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14618,33 +15094,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14664,215 +15140,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone ヘッドホン - + Mute ミュート - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control スピードコントロール - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting ライブ ブロードキャスティングを有効化 - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock クロック - + Displays the current time. 現在時刻を表示します。 - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14912,259 +15388,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind 早戻し - + Fast rewind through the track. - + Fast Forward 早送り - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat リピート - + When active the track will repeat if you go past the end or reverse before the start. - + Eject イジェクト - + Ejects track from the player. - + Hotcue ホットキュー - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. ホットキューがセットされていなければ、現在の位置にセットする - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status Vinylの状態 - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time トラックの時間 - + Track Duration トラックの長さ - + Displays the duration of the loaded track. 読み込んだトラックの長さを表示します。 - + Information is loaded from the track's metadata tags. 情報はトラックのメタデータタグから読み込まれます。 - + Track Artist トラックアーティスト - + Displays the artist of the loaded track. 読み込んだトラックのアーティストを表示します。 - + Track Title トラックタイトル - + Displays the title of the loaded track. 読み込んだトラックのタイトルを表示します。 - + Track Album アルバム - + Displays the album name of the loaded track. 読み込んだトラックのアルバム名を表示します。 - + Track Artist/Title トラックアーティスト/タイトル - + Displays the artist and title of the loaded track. 読み込んだトラックのアーティストとタイトルを表示します。 @@ -15392,47 +15868,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15557,323 +16061,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist 新しいプレイリストを作成(&N) - + Create a new playlist 新しいプレイリストを作成 - + Ctrl+n Ctrl+n - + Create New &Crate 新しいレコードボックスを作成(&C) - + Create a new crate 新しいレコードボックスを作成 - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View 表示(&V) - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck プレビューデッキを表示 - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art カバーアートを表示 - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library ライブラリを最大化 - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen 全画面表示 (&F) - + Display Mixxx using the full screen Mixxxを全画面表示にする。 - + &Options オプション(&O) - + &Vinyl Control Vinylコントロール(&V) - + Use timecoded vinyls on external turntables to control Mixxx ターンテーブルとタイムコードの記録されているレコードを使用してMixxxを操作する - + Enable Vinyl Control &%1 - + &Record Mix ミックスを録音する (&R) - + Record your mix to a file ミックスをファイルに録音する - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server shoutcastかicecastサーバーを通じてミックスをストリーミング - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` Ctrl+ - + &Preferences 設定(&P) - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled デバッガを有効化(&u) - + Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Shift+D - + &Help ヘルプ(&H) - + Show Keywheel menu title @@ -15890,74 +16434,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel F12 - + &Community Support コミュニティーのサポート(&C) - + Get help with Mixxx - + &User Manual ユーザーマニュアル(_U) - + Read the Mixxx user manual. Mixxxユーザーマニュアルを読む - + &Keyboard Shortcuts キーボードショートカット(&K) - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application このアプリケーションを翻訳(&T) - + Help translate this application into your language. あなたの言語でこのアプリケーションを翻訳するのを手伝ってください。 - + &About このアプリケーションについて(&A) - + About the application このアプリケーションについて @@ -15965,25 +16509,25 @@ This can not be undone! WOverview - + 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 @@ -15992,25 +16536,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -16021,92 +16553,86 @@ This can not be undone! 検索... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history @@ -16191,625 +16717,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck デッキ - + Sampler サンプラー - + Add to Playlist プレイリストに追加する - + Crates レコードボックス - + Metadata メタデータ - + Update external collections - + Cover Art カバーアート - + Adjust BPM BPMを調整 - + Select Color カラーを選択 - - + + Analyze 解析 - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) オートDJの最後に追加 - + Add to Auto DJ Queue (top) オートDJの先頭に追加 - + Add to Auto DJ Queue (replace) - + Preview Deck プレビューデッキ - + Remove 削除する - + Remove from Playlist - + Remove from Crate - + Hide from Library ライブラリから隠す - + Unhide from Library - + Purge from Library ライブラリから削除 - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating 評価 - + Cue Point - - + + Hotcues ホットキュー - + Intro - + Outro - + Key キー - + ReplayGain リプレイゲイン - + Waveform 波形 - + Comment コメント - + All 全て - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPMを固定 - + Unlock BPM BPMの固定を解除 - + Double BPM 2倍 BPM - + Halve BPM 1/2 BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel キャンセル - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close 閉じる - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16863,37 +17404,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16901,12 +17442,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. 列の表示/非表示 - + Shuffle Tracks @@ -16944,22 +17485,22 @@ This can not be undone! - + 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. @@ -17116,6 +17657,24 @@ OKを押すと終了します。 + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17124,4 +17683,27 @@ OKを押すと終了します。 エフェクトが読み込まれていません + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_ko.qm b/res/translations/mixxx_ko.qm index a1c3a29500c2..9dd36d0ad00c 100644 Binary files a/res/translations/mixxx_ko.qm and b/res/translations/mixxx_ko.qm differ diff --git a/res/translations/mixxx_ko.ts b/res/translations/mixxx_ko.ts index f8883a67d113..519ddbcb9b15 100644 --- a/res/translations/mixxx_ko.ts +++ b/res/translations/mixxx_ko.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates 상자 - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source 트랙 영역에 삭제 - + Auto DJ 자동 디제잉 - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source 트랙 영역에 추가 @@ -148,7 +156,7 @@ BasePlaylistFeature - + New Playlist 새 재생 목록 @@ -159,7 +167,7 @@ - + Create New Playlist 새 재생 목록 만들기 @@ -189,113 +197,120 @@ 복제 - - + + 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) 자동 디제잉 대기열에 넣기 (교체) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: 재생 목록을 생성하는 도중에 알 수 없는 에러가 발생했습니다: - + Confirm Deletion 삭제 확인하기 - + Do you really want to delete playlist <b>%1</b>? 플레이리스트 <b>%1</b>를 삭제하시겠습니까? - + 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) @@ -303,12 +318,12 @@ BaseSqlTableModel - + # # - + Timestamp 타임 스탬프 @@ -316,7 +331,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 트랙을 불러올 수 없습니다. @@ -324,137 +339,142 @@ BaseTrackTableModel - + Album 앨범 - + Album Artist 앨범 작가 - + Artist 악곡가 - + Bitrate 품질 - + BPM 분당 박자수 - + Channels 채널 - + Color 색상 - + Comment 덛붙임 - + Composer 작곡가 - + Cover Art 인장 - + Date Added 추가된 날짜 - + Last Played 마지막 재생 - + Duration 길이 - + Type 유형 - + Genre 장르 - + Grouping 그룹핑 - + Key - + Location 위치 - + + Overview + + + + Preview 미리 듣기 - + Rating 별점 - + ReplayGain 리플레이 게인 - + Samplerate 샘플레이트 - + Played 재생됨 - + Title 제목 - + Track # 트랙 번호 - + Year 년도 - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -476,22 +496,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. 보안 암호 저장소를 사용할 수 없음 : 키체인 액세스에 실패했습니다. - + Secure password retrieval unsuccessful: keychain access failed. 보안 암호 검색 실패 : 키체인 액세스에 실패했습니다. - + Settings error 설정 에러 - + <b>Error with settings for '%1':</b><br> <b>'%1' 에 대한 설정 오류 : </b><br> @@ -542,67 +562,77 @@ BrowseFeature - + Add to Quick Links 퀵 링크에 추가 - + Remove from Quick Links 퀵 링크에서 제거 - + Add to Library 라이브러리에 추가 - + Refresh directory tree - + Quick Links 퀵 링크 - - + + Devices 장치 - + Removable Devices 이동식 장치 - - + + Computer 컴퓨터 - + 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 스캔 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "컴퓨터"를 사용하면 하드 디스크 및 외부 장치의 폴더에서 트랙을 탐색, 확인 및 로드할 수 있습니다. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -712,12 +742,12 @@ 파일 생성 완료 - + Mixxx Library Mixxx 라이브러리 - + Could not load the following file because it is in use by Mixxx or another application. Mixxx 또는 다른 프로그램에 의해 사용되고 있어서 다음 파일을 로드할 수 없었습니다. @@ -748,87 +778,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx는 오픈 소스 DJ 소프트웨어입니다. 자세한 내용은 다음을 참조하세요. : - + Starts Mixxx in full-screen mode 전체 화면 모드로 Mixxx 시작 - + Use a custom locale for loading translations. (e.g 'fr') 번역을 로드하려면 사용자 정의 로케일을 사용하십시오. (예 : 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Mixxx가 MIDI 매핑과 같은 리소스 파일을 찾아야 하는 최상위 디렉토리의 기본 설치 위치를 재정의합니다. - + 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 Mixxx가 수신하는 모든 컨트롤러 데이터와 로드하는 스크립트 기능을 표시/기록하도록 합니다. - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. 개발자 모드를 활성화합니다. 추가 로그 정보, 성능 통계 및 개발자 도구 메뉴가 포함됩니다. - + Top-level directory where Mixxx should look for settings. Default is: Mixxx 설정이 포함되어 있는 디렉토리입니다. 기본값은 - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin - 레거시 QWidget 스킨 대신, 실험용 QML GUI 로드 + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + - + + Force Mixxx to load an unstable version with an existing user profile from a stable version + + + + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. 안전 모드를 활성화합니다. OpenGL 파형 및 회전하는 바이닐 위젯을 비활성화합니다. 시작 시 Mixxx가 충돌하는 경우 이 옵션을 시도하십시오. - + [auto|always|never] Use colors on the console output. [자동|항상|비허용] 콘솔 출력에 색상을 사용합니다. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -838,32 +873,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. 시작할 때 지정된 음악 파일을 로드합니다. 지정한 각 파일은 다음 버추얼 데크에 로드됩니다. - + Preview rendered controller screens in the Setting windows. @@ -956,2547 +991,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output 헤드폰 출력 - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 덱 %1 - + Sampler %1 샘플러 %1 - + Preview Deck %1 덱 %1 미리보기 - + Microphone %1 마이크 %1 - + Auxiliary %1 보조 %1 - + Reset to default 기본으로 재설정 - + Effect Rack %1 이팩트 랙 %1 - + Parameter %1 파라메터 %1 - + Mixer 믹서 - - + + Crossfader 크로스페이더 - + Headphone mix (pre/main) 헤드폰 믹스(pre/main) - + Toggle headphone split cueing 헤드폰 분할 큐 전환 - + Headphone delay 헤드폰 지연 - + Transport 트랜스포트 - + Strip-search through track 전체 트랙에 대한 조각(스트립) 검색 - + Play button 재생 버튼 - - + + Set to full volume 음량 최대로 - - + + Set to zero volume 음량 0으로 - + Stop button 정지 - + Jump to start of track and play 트랙의 처음으로 가서 재생 - + Jump to end of track 트랙의 마지막으로 가기 - + Reverse roll (Censor) button 리버스 롤(Censor) 버튼 - + Headphone listen button 헤드폰 듣기 버튼 - - + + Mute button 음소거 - + Toggle repeat mode 반복 모드 토글 - - + + Mix orientation (e.g. left, right, center) 믹스 방향 (예: 왼쪽, 오른쪽, 가운데) - - + + Set mix orientation to left 믹스 방향을 왼쪽으로 설정 - - + + Set mix orientation to center 믹스 방향을 가운데로 설정 - - + + Set mix orientation to right 믹스 방향을 오른쪽으로 설정 - + Toggle slip mode 잠자기 모드 토글 - - + + BPM 분당 박자수 - + Increase BPM by 1 분당 박자수 1 올리기 - + Decrease BPM by 1 분당 박자수 1 내리기 - + Increase BPM by 0.1 분당 박자수 0.1 올리기 - + Decrease BPM by 0.1 분당 박자수 0.1 내리기 - + BPM tap button BPM(분당 박자수) 탭 버튼 - + Toggle quantize mode 양자화(quantize) 모드 토글 - + One-time beat sync (tempo only) 1회 비트 싱크 (템포 전용) - + One-time beat sync (phase only) 1회 비트 싱크 (위상 전용) - + Toggle keylock mode 음높이 고정 모드 토글 - + Equalizers 이퀄라이저(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) 큐 버튼 (CDJ 모드) - + 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 라이브러리 - + Slot %1 슬롯 %1 - + Headphone Mix 헤드폰 믹스 - + Headphone Split Cue 헤드폰 분할 큐 - + Headphone Delay 헤드폰 딜레이 - + Play 재생 - + Fast Rewind 빠른 되감기 - + Fast Rewind button 빠른 되감기 버튼 - + Fast Forward 빨리감기 - + Fast Forward button 빨리감기 버튼 - + Strip Search 스트립 검색 - + Play Reverse 역재생 - + Play Reverse button 역재생 버튼 - + Reverse Roll (Censor) 리버스 롤 (Censor) - + Jump To Start 시작으로 건너뛰기 - + Jumps to start of track 트랙의 시작 부분으로 건너뛰기 - + Play From Start 시작에서 재생 - + Stop 정지 - + Stop And Jump To Start 정지 및 시작으로 건너뛰기 - + Stop playback and jump to start of track 재생을 정지하고 트랙의 시작 부분으로 건너뛰기 - + Jump To End 끝으로 건너뛰기 - + Volume 음량 - - - + + + Volume Fader 음량 페이더 - - + + Full Volume 최고음량 - - + + Zero Volume 무음량 - + Track Gain 트랙 게인 - + Track Gain knob 트랙 게인 노브 - - + + Mute 음소거 - + Eject 꺼내기 - - + + Headphone Listen 헤드폰으로 듣기 - + Headphone listen (pfl) button 헤드폰으로 듣기 (pfl) 버튼 - + Repeat Mode 반복연주 - + Slip Mode 슬립 모드 - - + + Orientation 크로스페이더 위치 - - + + Orient Left 크로스페이더 왼쪽으로 위치 - - + + Orient Center 크로스페이더 중앙으로 위치 - - + + Orient Right 크로스페이더 오른쪽으로 위치 - + BPM +1 분당 박자음 +1 - + BPM -1 분당 박자음 -1 - + BPM +0.1 분당 박자음 +0.1 - + BPM -0.1 분당 박자음 -0.1 - + BPM Tap BPM 눌러서 측정 - + Adjust Beatgrid Faster +.01 비트그리드를 +.01초 더 빠르게 설정 - + Increase track's average BPM by 0.01 트랙의 평균 BPM을 0.01 증가 - + Adjust Beatgrid Slower -.01 비트그리드를 -.01초 더 느리게 설정 - + Decrease track's average BPM by 0.01 트랙의 평균 BPM을 0.01 감소 - + Move Beatgrid Earlier 비트그리드를 더 빨리 움직이기 - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 원상복구 키 - + High EQ - + Mid EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low 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 - + 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 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 - + 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 - + Headphone Gain 헤드폰 게인 - + Headphone gain 헤드폰 게인 - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin 스킨 - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - - Move Beatgrid + + Move Beatgrid + + + + + Adjust the beatgrid to the left or right + + + + + Move Beatgrid Half a Beat - - Adjust the beatgrid to the left or right + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 샘플러 부분 보이기/가리기 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3509,6 +3582,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3611,32 +3837,32 @@ trace - Above + Profiling messages 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. @@ -3644,27 +3870,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3697,7 +3923,7 @@ trace - Above + Profiling messages - + Lock 잠그기 @@ -3727,7 +3953,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3744,59 +3970,53 @@ trace - Above + Profiling messages 상자 가져오기 - + 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. - + Confirm Deletion 삭제 확인하기 - - + + 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) - + M3U Playlist (*.m3u) M3U 재생 목록 (*.m3u) @@ -3805,23 +4025,29 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. 상자는 디제잉을 위해 음악을 구성하는 좋은 방법입니다. + + + + Export to Engine DJ + + Crates let you organize your music however you'd like! 상자는 당신이 원하는 대로 음악을 구성해줍니다! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. 빈 상자를 만들 수 없습니다 - + A crate by that name already exists. 같은 이름의 상자가 이미 존재합니다 @@ -3916,12 +4142,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4432,37 +4658,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4501,17 +4727,17 @@ You tried to learn: %1,%2 - + Log - + Search 검색 - + Stats @@ -4707,122 +4933,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo 스테레오 - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed 작업 실패 - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4835,27 +5078,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing Mixxx Icecast 테스트 - + Public stream 공개 방송 - + http://www.mixxx.org http://www.mixxx.org - + Stream name 방송 이름 - + 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. 몇몇 스트리밍 클라이언트의 결함으로 인해, Ogg Vorbis 메타데이터 동적 업데이트가 청취자에게 튐이나 연결해제 같은 안 좋은 영향을 미칠 수 있습니다. 무시하고 동적으로 메타데이터를 업데이트 하시려면 이 상자를 체크하십시오. @@ -4895,67 +5138,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Ogg Vorbis 메타데이터를 동적으로 업데이트. - + ICQ - + AIM - + Website 웹사이트 - + Live mix 라이브 믹싱 - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre 장르 - + Use UTF-8 encoding for metadata. 메타데이터에 UTF-8 인코딩을 사용하십시오. - + Description 설명 @@ -4981,42 +5229,42 @@ Two source connections to the same server that have the same mountpoint can not 채널 - + Server connection 서버 연결 - + Type 유형 - + Host 호스트 - + Login 로그인 이름 - + Mount 마운트 - + Port 포트 - + Password 암호 - + Stream info @@ -5026,17 +5274,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5095,13 +5343,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color 색상 @@ -5146,17 +5395,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5164,114 +5418,114 @@ associated with each key. DlgPrefController - + Apply device settings? 장치 설정을 적용하시겠습니까? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? 학습 마법사를 시작하기 전에 설정이 적용되어야 합니다. 설정을 적용하고 계속하시겠습니까? - + None 없음 - + %1 by %2 %1 / %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5289,100 +5543,105 @@ Apply settings and continue? 활성화됨 - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: 설명: - + Support: 지원: - + Screens preview - + Input Mappings - - + + Search 검색 - - + + Add 추가 - - + + Remove 지우기 @@ -5402,17 +5661,17 @@ Apply settings and continue? - + Mapping Info - + Author: 저자: - + Name: 이름: @@ -5422,28 +5681,28 @@ Apply settings and continue? 학습 마법사 (MIDI 전용) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All 모두 삭제 - + Output Mappings 출력 맵핑 @@ -5458,21 +5717,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5602,6 +5861,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5631,137 +5900,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6193,62 +6462,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information 정보 - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6475,67 +6744,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 스캔 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font @@ -6584,262 +6883,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats 오디오 파일 포맷 - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible 가능하다면 재생목록 보내기에 상대경로 사용 - + ... - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms - + Load track to next available deck - + External Libraries - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library 리듬박스 라이브러리 보이기 - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Show iTunes Library iTunes 라이브러리 보이기 - + Show Traktor Library Traktor 라이브러리 보이기 - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. @@ -7184,33 +7488,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory 녹음 디렉토리 선택 - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7228,43 +7532,55 @@ and allows you to pitch adjust them for harmonic mixing. 탐색... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality 품질 - + Tags 태그 - + Title 제목 - + Author 저작자 - + Album 앨범 - + Output File Format - + Compression - + Lossy @@ -7279,12 +7595,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7415,173 +7731,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled 활성화됨 - + Stereo 스테레오 - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7599,131 +7919,136 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output 출력 - + Input 입력 - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7765,7 +8090,7 @@ The loudness target is approximate and assumes track pregain and main output lev 바이닐 환경설정 - + Show Signal Quality in Skin 신호 품질을 스킨에 표시 @@ -7801,46 +8126,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality 신호 품질 - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax xwax 제공 - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7848,58 +8178,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL 사용 불가능 - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7917,22 +8247,17 @@ The loudness target is approximate and assumes track pregain and main output lev 화면 속도(Frame rate) - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. 현재 플랫폼에서 어느 버젼의 OpenGL이 지원되는지 표시 - - Normalize waveform overview - - - - + Average frame rate @@ -7948,7 +8273,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. 실제 화면 속도(Frame rate) 표시 @@ -7983,7 +8308,7 @@ The loudness target is approximate and assumes track pregain and main output lev 낮음 - + Show minute markers on waveform overview @@ -8028,7 +8353,7 @@ The loudness target is approximate and assumes track pregain and main output lev 전역 시각적 게인 - + 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. @@ -8095,22 +8420,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8126,7 +8451,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8156,12 +8481,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8169,47 +8540,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library 라이브러리 - + Interface - + Waveforms - + Mixer 믹서 - + Auto DJ 자동 디제잉 - + Decks - + Colors @@ -8244,47 +8615,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects 이펙트 - + 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> - + Vinyl Control 바이닐(Vinyl) 컨트롤 - + Live Broadcasting - + Modplug Decoder @@ -8640,284 +9011,289 @@ This can not be undone! - + Filetype: - + BPM: 분당 박자수: - + Location: - + Bitrate: - + Comments - + BPM 분당 박자수 - + Sets the BPM to 75% of the current value. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # 트랙 번호 - + Album Artist 앨범 작가 - + Composer 작곡가 - + Title 제목 - + Grouping 그룹핑 - + Key - + Year 년도 - + Artist 악곡가 - + Album 앨범 - + Genre 장르 - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color 색상 - + Date added: - + Open in File Browser 파일 탐색기에서 열기 - + Samplerate: - + + Filesize: + + + + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9074,7 +9450,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9276,27 +9652,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9511,15 +9887,15 @@ 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 @@ -9530,57 +9906,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut 단축키 @@ -9588,62 +9964,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9653,22 +10029,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9715,27 +10091,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9795,22 +10171,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks 빠진 트랙 - + Hidden Tracks 숨은 트랙 - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9818,208 +10194,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10035,13 +10452,13 @@ Do you want to select an input device? PlaylistFeature - + Lock 잠그기 - - + + Playlists @@ -10051,32 +10468,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock 잠금 해제 - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 새 재생 목록 만들기 @@ -10175,58 +10623,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 @@ -10340,69 +10788,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier 바이닐(Vinyl) 컨트롤 - + Microphone + Audio path indetifier 마이크 - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10731,47 +11192,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM 분당 박자수 - + Set the beats per minute value of the click sound - + Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11555,19 +12018,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 덱 %1 @@ -11700,7 +12163,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11731,7 +12194,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11752,29 +12215,100 @@ Hint: compensates "chipmunk" or "growling" voices - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - Off + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11805,6 +12339,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11815,11 +12350,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11831,11 +12368,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11864,12 +12403,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11904,42 +12443,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11997,54 +12536,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12200,193 +12739,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. @@ -12394,7 +12933,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12402,23 +12941,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device 장치 - + An unknown error occurred 알려지지 않은 에러 발생 - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12603,7 +13142,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12785,7 +13324,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art 인장 @@ -12975,243 +13514,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track - + BPM Tap BPM 눌러서 측정 - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play 재생 - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13434,941 +13973,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating 별점 - + Assign ratings to individual tracks by clicking the stars. @@ -14503,33 +15083,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14549,215 +15129,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute 음소거 - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode 슬립 모드 - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14797,259 +15377,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind 빠른 되감기 - + Fast rewind through the track. - + Fast Forward 빨리감기 - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject 꺼내다 - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album 앨범 - + Displays the album name of the loaded track. 불려온 트랙의 앨범 이름을 보여줍니다. - + Track Artist/Title 트랙 작가/이름 - + Displays the artist and title of the loaded track. 불려온 트랙의 작가와 곡이름을 보여줍니다. @@ -15057,12 +15637,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15277,47 +15857,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15442,323 +16050,363 @@ This can not be undone! - Create &New Playlist + Search in Current View... + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + + Create &New Playlist + + + + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title @@ -15775,74 +16423,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual &사용설명서 - + Read the Mixxx user manual. Mixxx의 사용설명서를 읽어주세요. - + &Keyboard Shortcuts &단축키 - + Speed up your workflow with keyboard shortcuts. 단축키를 이용하여 작업속도를 높이세요. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &프로그램 번역 - + Help translate this application into your language. 자국어로 번역하는 일을 도와주세요. - + &About - + About the application 이 프로그램에 대해 @@ -15850,25 +16498,25 @@ This can not be undone! WOverview - + 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 @@ -15877,25 +16525,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun 검색 - + Clear input @@ -15906,169 +16542,163 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - 단축키 + See User Manual > Mixxx Library for more information. + - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key - + harmonic with %1 - + BPM 분당 박자수 - + between %1 and %2 - + Artist 악곡가 - + Album Artist 앨범 작가 - + Composer 작곡가 - + Title 제목 - + Album 앨범 - + Grouping 그룹핑 - + Year 년도 - + Genre 장르 - + Directory - + &Search selected @@ -16076,620 +16706,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist 재생목록에 추가 - + Crates 상자 - + Metadata - + Update external collections - + Cover Art 인장 - + Adjust BPM - + Select Color - - + + Analyze 분석 - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) 자동 디제잉 대기열에 넣기 (아래로) - + Add to Auto DJ Queue (top) 자동 디제잉 대기열에 넣기 (위로) - + Add to Auto DJ Queue (replace) 자동 디제잉 대기열에 넣기 (교체) - + Preview Deck - + Remove 지우기 - + Remove from Playlist - + Remove from Crate - + Hide from Library 라이브러리에서 숨기기 - + Unhide from Library 라이브러리에서 숨김해제 - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser 파일 탐색기에서 열기 - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count 재생 횟수 - + Rating 별점 - + Cue Point 큐포인트 - - + + Hotcues 핫큐 - + Intro - + Outro - + Key - + ReplayGain 리플레이 게인 - + Waveform 웨이브폼 - + Comment 덛붙임 - + All 전체 - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16705,37 +17355,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16743,37 +17393,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16781,12 +17431,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. - + Shuffle Tracks @@ -16794,52 +17444,52 @@ This can not be undone! 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. @@ -16850,68 +17500,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse 탐색기 - + Export directory - + Database version - + Export - + Cancel - + Export Library to Engine DJ "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16932,7 +17592,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16942,23 +17602,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -16983,6 +17643,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -16991,4 +17669,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_lb.qm b/res/translations/mixxx_lb.qm index 8c06dc2a9d7f..d10add87bcd9 100644 Binary files a/res/translations/mixxx_lb.qm and b/res/translations/mixxx_lb.qm differ diff --git a/res/translations/mixxx_lb.ts b/res/translations/mixxx_lb.ts index d71b3a938c18..bf7fb25f5a07 100644 --- a/res/translations/mixxx_lb.ts +++ b/res/translations/mixxx_lb.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source - + Auto DJ Auto Dj - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -147,28 +147,28 @@ 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 @@ -178,12 +178,12 @@ Ëmbenennen - + Lock Späer - + Duplicate @@ -204,24 +204,24 @@ - + Enter new name for playlist: - + Duplicate Playlist Playlescht dublizeieren - - + + Enter name for new playlist: - + Export Playlist Playlescht exportéieren @@ -231,70 +231,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -302,12 +309,12 @@ BaseSqlTableModel - + # # - + Timestamp Zäitstempel @@ -315,7 +322,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Konnt net gelueden gin @@ -323,137 +330,142 @@ BaseTrackTableModel - + Album Album - + Album Artist - + Artist Kënschtler - + Bitrate Bitrate - + BPM BPM - + Channels - + Color - + Comment Kommentar - + Composer Komponist - + Cover Art - + Date Added Datum bäigesat - + Last Played - + Duration Dauer - + Type Typ - + Genre Genre - + Grouping - + Key - + Location Uertschaft - + + Overview + + + + Preview Virschau - + Rating Bewäertung - + ReplayGain - + Samplerate - + Played Gespielt - + Title Titel - + Track # Lied - + Year Joër - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -541,67 +553,77 @@ BrowseFeature - + Add to Quick Links Quick Links dobäisetzen - + Remove from Quick Links Läschen vun den Quick Links - + Add to Library - + Refresh directory tree - + Quick Links Schnell Link - - + + Devices Geräter - + Removable Devices USB Geräter - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -747,87 +769,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -837,27 +859,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1039,13 +1066,13 @@ trace - Above + Profiling messages - + Set to full volume - + Set to zero volume @@ -1070,13 +1097,13 @@ trace - Above + Profiling messages - + Headphone listen button - + Mute button @@ -1087,25 +1114,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -1146,22 +1173,22 @@ trace - Above + Profiling messages - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1171,193 +1198,193 @@ trace - Above + Profiling messages - + 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 @@ -1473,20 +1500,20 @@ trace - Above + Profiling messages - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1502,7 +1529,7 @@ trace - Above + Profiling messages - + Mute @@ -1513,7 +1540,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1534,25 +1561,25 @@ trace - Above + Profiling messages - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1622,82 +1649,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1738,451 +1765,451 @@ trace - Above + Profiling messages - + 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 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 - + 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 @@ -2197,102 +2224,102 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2444,1041 +2471,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3593,32 +3642,32 @@ trace - Above + Profiling messages 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. @@ -3662,13 +3711,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Läschen - + Create New Crate @@ -3678,132 +3727,132 @@ trace - Above + Profiling messages Ë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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) - + Crates are a great way to help organize the music you want to DJ with. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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 @@ -3898,12 +3947,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4022,72 +4071,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Iwwersprangen - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Auto DJ Fade Modes Full Intro + Outro: @@ -4118,80 +4167,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto Dj - + Shuffle - + 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. @@ -4414,37 +4463,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4483,17 +4532,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -5146,113 +5195,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Keen - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5265,105 +5314,105 @@ Apply settings and continue? - + Enabled Aktiv - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add Dobäifügen - - + + Remove Läschen @@ -5378,22 +5427,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5403,28 +5452,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Alles ausmaachen - + Output Mappings @@ -5583,6 +5632,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6174,62 +6233,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Informatioun - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6835,7 +6894,7 @@ and allows you to pitch adjust them for harmonic mixing. Crossfader Curve - + Crossfader Curve @@ -7396,173 +7455,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Aktiv - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7580,131 +7638,131 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7859,27 +7917,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7892,250 +7951,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8143,47 +8208,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library - + Interface - + Waveforms - + Mixer - + Auto DJ Auto Dj - + Decks - + Colors @@ -8218,47 +8283,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects - + 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> - + Vinyl Control - + Live Broadcasting - + Modplug Decoder @@ -8291,22 +8356,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8614,284 +8679,284 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Lied - + Album Artist - + Composer Komponist - + Title Titel - + Grouping - + Key - + Year Joër - + Artist Kënschtler - + Album Album - + Genre Genre - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9048,7 +9113,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9250,27 +9315,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9414,38 +9479,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. Check the logs for details. @@ -9453,12 +9518,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9466,18 +9531,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9485,15 +9550,15 @@ 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 @@ -9504,57 +9569,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9562,62 +9627,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9627,22 +9692,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9689,27 +9754,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9769,18 +9834,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9792,208 +9857,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10009,13 +10115,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Späer - - + + Playlists @@ -10025,32 +10131,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Opgespart - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -11541,7 +11673,7 @@ Fully right: end of the effect period - + Deck %1 @@ -11674,7 +11806,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11705,7 +11837,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11838,12 +11970,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11878,42 +12010,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11971,54 +12103,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12153,19 +12285,19 @@ may introduce a 'pumping' effect and/or distortion. Späer - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12577,7 +12709,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12759,7 +12891,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art @@ -12995,197 +13127,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13423,924 +13555,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Nächsten - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Fierderun - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14475,33 +14615,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14521,205 +14661,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14764,254 +14914,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15019,12 +15169,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15032,47 +15182,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15244,47 +15389,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15408,407 +15553,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15816,25 +15992,25 @@ This can not be undone! WOverview - + 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 @@ -15843,25 +16019,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -15872,169 +16036,163 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Kënschtler - + Album Artist - + Composer Komponist - + Title Titel - + Album Album - + Grouping - + Year Joër - + Genre Genre - + Directory - + &Search selected @@ -16042,599 +16200,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Datei - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Läschen - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Bewäertung - + Cue Point - + + Hotcues - + Intro - + Outro - + Key - + ReplayGain - + Waveform - + Comment Kommentar - + All - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16650,37 +16834,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16688,37 +16872,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16726,60 +16910,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. + + + Shuffle Tracks + + 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. @@ -16790,67 +16979,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Duerchsichen - + Export directory - + Database version - + Export Exportéieren - + Cancel - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16871,7 +17071,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16881,23 +17081,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_lt.qm b/res/translations/mixxx_lt.qm index 823a322aeaef..3f4be9f8155b 100644 Binary files a/res/translations/mixxx_lt.qm and b/res/translations/mixxx_lt.qm differ diff --git a/res/translations/mixxx_lt.ts b/res/translations/mixxx_lt.ts index 3d36c9d57084..ee5a834bc16d 100644 --- a/res/translations/mixxx_lt.ts +++ b/res/translations/mixxx_lt.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Paketai - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Pašalinti paketą iš garso takelio - + Auto DJ Automatinis DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Pridėti paketą prie garso takelio @@ -148,28 +156,28 @@ 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 @@ -179,12 +187,12 @@ Pervadinti - + Lock Užrakinti - + Duplicate Dublikuoti @@ -205,24 +213,24 @@ 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į @@ -232,70 +240,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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 _kopijuoti - - - - - - + + + + + + Playlist Creation Failed Grojaraščio kūrimas nepavyko - - + + An unknown error occurred while creating playlist: Įvyko nežinoma klaida sukuriant grojaraštį: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -303,12 +318,12 @@ BaseSqlTableModel - + # Nr. - + Timestamp Laiko žymė @@ -316,7 +331,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Negalima įkrauti takelio. @@ -324,137 +339,142 @@ BaseTrackTableModel - + Album Albumas - + Album Artist Albumas Atlikėjas - + Artist Atlikėjas - + Bitrate Kokybė - + BPM BPM - + Channels - + Color - + Comment Komentaras - + Composer Kūrėjas - + Cover Art Viršelis - + Date Added Įtraukimo data - + Last Played - + Duration Trukmė - + Type Tipas - + Genre Stilius - + Grouping Grupavimas - + Key Raktas - + Location Vieta - + + Overview + + + + Preview Peržiūra - + Rating Vertinimas - + ReplayGain „ReplayGain“ - + Samplerate - + Played Grotas - + Title Pavadinimas - + Track # Takelio Nr. - + Year Metai - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -476,22 +496,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Nepavyko naudoti saugios slaptažodžių saugyklos: nepavyko pasiekti raktų pakabuko. - + Secure password retrieval unsuccessful: keychain access failed. Saugus slaptažodžio gavimas nepavyko: nepavyko pasiekti raktų pakabuko. - + Settings error Nustatymų klaida - + <b>Error with settings for '%1':</b><br> <b>Klaida nustatant '% 1' nustatymus:</b><br> @@ -542,67 +562,77 @@ BrowseFeature - + Add to Quick Links Pridėti prie greitųjų nuorodų - + Remove from Quick Links Pašalinti iš greitųjų nuorodų - + Add to Library Pridėti Į Biblioteką - + Refresh directory tree - + Quick Links Greitosios nuorodos - - + + Devices Įrenginiai - + Removable Devices Laikinieji įrenginiai - - + + Computer Kompiuteris - + Music Directory Added Pridėtas muzikos katalogas - + 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? Pridėjote vieną ar daugiau muzikos katalogų. Šiuose kataloguose esantys takeliai nebus pasiekiami, kol iš naujo nuskaitysite biblioteką. Ar norėtumėte dabar nuskaityti iš naujo - + Scan Skenuoti - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. „Kompiuteris“ leidžia naršyti, peržiūrėti ir įkelti takelius iš aplankų standžiajame diske ir išoriniuose įrenginiuose. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -712,12 +742,12 @@ Failas sukurtas - + 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. @@ -748,87 +778,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -838,27 +873,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -951,2535 +991,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Ausinių išvestis - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Grotuvas %1 - + Sampler %1 Sempleris %1 - + Preview Deck %1 „Preview Deck“ %1 - + Microphone %1 Mikrofonas %1 - + Auxiliary %1 Pagalbinis %1 - + Reset to default Atstatyti standartinius - + Effect Rack %1 Efektų stovas %1 - + Parameter %1 Parametras %1 - + Mixer Mikseris - - + + Crossfader Takelių suliejiklis - + Headphone mix (pre/main) Auksinių miksas (prieš/bendras) - + Toggle headphone split cueing Perjungti ausinių padalijimą - + Headphone delay Ausinių vėlavimas - + Transport Perkelti - + Strip-search through track Juostinė paieška per takelį - + Play button Paleidimo mygtukas - - + + Set to full volume Nustatyti visu garsu - - + + Set to zero volume Nustatyti be garso - + Stop button Stop mygtukas - + Jump to start of track and play Pereiti į takelio pradžią ir leisti - + Jump to end of track Pereiti į takelio pabaigą - + Reverse roll (Censor) button Atbulinės eigos (cenzūros) mygtukas - + Headphone listen button Ausinių pasiklausymo mygtukas - - + + Mute button Nutildymo mygtukas - + Toggle repeat mode Įjungti kartojimo režimą - - + + Mix orientation (e.g. left, right, center) Mikso vieta (pvz: kairė, dešinė, centras) - - + + Set mix orientation to left Nustatykite mišinio orientaciją į kairę - - + + Set mix orientation to center Nustatykite mišinio orientaciją į centrą - - + + Set mix orientation to right Nustatykite mišinio orientaciją į dešinę - + Toggle slip mode Perjungti slydimo režimą - - + + BPM BPM - + Increase BPM by 1 Padidinti BPM 1 - + Decrease BPM by 1 Sumažinti BPM 1 - + Increase BPM by 0.1 Padidinti BPM 0.1 - + Decrease BPM by 0.1 Sumažinti BPM 0.1 - + BPM tap button BPM bakstelėjimo mygtukas - + Toggle quantize mode Perjungti kvantavimo režimą - + One-time beat sync (tempo only) Vienkartinis ritmo sinchronizavimas (tik tempas) - + One-time beat sync (phase only) Vienkartinis ritmo sinchronizavimas (tik fazė) - + Toggle keylock mode Perjungti klavišų užrakto režimą - + Equalizers Ekvalaizeriai - + Vinyl Control Vinilo kontrolė - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Perjungti vinilo valdymo signalo režimą (IŠJUNGTAS/VIENAS/KARŠTAS) - + Toggle vinyl-control mode (ABS/REL/CONST) Perjungti vinilo valdymo režimą (ABS/REL/CONST) - + Pass through external audio into the internal mixer Perduokite išorinį garsą į vidinį maišytuvą - + Cues Cues - + Cue button Užuominų mygtukas - + Set cue point Nustatykite orientacinį tašką - + 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 - + Slot %1 - + Headphone Mix - + Headphone Split Cue - + Headphone Delay - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start Pereiti į pradžią - + Jumps to start of track Pereiti į takelio pradžią - + Play From Start Groti Nuo Pradžių - + Stop Stabdyti - + Stop And Jump To Start Stabdyti ir pereiti į pradžią - + Stop playback and jump to start of track Stabdyti grojimą ir pereiti į takelio pradžią - + Jump To End Pereiti į pabaigą - + Volume Garso lygis - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute Išjungti garsą - + Eject - - + + Headphone Listen Klausytis ausinėse - + Headphone listen (pfl) button - + Repeat Mode Kartojimo režimas - + Slip Mode - - + + Orientation - - + + Orient Left - - + + Orient Center - - + + Orient Right - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 - + High EQ - + Mid EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low 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 - + 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 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 - + 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 - + Headphone Gain - + Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3492,6 +3582,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3594,32 +3837,32 @@ trace - Above + Profiling messages 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. @@ -3627,27 +3870,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3663,13 +3906,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Pašalinti - + Create New Crate @@ -3679,55 +3922,55 @@ trace - Above + Profiling messages Pervadinti - + Lock Užrakinti - + Export Crate as Playlist - + Export Track Files Eksportuoti garso takelių failus - + Duplicate Dublikuoti - + Analyze entire Crate - + Auto DJ Track Source - + Enter new name for crate: - - + + Crates Paketai - - + + Import Crate Importuoti paketą - + Export Crate Eksportuoti paketą @@ -3737,74 +3980,74 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U Grojaraštis (*.m3u) - + 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. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Paketai leidžia jums valdyti muziką taip kaip jūs norite! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3899,12 +4142,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4023,72 +4266,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Sekundės - + Auto DJ Fade Modes Full Intro + Outro: @@ -4119,80 +4362,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Automatinis DJ - + Shuffle Išmaišyti - + 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. @@ -4415,37 +4658,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4484,17 +4727,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4690,122 +4933,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Veiksmas nepavyko - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4818,27 +5078,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing - + Public stream - + http://www.mixxx.org - + Stream name - + 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. @@ -4878,67 +5138,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website - + Live mix - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Stilius - + Use UTF-8 encoding for metadata. - + Description Aprašymas @@ -4964,42 +5229,42 @@ Two source connections to the same server that have the same mountpoint can not - + Server connection - + Type Tipas - + Host - + Login - + Mount - + Port - + Password - + Stream info @@ -5009,17 +5274,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5078,13 +5343,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5129,17 +5395,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5147,113 +5418,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5266,105 +5537,110 @@ Apply settings and continue? - + Enabled Įgalintas - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add Pridėti - - + + Remove Pašalinti @@ -5379,22 +5655,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5404,28 +5680,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Išvalyti viską - + Output Mappings @@ -5440,21 +5716,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5584,6 +5860,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5613,137 +5899,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -6175,62 +6461,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6457,67 +6743,97 @@ and allows you to pitch adjust them for harmonic mixing. - + Music Directory Added Pridėtas muzikos katalogas - + 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? Pridėjote vieną ar daugiau muzikos katalogų. Šiuose kataloguose esantys takeliai nebus pasiekiami, kol iš naujo nuskaitysite biblioteką. Ar norėtumėte dabar nuskaityti iš naujo - + Scan Skenuoti - - Item is not a directory or directory is missing + + Item is not a directory or directory is missing + + + + + 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 - - Choose a music directory + + Leave Tracks Unchanged - - Confirm Directory Removal + + Relink music directory to new location - - 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. + + Black - - 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. + + ExtraBold - - Hide Tracks + + Bold - - Delete Track Metadata + + SemiBold - - Leave Tracks Unchanged + + Medium - - Relink music directory to new location + + Light - + Select Library Font @@ -6566,262 +6882,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible - + ... - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms - + Load track to next available deck - + External Libraries - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Show iTunes Library - + Show Traktor Library - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. @@ -7166,33 +7487,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7210,43 +7531,55 @@ and allows you to pitch adjust them for harmonic mixing. - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality - + Tags - + Title Pavadinimas - + Author - + Album Albumas - + Output File Format - + Compression - + Lossy @@ -7261,12 +7594,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7397,173 +7730,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Įgalintas - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7581,131 +7918,136 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Išvestis - + Input Įvedimas - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7747,7 +8089,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7783,46 +8125,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7830,57 +8177,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB - + Top - + Center - + Bottom - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7893,250 +8241,297 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. - - - - - Waveform + + OpenGL Status - - Normalize waveform overview + + Displays which OpenGL version is supported by the current platform. - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + + Overview Waveforms + + + + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8144,47 +8539,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library - + Interface - + Waveforms - + Mixer Mikseris - + Auto DJ Automatinis DJ - + Decks - + Colors @@ -8219,47 +8614,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efektai - + 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> - + Vinyl Control Vinilo kontrolė - + Live Broadcasting - + Modplug Decoder @@ -8292,22 +8687,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8615,284 +9010,289 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Takelio Nr. - + Album Artist Albumas Atlikėjas - + Composer Kūrėjas - + Title Pavadinimas - + Grouping Grupavimas - + Key Raktas - + Year Metai - + Artist Atlikėjas - + Album Albumas - + Genre Stilius - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + + Filesize: + + + + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9049,7 +9449,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9251,27 +9651,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9415,38 +9815,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. Check the logs for details. @@ -9454,12 +9854,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9467,18 +9867,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9486,15 +9886,15 @@ 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 @@ -9505,57 +9905,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9563,62 +9963,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9628,22 +10028,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9690,27 +10090,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9770,22 +10170,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9793,208 +10193,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10010,13 +10451,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Užrakinti - - + + Playlists @@ -10026,32 +10467,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Atrakinti - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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į @@ -10150,58 +10622,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 Skenuoti - + 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 @@ -10315,69 +10787,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Vinilo kontrolė - + Microphone + Audio path indetifier - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10706,47 +11191,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11530,19 +12017,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Grotuvas %1 @@ -11675,7 +12162,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11706,7 +12193,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11743,15 +12230,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11780,6 +12338,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11790,11 +12349,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11806,11 +12367,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11839,12 +12402,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11879,42 +12442,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11972,54 +12535,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12154,19 +12717,19 @@ may introduce a 'pumping' effect and/or distortion. Užrakinti - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12175,193 +12738,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. @@ -12369,7 +12932,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12377,23 +12940,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device - + An unknown error occurred - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12578,7 +13141,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12760,7 +13323,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Viršelis @@ -12950,243 +13513,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track Raktas - + BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13409,939 +13972,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If the play position is inside an active loop, stores the loop as loop cue. + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - - Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. + + If the play position is inside an active loop, stores the loop as loop cue. - - Dragging with Shift key pressed will not start previewing the hotcue + + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14476,33 +15082,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14522,205 +15128,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute Išjungti garsą - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14760,259 +15376,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Albumas - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15020,12 +15636,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15033,47 +15649,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15245,47 +15856,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15409,407 +16048,448 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F - + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15817,25 +16497,25 @@ This can not be undone! WOverview - + 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 @@ -15844,25 +16524,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -15873,169 +16541,163 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Raktas - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Atlikėjas - + Album Artist Albumas Atlikėjas - + Composer Kūrėjas - + Title Pavadinimas - + Album Albumas - + Grouping Grupavimas - + Year Metai - + Genre Stilius - + Directory - + &Search selected @@ -16043,599 +16705,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Paketai - + Metadata - + Update external collections - + Cover Art Viršelis - + Adjust BPM - + Select Color - - + + Analyze Analizuoti - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Pašalinti - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Vertinimas - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Raktas - + ReplayGain „ReplayGain“ - + Waveform - + Comment Komentaras - + All - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Grotuvas %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16651,37 +17354,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16689,37 +17392,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16727,60 +17430,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. + + + Shuffle Tracks + + 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. @@ -16791,67 +17499,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Naršyti - + Export directory - + Database version - + Export - + Cancel - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16872,7 +17591,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16882,23 +17601,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -16923,6 +17642,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -16931,4 +17668,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_mi.ts b/res/translations/mixxx_mi.ts index b5e9b6945cfa..8d6f7f0b91fd 100644 --- a/res/translations/mixxx_mi.ts +++ b/res/translations/mixxx_mi.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist Kaweake Rārangipāho @@ -258,13 +258,13 @@ - + Playlist Creation Failed I rahua te auaha tūtira waiata - + An unknown error occurred while creating playlist: Hapa waihangatanga rārangipāho: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) Rārangipāho M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp Waitohuwā @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Pukaemi - + Album Artist Mataoro Pukaemi - + Artist Mataoro - + Bitrate Auaumoka - + BPM Taki i te Meneti - + Channels - + Color - + Comment Tākupu - + Composer Kaitito - + Cover Art Toi Pukaemi - + Date Added Rā i Tāpiritia - + Last Played - + Duration Roanga - + Type Momo - + Genre Tūmomo - + Grouping Whakarōpū - + Key Paeoro - + Location Tauwāhi - + Preview Arokite - + Rating Whakatauranga - + ReplayGain - + Samplerate - + Played I Pāhotia - + Title Taitara - + Track # # Riu - + Year Tau - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links - - + + Devices - + Removable Devices - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM Taki i te Meneti - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Raka @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages - + 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. - + Confirm Deletion - - + + Renaming Crate Failed - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u) Rārangipāho M3U (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Whakaingoa Anō - + Export - + Delete - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: - + Location: - + Bitrate: - + Comments - + BPM Taki i te Meneti - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # # Riu - + Album Artist Mataoro Pukaemi - + Composer Kaitito - + Title Taitara - + Grouping Whakarōpū - + Key Paeoro - + Year Tau - + Artist Mataoro - + Album Pukaemi - + Genre Tūmomo @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Raka - + Playlists Ngā Rārangipāho @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Raka - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist Waihangaia he rārangipāho - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Paeoro - + harmonic with %1 - + BPM Taki i te Meneti - + between %1 and %2 - + Artist Mataoro - + Album Artist Mataoro Pukaemi - + Composer Kaitito - + Title Taitara - + Album Pukaemi - + Grouping Whakarōpū - + Year Tau - + Genre Tūmomo - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Tāpiri ki te Rārangipāho - + Crates - + Metadata - + Update external collections - + Cover Art Toi Pukaemi - + Adjust BPM - + Select Color - - + + Analyze Tātari - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Muku - + Remove from Playlist Mukua mai i Rārangipāho - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Whakatauranga - + Cue Point - + Hotcues - + Intro - + Outro - + Key Paeoro - + ReplayGain - + Waveform - + Comment Tākupu - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_mk.ts b/res/translations/mixxx_mk.ts index ce7809aaba74..78991d8033a2 100644 --- a/res/translations/mixxx_mk.ts +++ b/res/translations/mixxx_mk.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ Авто-Диџеј - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist Изнеси Плејлиста @@ -258,13 +258,13 @@ - + Playlist Creation Failed Неуспешно креирање на Плејлистата - + An unknown error occurred while creating playlist: Непозната грешка се појави при креирање на плејлистата: @@ -279,12 +279,12 @@ - + 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) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # Бр. - + Timestamp Временска ознака @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не може да се вчита датотеката @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Албум - + Album Artist - + Artist Изведувач - + Bitrate Брзина на битови - + BPM Битови во минута - + Channels - + Color - + Comment Коментар - + Composer Композитор - + Cover Art - + Date Added Датум на додавање - + Last Played - + Duration Времетраење - + Type Тип - + Genre Жанр - + Grouping - + Key Нота - + Location Локација - + Preview - + Rating Рејтинг - + ReplayGain - + Samplerate - + Played Пуштено - + Title Наслов - + Track # Нумера бр. - + Year Година - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links Додави во Брза врска - + Remove from Quick Links Избриши од Брза врска - + Add to Library - + Refresh directory tree - + Quick Links Брзи врски - - + + Devices Уреди - + Removable Devices Преносни Уреди - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM Битови во минута - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Заклучи @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Секунди - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Авто-Диџеј - + Shuffle Измешај - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Преименувај - + Export - + Delete - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Излез - + Input Влез - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: Битови во минута - + Location: - + Bitrate: - + Comments - + BPM Битови во минута - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Нумера бр. - + Album Artist - + Composer Композитор - + Title Наслов - + Grouping - + Key Нота - + Year Година - + Artist Изведувач - + Album Албум - + Genre Жанр @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Заклучи - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Заклучи - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Нота - + harmonic with %1 - + BPM Битови во минута - + between %1 and %2 - + Artist Изведувач - + Album Artist - + Composer Композитор - + Title Наслов - + Album Албум - + Grouping - + Year Година - + Genre Жанр - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) Додади во листата на автоматскиот Диџеј (најдолу) - + Add to Auto DJ Queue (top) Додади во листата на автоматскиот Диџеј (најгоре) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Одстрани - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Рејтинг - + Cue Point - + Hotcues - + Intro - + Outro - + Key Нота - + ReplayGain - + Waveform - + Comment Коментар - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_nb.qm b/res/translations/mixxx_nb.qm index 2f93eacaa6ee..72a1ab3fe588 100644 Binary files a/res/translations/mixxx_nb.qm and b/res/translations/mixxx_nb.qm differ diff --git a/res/translations/mixxx_nb.ts b/res/translations/mixxx_nb.ts index 42c714ff106e..6a6e36033d87 100644 --- a/res/translations/mixxx_nb.ts +++ b/res/translations/mixxx_nb.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source Fjern Kasse som Sporkilde - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Legg til Kasse som Sporkilde @@ -149,28 +149,28 @@ 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 @@ -180,12 +180,12 @@ Gi nytt navn - + Lock Lås - + Duplicate Duplikat @@ -206,24 +206,24 @@ 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 @@ -233,70 +233,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +311,12 @@ BaseSqlTableModel - + # # - + Timestamp Tidsstempel @@ -317,7 +324,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Fikk ikke lastet sporet @@ -325,137 +332,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Albumartist - + Artist Artist - + Bitrate Bithastighet - + BPM BPM - + Channels Kanaler - + Color - + Comment Kommentar - + Composer Komponist - + Cover Art Omslagsbilde - + Date Added Dato lagt til - + Last Played - + Duration Varighet - + Type Type - + Genre Sjanger - + Grouping Gruppering - + Key Tast - + Location Plassering - + + Overview + + + + Preview Forhåndsvisning - + Rating Vurdering - + ReplayGain Avspillingsnivå - + Samplerate - + Played Spilt - + Title Tittel - + Track # Spornummer # - + Year År - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -543,67 +555,77 @@ BrowseFeature - + Add to Quick Links Legg til Hurtiglenker - + Remove from Quick Links Fjern fra Hurtiglenker - + Add to Library Legg til bibliotek - + Refresh directory tree - + Quick Links Hurtiglenker - - + + Devices Enheter - + Removable Devices Avtagbare enheter - - + + Computer Datamaskin - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -749,87 +771,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -839,27 +861,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1041,13 +1068,13 @@ trace - Above + Profiling messages - + Set to full volume Sett til fullt volum - + Set to zero volume @@ -1072,13 +1099,13 @@ trace - Above + Profiling messages - + Headphone listen button - + Mute button @@ -1089,25 +1116,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -1148,22 +1175,22 @@ trace - Above + Profiling messages BPM tappeknapp - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1173,194 +1200,194 @@ trace - Above + Profiling messages 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 @@ -1476,20 +1503,20 @@ Markørknapp - - + + Volume Fader - + Full Volume Fullt Volum - + Zero Volume @@ -1505,7 +1532,7 @@ Markørknapp - + Mute @@ -1516,7 +1543,7 @@ Markørknapp - + Headphone Listen @@ -1537,25 +1564,25 @@ Markørknapp - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1625,82 +1652,82 @@ Markørknapp - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1741,451 +1768,451 @@ 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 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 - + 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 @@ -2200,102 +2227,102 @@ Markørknapp - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2447,1041 +2474,1063 @@ Markørknapp - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3596,32 +3645,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. @@ -3665,13 +3714,13 @@ Markørknapp CrateFeature - + Remove Fjern - + Create New Crate @@ -3681,132 +3730,132 @@ Markørknapp 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U spilleliste (*.m3u) - + 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. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Kasser lar deg organisere musikken som du vil! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3901,12 +3950,12 @@ Markørknapp Tidligere bidragsytere - + Official Website - + Donate @@ -4025,72 +4074,72 @@ Markørknapp DlgAutoDJ - + Skip Hopp over - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Sekunder - + Auto DJ Fade Modes Full Intro + Outro: @@ -4121,80 +4170,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto DJ - + Shuffle Tilfeldig rekkefølge - + 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. @@ -4417,37 +4466,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4486,17 +4535,17 @@ You tried to learn: %1,%2 - + Log - + Search Søk - + Stats @@ -5149,113 +5198,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Ingen - + %1 by %2 %1 av %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5268,105 +5317,105 @@ Apply settings and continue? - + Enabled Slått på - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Beskrivelse: - + Support: - + Screens preview - + Input Mappings - - + + Search Søk - - + + Add Legg til - - + + Remove Fjern @@ -5381,22 +5430,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5406,28 +5455,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Nullstill alle - + Output Mappings @@ -5586,6 +5635,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6177,62 +6236,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Informasjon - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7399,173 +7458,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Slått på - + Stereo Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Feil i oppsettet @@ -7583,131 +7641,131 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate Samplingsfrekvens - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Utgang - + Input Inngang - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7862,27 +7920,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available OpenGL ikke tilgjengelig - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7895,250 +7954,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds sekunder - + Low Lav - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High Høy - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8146,47 +8211,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware - + Controllers - + Library Bibliotek - + Interface - + Waveforms - + Mixer Mikser - + Auto DJ Auto DJ - + Decks - + Colors @@ -8221,47 +8286,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Effekter - + 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> - + Vinyl Control Vinylkontroll - + Live Broadcasting Direkte Sending - + Modplug Decoder @@ -8294,22 +8359,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Start opptak - + Recording to file: - + Stop Recording Stopp opptak - + %1 MiB written in %2 @@ -8617,284 +8682,284 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments Kommentarer - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Spornummer # - + Album Artist Albumartist - + Composer Komponist - + Title Tittel - + Grouping Gruppering - + Key Tast - + Year År - + Artist Artist - + Album Album - + Genre Sjanger - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM Dobbel BPM - + Halve BPM Halv BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous &Forrige - + Move to the next item. "Next" button - + &Next &Neste - + Duration: Varighet: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Åpne i filutforsker - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Bruk - + &Cancel &Avbryt - + (no color) @@ -9051,7 +9116,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9253,27 +9318,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9417,38 +9482,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. Check the logs for details. @@ -9456,12 +9521,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9469,18 +9534,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9488,15 +9553,15 @@ 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 @@ -9507,57 +9572,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Snarvei @@ -9565,62 +9630,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9630,22 +9695,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9692,27 +9757,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9772,18 +9837,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9795,208 +9860,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10012,13 +10118,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - - + + Playlists Spillelister @@ -10028,32 +10134,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Lås opp - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -11544,7 +11676,7 @@ Fully right: end of the effect period - + Deck %1 Spiller %1 @@ -11677,7 +11809,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11708,7 +11840,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11841,12 +11973,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11881,42 +12013,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11974,54 +12106,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12156,19 +12288,19 @@ may introduce a 'pumping' effect and/or distortion. Lås - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12580,7 +12712,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12762,7 +12894,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Omslagsbilde @@ -12998,197 +13130,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Spill - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13426,924 +13558,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Neste - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Forrige - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14478,33 +14618,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14524,205 +14664,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14767,254 +14917,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Løs ut - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode Vinyl Kontrollmodus - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15022,12 +15172,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15035,47 +15185,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15247,47 +15392,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15411,407 +15556,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... + + + + + Search for tracks in the current library view - - Export the library to the Engine Prime format + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist Lag en ny spilleliste - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View &Vis - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen &Fullskjerm - + Display Mixxx using the full screen Vis Mixxx på hele skjermen - + &Options &Alternativer - + &Vinyl Control &Vinylkontroll - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences &Innstillinger - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &Hjelp - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. Les Mixxx bruksanvisningen. - + &Keyboard Shortcuts &Tastatursnarveier - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application Oversett Denne Applikasjon. - + Help translate this application into your language. Hjelp til med å oversette dette programmet til ditt språk. - + &About &Om - + About the application Om programmet @@ -15819,25 +15995,25 @@ This can not be undone! WOverview - + 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 @@ -15846,25 +16022,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Søk - + Clear input @@ -15875,169 +16039,163 @@ This can not be undone! Søk… - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Snarvei + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Avslutt søk + + Delete query from history + WSearchRelatedTracksMenu - + Search related Tracks - + Key Tast - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artist - + Album Artist Albumartist - + Composer Komponist - + Title Tittel - + Album Album - + Grouping Gruppering - + Year År - + Genre Sjanger - + Directory - + &Search selected @@ -16045,599 +16203,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Legg til i spilleliste - + Crates Kasser - + Metadata - + Update external collections - + Cover Art Omslagsbilde - + Adjust BPM - + Select Color - - + + Analyze Analysér - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Fjern - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Egenskaper - + Open in File Browser Åpne i filutforsker - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Vurdering - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Tast - + ReplayGain Avspillingsnivå - + Waveform Bølgeform - + Comment Kommentar - + All Alle - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Lås BPM - + Unlock BPM Åpne BPM - + Double BPM Dobbel BPM - + Halve BPM Halv BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Spiller %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Avbryt - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Lukk - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16653,37 +16837,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16691,37 +16875,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16729,60 +16913,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Vis eller skjul kolonner + + + Shuffle Tracks + + 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. @@ -16793,67 +16982,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Bla gjennom - + Export directory - + Database version - + Export Eksportér - + Cancel Avbryt - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16874,7 +17074,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16884,23 +17084,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_nl.qm b/res/translations/mixxx_nl.qm index 0a6f312fb6d4..f780ff74d4f0 100644 Binary files a/res/translations/mixxx_nl.qm and b/res/translations/mixxx_nl.qm differ diff --git a/res/translations/mixxx_nl.ts b/res/translations/mixxx_nl.ts index e954edb9d6ae..9eea7fa2332b 100644 --- a/res/translations/mixxx_nl.ts +++ b/res/translations/mixxx_nl.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Kratten - + Enable Auto DJ Activeer Auto DJ - + Disable Auto DJ De-activeer Auto DJ - + Clear Auto DJ Queue Wis de Auto DJ wachtrij - + Remove Crate as Track Source Verwijder Krat als Track bron - + Auto DJ Auto-DJ - + Confirmation Clear Bevestig het wissen - + Do you really want to remove all tracks from the Auto DJ queue? Wilt u echt alle tracks uit de Auto DJ wachtrij verwijderen? - + This can not be undone. Dit can niet ongedaan gemaakt worden - + Add Crate as Track Source Voeg Krat toe als Track bron @@ -223,7 +231,7 @@ - + Export Playlist Exporteer afspeellijst @@ -277,13 +285,13 @@ - + Playlist Creation Failed Creatie Afspeellijst is mislukt - + An unknown error occurred while creating playlist: Een onbekende fout trad op bij het creëren van afspeellijst: @@ -298,12 +306,12 @@ Weet je zeker dat je de afspeellijst <b>%1</b> wil verwijderen? - + 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 Afspeellijst (*.m3u8);;PLS Afspeellijst (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Tijdstempel @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kan de Track niet laden. @@ -362,7 +370,7 @@ Kanalen - + Color Kleur @@ -377,7 +385,7 @@ Componist - + Cover Art Cover Art @@ -387,7 +395,7 @@ Datum Toegevoegd - + Last Played Laatst Afgespeeld @@ -417,7 +425,7 @@ Toonaard (Key) - + Location Locatie @@ -427,7 +435,7 @@ - + Preview Voorbeluistering @@ -467,7 +475,7 @@ Jaar - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Afbeelding ophalen @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Kan veilige wachtwoordopslag niet gebruiken: toegang tot keychain is mislukt. - + Secure password retrieval unsuccessful: keychain access failed. Veilig ophalen van wachtwoorden mislukt: toegang keychain mislukt. - + Settings error Fout in Instellingen - + <b>Error with settings for '%1':</b><br> <b>Fout bij instellingen voor '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Computer @@ -612,17 +620,17 @@ 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 door mappen te navigeren, nummers te bekijken en te laden van op uw harde schijf en externe apparaten. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx is een open source DJ software. Voor meer informatie, zie: - + Starts Mixxx in full-screen mode Start Mixxx in volledig scherm Modus - + 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 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 Pad waar de debug statistieken naar worden geschreven - + 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! The verbinding met de controller zal emeer aggressieve meldingen en fouten weergeven wanner verkeerd gebruik van controller-API's wordt gedetecteerd. Nieuwe controller-verbindingen zullen worden ontwikkeld met deze optie geactiveerd.! - + 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. - + Top-level directory where Mixxx should look for settings. Default is: Hoofd-niveau bestandsmap waar Mixxx moet in kijken voor instellingen. Standaardmap is: - + Starts Auto DJ when Mixxx is launched. Start Auto DJ wanneer Mixxx wordt opgestart. - + Rescans the library when Mixxx is launched. Scant de bibliotheek opnieuw wanneer Mixxx wordt opgestart - + Use legacy vu meter Gebruik de bestaande vu meter - + Use legacy spinny gebruik de bestaande spinny - - Loads experimental QML GUI instead of legacy QWidget skin - Laadt de experimentele QML GUI opv de normale QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + 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 @@ -866,32 +879,32 @@ 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. Stelt het logging-niveau voor de log-buffer waarop de buffer naar de Mixxx-logs wordt gestuurd. <level> is één van de waarden gedefinieerd op het --log-niveau bovenaan. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Stelt de maximum grootte in voor een mixxx.log bestand in bytes. Gebruik -1 voor ongelimiteerd. De standaard is 100 MB als 1e5 or 100000000. - + 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. - + Overrides the default application GUI style. Possible values: %1 Overschrijft de standaard applicatie GUI stijl. Mogelijke waarden: %1 - + 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. - + Preview rendered controller screens in the Setting windows. Bekijk het berekend controller scherm in de Instellingen vensters. @@ -984,2557 +997,2585 @@ traceren - Boven + Profileringsberichten ControlPickerMenu - + Headphone Output Hoofdtelefoon Output - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Voorbeluistering Deck %1 - + Microphone %1 Microfoon %1 - + Auxiliary %1 Auxiliary %1 - + Reset to default Reset naar standaard - + Effect Rack %1 Effecten Rack %1 - + Parameter %1 Parameter %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Hoofdtelefoon mix (pre/main) - + Toggle headphone split cueing Hoofdtelefoon gesplitst geluid-schakelaar - + Headphone delay Hoofdtelefoon vertraging - + Transport Transport - + Strip-search through track Track grondig doorzoeken - + Play button Afspeel-knop - - + + Set to full volume Zet het volume maximaal - - + + Set to zero volume Zet volume op nul - + Stop button Stop-knop - + Jump to start of track and play Spring naar begin van Track en speel af - + Jump to end of track Spring naar einde van Track - + Reverse roll (Censor) button Reverse roll (Censor) knop - + Headphone listen button Hoofdtelefoon luister-knop - - + + Mute button Demp-knop - + Toggle repeat mode Herhaal Modus Aan/Uit-Schakelaar - - + + Mix orientation (e.g. left, right, center) Oriëntatie van de mix (bvb links, rechts, midden) - - + + Set mix orientation to left Stel de Mix-Oriëntatie in naar links - - + + Set mix orientation to center Stel de Mix-Oriëntatie in naar het midden - - + + Set mix orientation to right Stel de Mix-Oriëntatie in naar rechts - + Toggle slip mode Slip mode Aan/Uit-Schakelaar - - + + BPM BPM - + Increase BPM by 1 Verhoog BPM met 1 - + Decrease BPM by 1 Verlaag BPM met 1 - + Increase BPM by 0.1 Verhoog BPM met 0.1 - + Decrease BPM by 0.1 Verlaag BPM met 0.1 - + BPM tap button BPM tik knop - + Toggle quantize mode Quantize Modus Aan/Uit-Schakelaar - + One-time beat sync (tempo only) Eenmalige beat-synchronisatie (alleen tempo) - + One-time beat sync (phase only) Eenmalige beat-synchronisatie (alleen fase) - + Toggle keylock mode Toonaard (Key)-vergrendeling Aan/Uit-Schakelaar - + Equalizers Equalizers - + Vinyl Control Vinyl Besturing - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Vinylbestuuring Cue-Modus Schakelaar (OFF/ONE/HOT) - + Toggle vinyl-control mode (ABS/REL/CONST) Vinylbesturing Cue-Modus Schakelaar (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 Stel het Cue-pint in - + Go to cue point Ga naar het Cue-Punt - + Go to cue point and play Spring naar het Cue-Punt en speel af - + Go to cue point and stop Spring naar het Cue-Punt en stop - + Preview from cue point Voorbeluistering vanaf het Cue-Punt - + Cue button (CDJ mode) Cue knop (CDJ Modus) - + Stutter cue Stotter Cue - + Hotcues Hotcues - + Set, preview from or jump to hotcue %1 Instellen, 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 af - + Preview from hotcue %1 Voorbeluisteren vanaf Hotcue %1 - - + + Hotcue %1 Hotcue %1 - + Looping Looping (herhaallussen) - + 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 - + Slot %1 Spoor %1 - + Headphone Mix Hoofdtelefoon Mix - + Headphone Split Cue Hoofdtelefoon Split Cue - + Headphone Delay Hoofdtelefoon Vertraging - + Play Afspelen - + Fast Rewind Snel Terugspoelen - + Fast Rewind button Snel Terugspoel knop - + Fast Forward Snel vooruitspoelen - + Fast Forward button Snel Vooruitspoel knop - + Strip Search Grondig doorzoeken - + Play Reverse Achterwaarts Afspelen - + Play Reverse button Achterwaarts Afspelen knop - + Reverse Roll (Censor) Omgekeerde Roll (Censor) - + Jump To Start Spring naar Startpositie - + Jumps to start of track Spring naar de Startpositie van de Track - + Play From Start Afspelen vanaf de Startpositie - + Stop Stop - + Stop And Jump To Start Stop en spring naar de Startpositie - + Stop playback and jump to start of track Stop afspelen en spring naar de Startpositie van de Track - + Jump To End Spring naar de Eindpositie - + Volume Volume - - - + + + Volume Fader Volume Fader - - + + Full Volume Maximaal Volume - - + + Zero Volume Geen Volume - + Track Gain Track Versterking - + Track Gain knob Track Versterking knop - - + + Mute Dempen - + Eject Uitwerpen - - + + Headphone Listen Hoofdtelefoon Luisteren - + Headphone listen (pfl) button Hoofdtelefoon luisteren (pfl) knop - + Repeat Mode Herhaal Modus - + Slip Mode Slip Modus - - + + Orientation Positionering - - + + Orient Left Positionering Links - - + + Orient Center Positionering Midden - - + + Orient Right Positionering Rechts - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM Tikken - + Adjust Beatgrid Faster +.01 Versnel Beatgrid +.01 - + Increase track's average BPM by 0.01 Versnel Track's gemiddelde BPM met 0.01 - + Adjust Beatgrid Slower -.01 Vertraag Beatgrid -.01 - + Decrease track's average BPM by 0.01 Vertraag Track's gemiddelde BPM met 0.01 - + Move Beatgrid Earlier Verplaats Beatgrid vooruit - + Adjust the beatgrid to the left Stel de beatgrid bij naar links - + Move Beatgrid Later Verplaats Beatgrid achteruit - + Adjust the beatgrid to the right Stel de beatgrid bij naar rechts - + Adjust Beatgrid Stel Beatgrid bij - + Align beatgrid to current position Lijn beatgrid uit met huidige positie - + Adjust Beatgrid - Match Alignment Stel Beatgrid bij - Huidige Uitlijning - + Adjust beatgrid to match another playing deck. Stel de beatgrid bij met een ander spelend deck. - + Quantize Mode Quantize Modus - + Sync Synchroniseer - + Beat Sync One-Shot Eenmalige beat-synchronisatie - + Sync Tempo One-Shot Eenmalige tempo-synchronisatie - + Sync Phase One-Shot Eenmalige fase-synchronisatie - + Pitch control (does not affect tempo), center is original pitch Toonhoogte (Pitch) besturing (heeft geen invloed op tempo), midden is de originele Toonhoogte (Pitch) - + Pitch Adjust Toonhoogte (Pitch) Bijregelen - + Adjust pitch from speed slider pitch Stel Toonhoogte (Pitch) bij van pitch schuifregelaar - + Match musical key Muziekale toonaaard overeenstemmen - + Match Key Toonaard (Key) overeenstemmen - + Reset Key Toonaard (Key) resetten - + Resets key to original Toonaard (Key) resetten naar origineel - + High EQ Hoge EQ - + Mid EQ Mid EQ - - + + Main Output Hoofduitgang - + Main Output Balance Hoofduitgang Balans - + Main Output Delay Hoofduitgang Delay - + Main Output Gain Hoofduitgang Versterking - + Low EQ Lage EQ - + Toggle Vinyl Control Vinyl Bediening Schakelaar - + Toggle Vinyl Control (ON/OFF) Vinyl Bediening AAN/UIT-Schakelaar - + Vinyl Control Mode Vinyl Bediening Modus - + Vinyl Control Cueing Mode Vinyl Bediening Cueing Modus - + Vinyl Control Passthrough Vinyl Bediening Directe Doorvoer - + Vinyl Control Next Deck Vinyl Bediening Volgend deck - + Single deck mode - Switch vinyl control to next deck Enkelvoudige deck Modus - Wissel Vinyl Bediening naar het volgend deck - + Cue Cue - + Set Cue Cue instellen - + Go-To Cue Spring Naar Cue - + Go-To Cue And Play Spring naar Cue en Speel - + Go-To Cue And Stop Spring naar Cue en Stop - + Preview Cue Cue voorbeluisteren - + Cue (CDJ Mode) Cue (CDJ Modus) - + Stutter Cue Stotter Cue - + Go to cue point and play after release Spring 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 Roll %1 Beats - + Add to Auto DJ Queue (bottom) Toevoegen aan 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) Toevoegen aan Auto-DJ Wachtrij (bovenaan) - + Prepend selected track to the Auto DJ Queue Voeg de geselecterde Track vooraan toe in de Auto-DJ wachtrij - + Load Track Track Laden - + Load selected track Geselecteerde Track laden - + Load selected track and play Laad geselecteerde Track en speel af - - + + Record Mix Mix Opnemen - + Toggle mix recording Opname Mix Schakelaar - + Effects Effecten - - Quick Effects - Snelle Effecten - - - + Deck %1 Quick Effect Super Knob Deck %1 Snelle Effecten Superknop - + + Quick Effect Super Knob (control linked effect parameters) Snelle Effecten Superknop (bedien gekoppelde Effect-parameters) - - + + + + Quick Effect Snel Effect - + Clear Unit Wis Eenheid - + Clear effect unit Wis Effecten eenheid - + Toggle Unit Eenheid Aan/Uit-Schakelaar - + 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 Superknop - + Next Chain Volgende Schakel - + Assign Toewijzen - + Clear Wissen - + Clear the current effect Wis het huidige Effect - + Toggle Aan/Uit-Schakelaar - + Toggle the current effect Huidig Effect Aan/Uit-Schakelaar - + Next Volgende - + Switch to next effect Spring naar het volgende Effect - + Previous Vorige - + Switch to the previous effect Spring naar het vorige Effect - + Next or Previous Volgende of Vorige - + Switch to either next or previous effect Spring naar het volgende of vorige Effect - - + + Parameter Value Parameter Waarde - - + + Microphone Ducking Strength Microfoon Onderdrukkingssterkte - + Microphone Ducking Mode Microfoon Onderdrukkingsmodus - + Gain Versterken - + Gain knob Versterk-knop - + Shuffle the content of the Auto DJ queue Schudden van de Auto-DJ-wachtrij - + Skip the next track in the Auto DJ queue Sla het volgende nummer in de Auto-DJ-wachtrij over - + Auto DJ Toggle Auto-DJ Aan/Uit-Schakelaar - + Toggle Auto DJ On/Off Auto-DJ Aan/Uit-Schakelaar - + 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 mengpaneel - + 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 Track-Bibliotheek om al de beschikbare schermruimte te benutten. - + Effect Rack Show/Hide Toon/Verberg het Effecten rack - + Show/hide the effect rack Toon/Verberg het Effecten rack - + Waveform Zoom Out Waveform Uitzoomen - + Headphone Gain Hoofdtelefoon Versterking - + Headphone gain Hoofdtelefoon versterking - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Tik om het Tempo te synchroniseren (fase wordt met quantize ingeschakeld), ingedrukt houden om permanente synchronisatie in te schakelen - + One-time beat sync tempo (and phase with quantize enabled) Eenmalig beat-synchronisatie Tempo (fase wordt met quantize ingeschakeld) - + Playback Speed Afspeel Snelheid - + Playback speed control (Vinyl "Pitch" slider) Bediening Afspeel Snelheid (Vinyl "Toonhoogte (Pitch)" regelaar) - + Pitch (Musical key) Toonhoogte (Pitch) - + Increase Speed Versnellen - + Adjust speed faster (coarse) Snelheid Aanpassen - Versnellen (grof) - + Increase Speed (Fine) Versnellen (Fijn) - + Adjust speed faster (fine) Snelheid Aanpassen - Versnellen (fijn) - + Decrease Speed Vertragen - + Adjust speed slower (coarse) Snelheid Aanpassen - Vertragen (grof) - + Adjust speed slower (fine) Snelheid 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) - - + + Adjust %1 Aanpassen %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Effect Eenheid %1 - + Button Parameter %1 Parameterknop %1 - + Skin Skin - + Controller Controller - + Crossfader / Orientation Crossfader / Oriëntatie - + Main Output gain Hoofduitgang Versterking - + Main Output balance Hoofduitgang Balans - + Main Output delay Hoofduitgang Delay - + Headphone Hoofdtelefoon - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Dempen %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Verwijder of herlaad een Track, bvb herlaad de laatst verwijderde Track (van om het even welke speler)<br>Dubbele druk herlaad de laatste vervangen Track. In een lege speler wordt de voorlaatste verwijderde Track geladen. - + BPM / Beatgrid BPM / Beatgrid - + Halve BPM Halveer BPM - + Multiply current BPM by 0.5 Vermenigvuldig huidige BPM met 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Vermenigvuldig huidige BPM met 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Vermenigvuldig huidige BPM met 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Vermenigvuldig huidige BPM met 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Vermenigvuldig huidige BPM met 1.5 - + Double BPM Verdubbel BPM - + Multiply current BPM by 2 Vermenigvuldig huidige BPM met 2 - + Tempo Tap Tempo Tikken - + Tempo tap button Tempo Tikken toets - + Move Beatgrid Beat-raster verplaatsen - + Adjust the beatgrid to the left or right Pas het Beat-raster aan naar links of rechts - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock Schakel de BPM/beatgrid vergrendeling - + Revert last BPM/Beatgrid Change Maak de laatste BPM/Beatgrid wijziging ongedaan - + Revert last BPM/Beatgrid Change of the loaded track. Maak de laatste BPM/Beatgrid wijziging van de huidige track ongedaan - + Sync / Sync Lock Sync / Sync Lock - + Internal Sync Leader Interne synchronisatie geleider - + Toggle Internal Sync Leader Interne Synchronisatie geleider Aan/Uit-Schakelaar - - + + Internal Leader BPM Interne BPM geleider - + Internal Leader BPM +1 Interne BPM geleider +1 - + Increase internal Leader BPM by 1 Verhoog interne BPM geleider met 1 - + Internal Leader BPM -1 Interne BPM geleider -1 - + Decrease internal Leader BPM by 1 Verlaag interne BPM geleider met 1 - + Internal Leader BPM +0.1 Interne BPM geleider +0.1 - + Increase internal Leader BPM by 0.1 Verhoog interne BPM geleider met 0.1 - + Internal Leader BPM -0.1 Interne BPM geleider -0.1 - + Decrease internal Leader BPM by 0.1 Verlaag interne BPM geleider met 0.1 - + Sync Leader Synchronisatie geleider - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Sync mode 3-standen Schakelaar/Aanwijzer (Uit, Zachte geleider, Uitdrukkelijke geleider) - + Speed Snelheid - + Decrease Speed (Fine) Snelheid Aanpassen - Vertragen (Fijn) - + Pitch (Musical Key) Toonhoogte (Pitch) aanpassen - + Increase Pitch Toonhoogte (Pitch) aanpassen - Verhoog toon - + Increases the pitch by one semitone Verhoogt de Toonhoogte (Pitch) met een halve toon - + Increase Pitch (Fine) Toonhoogte (Pitch) aanpassen - Verhoog Toonhoogte (Fijn) - + Increases the pitch by 10 cents Verhoogt de Toonhoogte (Pitch) met 10 cent. - + Decrease Pitch Toonhoogte (Pitch) aanpassen - Verlaag toon - + Decreases the pitch by one semitone Verlaagt de Toonhoogte (Pitch) met een halve toon. - + Decrease Pitch (Fine) Toonhoogte (Pitch) aanpassen - Verlaag Toonhoogte (Fijn) - + Decreases the pitch by 10 cents Verlaagt de Toonhoogte (Pitch) met 10 cent. - + Keylock Keylock - + CUP (Cue + Play) CUP (Cue + Afspelen) - + Shift cue points earlier Verschuift Cue-Punten achteruit - + Shift cue points 10 milliseconds earlier Verschuif cue points 10 milliseconden achteruit - + Shift cue points earlier (fine) Verschuift cue points achteruit (Fijn) - + Shift cue points 1 millisecond earlier Verschuift cue points 1 milliseconde achteruit - + 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 - - + + Sort hotcues by position Sorteer hotcues op positie - - + + Sort hotcues by position (remove offsets) Sorteer hotcues op positie (verwijder de verrekening) - + Hotcues %1-%2 Hotcues %1-%2 - + Intro / Outro Markers Intro / Outro Markeerpunten - + Intro Start Marker Intro-Begin Markeerpunt - + Intro End Marker Intro-Einde Markering - + Outro Start Marker Outro-Begin Markering - + Outro End Marker Outro-Einde Markering - + intro start marker Intro-Begin Markering - + intro end marker Intro-Einde Markering - + outro start marker Outro-Begin Markering - + outro end marker Outro-Einde Markering - + Activate %1 [intro/outro marker Activeer %1 - + Jump to or set the %1 [intro/outro marker Springen naar of instellen van de %1 - + Set %1 [intro/outro marker Stel %1 in - + Set or jump to the %1 [intro/outro marker Instellen van of springen naar de %1 - + Clear %1 [intro/outro marker Wis %1 - + Clear the %1 [intro/outro marker Wis de %1 - + if the track has no beats the unit is seconds Indien de track geen beats heeft is de eenheid seconden - + 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 %1 Beats set from its end point Lus %1 Beats ingesteld vanaf het eindpunt - + Loop Roll %1 Beats set from its end point Lus Rol %1 Beats ingesteld vanaf het eindpunt - + Create %1-beat loop with the current play position as loop end Maak %1-beat lus met de huidige afspeelpositie als lus einde - + Create temporary %1-beat loop roll with the current play position as loop end Maak tijdelijke %1-beat lus rol met de huidige afspeelpositie als lus einde - + Loop Beats Loop Beats - + Loop Roll Beats Loop Roll Beats - + Go To Loop In Spring naar Loop-In - + Go to Loop In button Ga naar Loop-In knop - + Go To Loop Out Spring naar Loop-Uit - + Go to Loop Out button Ga Naar Loop-Uit knop - + Toggle loop on/off and jump to Loop In point if loop is behind play position Aan/Uit-Schakelaar van de Loop 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 de Loop in, spring naar Loop-In punt en stop - + Halve the loop length Halveer de lengte van de Loop - + Double the loop length Verdubbel de lengte van de Loop - + Beat Jump / Loop Move Beat Sprong / Verplaats Lus - + Jump / Move Loop Forward %1 Beats Spring / Verplaats Loop vooruit met %1 Beats - + Jump / Move Loop Backward %1 Beats Spring / Verplaats Loop achteruit met %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 Sprong / Verplaats Geselecteerde Loop 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 Sprong / Verplaats Geselecteerde Loop 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 Beat Sprong - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Duidt aan welke lusaanduiding statisch blijft wanneer de grootte wordt aangepast of wordt overgenomen van de huidige positie - + Beat Jump / Loop Move Forward Beat Sprong / Verplaats Loop vooruit - + Beat Jump / Loop Move Backward Beat Sprong / Verplaats Loop achteruit - + Loop Move Forward Verplaats Loop vooruit - + Loop Move Backward Verplaats Loop achteruit - + Remove Temporary Loop Verwijder de tijdelijke Loop - + Remove the temporary loop Verwijder de tijdelijke loop - + Navigation Navigatie - + Move up Beweeg Omhoog - + Equivalent to pressing the UP key on the keyboard Vergelijkbaar met het indrukken van de Up-toets op het toetsenbord - + Move down Beweeg Omlaag - + Equivalent to pressing the DOWN key on the keyboard Vergelijkbaar met het indrukken van de DOWN-toets op het toetsenbord - + Move up/down Beweeg 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 Scroll Omhoog - + Equivalent to pressing the PAGE UP key on the keyboard Vergelijkbaar met het indrukken van de PAGE UP-toets op het toetsenbord - + Scroll Down Scroll Omlaag - + 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 Beweeg naar links - + Equivalent to pressing the LEFT key on the keyboard Vergelijkbaar met het indrukken van de LINKS-toets op het toetsenbord - + Move right Beweeg 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 Beweeg 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 - + Sort focused column Sorteer de geselecteerde kolom - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Sorteer de kolom van de geselecteerde cel, evenwaardig aan klikken op de titel - + 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) Toevoegen aan de Auto-DJ wachtrij (vervangen) - + 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 - + Clear search Zoektermen verwijderen - + Clears the search query Verwijdert de zoektermen - - + + Select Next Color Available Selecteer de volgende beschikbare kleur - + Select the next color in the color palette for the first selected track Selecteer de volgende kleur in het kleurenpalet voor de eerste geselecteerde track - - + + Select Previous Color Available Selecteer de vorige beschikbare kleur - + Select the previous color in the color palette for the first selected track Selecteer de vorige kleur in het kleurenpalet voor de eerste geselecteerde track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Deck %1 Snel Effect Inschakelknop - + + Quick Effect Enable Button Snel Effect Inschakelknop - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + 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 Schakelaar - + Toggle effect unit between D/W and D+W modes Effecteenheid Schakelaar tussen de modi D/W en D+W - + Next chain preset Volgende Keten-voorkeuze - + Previous Chain Vorige Keten - + Previous chain preset Vorige Keten-voorkeuze - + Next/Previous Chain Volgende/Vorige Keten - + Next or previous chain preset Volgende of vorige Keten-voorkeuze - - + + 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) Micropfoon OnderdrukkingsModus Schakelaar 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 Willekeurige Track 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 Track Faden - + Trigger the transition to the next track Activeer de overgang naar het volgende nummer - + User Interface Gebruikers interface - + Samplers Show/Hide Samplers Toon/Verberg - + Show/hide the sampler section Toon/Verberg Sampler sectie - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Toon/Verberg Microfoon && Aux - + Waveform Zoom Reset To Default De waveform grootte terug naar standaard zetten - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms De waveform grootte terug naar standaard zetten Selecteer in Opties -> Waveform - + Select the next color in the color palette for the loaded track. Selecteer de volgende kleur in het kleurenpalet voor de geladen track - + Select previous color in the color palette for the loaded track. Selecteer de vorige kleur in het kleurenpalet voor de geladen track - + Navigate Through Track Colors Navigeer Door de Track Kleuren - + Select either next or previous color in the palette for the loaded track. Selecteer ofwel de volgende of de vorige kleur in het kleurenpalet voor de geladen track - + 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 opname van uw Mix. - - + + + Deck %1 Stems + + + + + 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 het Deck Voorbeluisteren - + Toggle 4 Decks 4 Decks Schakelaar - + Switches between showing 2 decks and 4 decks. Schakelt tussen weergave van 2 en 4 decks. - + Cover Art Show/Hide (Decks) Cover Art in Decks Toon/Verberg - + 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) Vinyl Spinners (Alle Decks) Toon/Verberg - + Show/Hide all spinnies Toon/Verberg alle Spinnies - + Toggle Waveforms Waveforms Schakelaar - + 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 Trackwaardering met één ster @@ -3547,6 +3588,159 @@ traceren - Boven + Profileringsberichten Onbekend + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ traceren - Boven + Profileringsberichten 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 tijdens 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. @@ -3682,27 +3876,27 @@ traceren - Boven + Profileringsberichten ControllerScriptEngineLegacy - + Controller Mapping File Problem Probleem met Controller Mappingbestand - + The mapping for controller "%1" cannot be opened. De Mapping voor de controller "%1" kan niet worden geopend. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. De functionaliteit van deze Controller-Mapping wordt uitgeschakeld totdat het probleem is opgelost. - + File: Bestand: - + Error: Fout: @@ -3735,7 +3929,7 @@ traceren - Boven + Profileringsberichten - + Lock Vergrendel @@ -3765,7 +3959,7 @@ traceren - Boven + Profileringsberichten Auto-DJ Track Bron - + Enter new name for crate: Geef nieuwe naam voor Krat @@ -3782,22 +3976,22 @@ traceren - Boven + Profileringsberichten Importeer Krat - + Export Crate Exporteer Krat - + Unlock Ontgrendel - + An unknown error occurred while creating crate: Een onbekende fout heeft plaatsgevonden bij het aanmaken van de Krat: - + Rename Crate Hernoem Krat @@ -3807,28 +4001,28 @@ traceren - Boven + Profileringsberichten Maak een Krat voor je volgende set, voor je favoriete electrohouse Tracks, of voor je meest gevraagde Tracks. - + Confirm Deletion Bevestig Verwijderen - - + + Renaming Crate Failed Krat Hernoemen Mislukt - + Crate Creation Failed Krat Aanmaken Mislukt - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) M3U Afspeellijst (*.m3u);;M3U8 Afspeellijst (*.m3u8);;PLS Afspeellijst (*.pls);;Tekst CSV (*.csv);;Leesbare Tekst (*.txt) - + M3U Playlist (*.m3u) M3U Afspeellijst (*.m3u) @@ -3849,17 +4043,17 @@ traceren - Boven + Profileringsberichten Met Kratten kun je je muziek organiseren zoals je wilt! - + Do you really want to delete crate <b>%1</b>? Wil je echt Krat <b>%1</b> verwijderen? - + 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. @@ -3954,12 +4148,12 @@ traceren - Boven + Profileringsberichten Eerdere Medewerkers - + Official Website Officiële Website - + Donate Donaties @@ -4792,123 +4986,140 @@ U probeerde aan te leren: %1, %2 DlgPrefBroadcast - + 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 - + Automatic Automatisch - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Actie mislukt - + You can't create more than %1 source connections. U kunt niet meer dan %1 bronverbindingen maken. - + Source connection %1 Bronverbinding %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Er is ten minste één bronverbinding vereist. - + Are you sure you want to disconnect every active source connection? Weet u zeker dat u elke actieve bronverbinding wilt verbreken? - - + + Confirmation required Bevestiging benodigd - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' heeft hetzelfde Icecast mountpoint als '%2'. Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunnen niet tegelijkertijd worden ingeschakeld. - + Are you sure you want to delete '%1'? Weet u zeker dat u '%1' wilt verwijderen? - + Renaming '%1' Hernoemen '%1' - + New name for '%1': Nieuwe naam voor '%1': - + Can't rename '%1' to '%2': name already in use Kan de naam van '%1' niet hernoemen naar '%2': naam is al in gebruik @@ -4921,27 +5132,27 @@ Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunne Voorkeuren voor live-uitzendingen - + Mixxx Icecast Testing Testen Mixxx Icecast - + Public stream Openbare stream - + http://www.mixxx.org http://www.mixxx.org - + Stream name Stream-naam - + 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. Vanwege gebreken in sommige streaming clients, kan het dynamisch bijwerken van Ogg Vorbis-metagegevens leiden tot hoorbare storingen en onderbrekingen veroorzaken. Vink dit vakje aan om de metagegevens toch bij te werken. @@ -4981,67 +5192,72 @@ Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunne Instellingen voor %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Ogg Vorbis-metadata dynamisch bijwerken. - + ICQ ICQ - + AIM AIM - + Website Website - + Live mix Live mix - + IRC IRC - + Select a source connection above to edit its settings here Selecteer hierboven een bronverbinding om de instellingen hier te bewerken - + Password storage Wachtwoord opslag - + Plain text Alleen tekst - + Secure storage (OS keychain) Veilige opslag (OS keychain) - + Genre Genre - + Use UTF-8 encoding for metadata. Gebruik UTF-8 codering voor metadata. - + Description Omschrijving @@ -5067,42 +5283,42 @@ Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunne Kanalen - + Server connection Server verbinding - + Type Type - + Host Host - + Login Login - + Mount Monteren - + Port Poort - + Password Wachtwoord - + Stream info Stream-info @@ -5112,17 +5328,17 @@ Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunne Metadata - + Use static artist and title. Hanteer statische artiest en titel. - + Static title Statische titel - + Static artist Statische artiest @@ -5181,13 +5397,14 @@ Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunne DlgPrefColors - - + + + By hotcue number Op Hotcue-nr - + Color Kleur @@ -5232,18 +5449,23 @@ Twee bronverbindingen met dezelfde server die hetzelfde mountpoint hebben, kunne + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Wanneer key kleuren geactiveerd zijn, zal Mixxx een kleuren hint tonen die geassocieerd is met elke key. - + Enable Key Colors Activeer Key Kleuren - + Key palette Key palet @@ -5251,114 +5473,114 @@ die geassocieerd is met elke key. DlgPrefController - + Apply device settings? Apparaatinstellingen toepassen? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Uw instellingen moeten worden toegepast voordat u de leerassistent start. Instellingen toepassen en doorgaan? - + None Geen - + %1 by %2 %1 bij %2 - + Mapping has been edited Toewijzing is bewerkt - + Always overwrite during this session Overschrijf altijd tijdens deze sessie - + Save As Opslaan Als - + Overwrite Overschrijf - + Save user mapping Bewaar gebruikerstoewijzingen - + Enter the name for saving the mapping to the user folder. Voer de naam in voor het opslaan van de toewijzing in de gebruikersmap. - + Saving mapping failed Het opslaan van de toewijzing is mislukt - + A mapping cannot have a blank name and may not contain special characters. Een toewijzing mag geen lege naam hebben en mag geen speciale tekens bevatten. - + A mapping file with that name already exists. Er bestaat al een toewijzingsbestand met die naam. - + Do you want to save the changes? Wilt u de wijzigingen opslaan? - + Troubleshooting Probleemoplossen - + <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>Als u deze mapping gebruikt, werkt uw controller mogelijk niet correct. Selecteer een andere Mapping of schakel de controller uit.</b></font><br><br> Deze Mapping is ontworpen voor een nieuwere Mixxx Controller Engine en kan niet worden gebruikt op je huidige Mixxx-installatien.<br>Je Mixxx-installatie heeft Controller Engine-versie %1. Voor deze mapping is een Controller Engine-versie> = %2 vereist.<br><br> Bezoek voor meer informatie de wikipagina over <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Controller Engine Versions</a>. - + Mapping already exists. Er bestaat al een Mapping. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> bestaat al in de map voor Mappings.<br>Overschrijven of opslaan met een nieuwe naam? - + Clear Input Mappings Wis Input-Mappings (Invoerkoppelingen) - + Are you sure you want to clear all input mappings? Weet u het zeker dat u alle Input-Mappings (invoerkoppelingen) wilt wissen? - + Clear Output Mappings Wis Output-Mappings (Uitvoerkoppelingen) - + Are you sure you want to clear all output mappings? Weet u het zeker dat u alle Output-Mappings (Uitvoerkoppelingen) wilt wissen? @@ -5376,100 +5598,105 @@ Instellingen toepassen en doorgaan? Ingeschakeld - + + Refresh mapping list + + + + Device Info Apparaat Info: - + Physical Interface: Fysieke Interface: - + Vendor name: Naam Leverancier:/> - + Product name: Product naam: - + Vendor ID Leverancier ID: - + VID: VID: - + Product ID Product ID - + PID: PID: - + Serial number: Serienummer: - + USB interface number: USB interface nummer: - + HID Usage-Page: HID-gebruikpagina: - + HID Usage: HID-gebruik: - + Description: Omschrijving: - + Support: Ondersteuning: - + Screens preview Scherm vooruitblik - + Input Mappings Input Mappings (Invoerkoppelingen) - - + + Search Zoek - - + + Add Toevoegen - - + + Remove Verwijder @@ -5489,17 +5716,17 @@ Instellingen toepassen en doorgaan? Laad Mapping (toewijzing) - + Mapping Info Mapping Info - + Author: Auteur: - + Name: Naam: @@ -5509,28 +5736,28 @@ Instellingen toepassen en doorgaan? Leerassistent (Enkel MIDI) - + Data protocol: Gegevensprotocol: - + Mapping Files: Mapping bestanden: - + Mapping Settings Instellingen voor mapping - - + + Clear All Maak leeg - + Output Mappings Output Mappings (Uitvoerkoppelingen) @@ -5545,21 +5772,21 @@ Instellingen toepassen en doorgaan? - 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 gebruikt "Mappings (toewijzingen)" om berichten van uw controller te verbinden met besturingselementen in Mixxx. Als u geen afbeelding voor uw controller ziet in het menu "Laad Mapping" wanneer u op uw controller in de linkerzijbalk klikt, kunt u er mogelijk een online downloaden van de %1. Plaats het XML- (.xml) en Javascript (.js) bestand (en) in de "Gebruikerstoewijzingen Folder" en start Mixxx opnieuw. Als u een toewijzing in een ZIP-bestand downloadt, extraheert u het XML- en Javascript-bestand (en) uit het ZIP-bestand naar uw "Gebruikerstoewijzing Folder" en start u Mixxx opnieuw. + 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ Hardware Gids - + MIDI Mapping File Format MIDI Mapping Bestandsformaat - + MIDI Scripting with Javascript MIDI Scripting met Javascript @@ -5689,6 +5916,16 @@ Instellingen toepassen en doorgaan? Multi-Sampling Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5718,137 +5955,137 @@ Instellingen toepassen en doorgaan? DlgPrefDeck - + Mixxx mode Mixxx Modus - + Mixxx mode (no blinking) Mixxx-Modus (zonder knipperen) - + Pioneer mode Pioneer Modus - + Denon mode Denon Modus - + Numark mode Numark Modus - + CUP mode CUP Modus - + mm:ss%1zz - Traditional mm:ss%1zz - Traditioneel - + mm:ss - Traditional (Coarse) mm:ss - Traditioneel (Ruw) - + s%1zz - Seconds s%1zz - Seconden - + sss%1zz - Seconds (Long) sss%1zz - Seconden (Lang) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kiloseconden - + Intro start Intro start - + Main cue Hoofd-cue - + First hotcue Eerste hotcue - + First sound (skip silence) Eerste geluid (stilte overslaan) - + Beginning of track Begin van de Track - + Reject Verwerp - + Allow, but stop deck Sta toe, maar stop het Deck - + Allow, play from load point Sta toe, speel vanaf geladen punt - + 4% 4% - + 6% (semitone) 6% (halve toon) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6303,62 +6540,62 @@ 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 dat Schermbeveiliging wordt uitgevoerd. - + Prevent screensaver from running Voorkom dat Schermbeveiliging wordt uitgevoerd - + Prevent screensaver while playing Voorkom Schermbeveiliging tijdens afspelen - + Disabled Uitgeschakeld - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + This skin does not support color schemes Deze skin ondersteunt geen kleurenschema's - + Information Informatie - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. Mixxx moet worden herstart vóór de nieuwe regio, schaal of multi-sampling instellingen toegepast worden. @@ -6585,67 +6822,97 @@ and allows you to pitch adjust them for harmonic mixing. Zie de handleiding voor details - + 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 - + Item is not a directory or directory is missing Het item is geen map of ontbreekt. - + Choose a music directory Kies een muziek folder - + Confirm Directory Removal Bevestig het verwijderen van de 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 observeren voor nieuwe Tracks. Wat wil je doen met de Tracks in deze map en submappen?<ul><li>Verberg alle Tracks uit deze map 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, Afspeelteller, 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Selecteer Bibliotheeklettertype @@ -6694,262 +6961,267 @@ and allows you to pitch adjust them for harmonic mixing. Herscan de bestandsmappen bij opstarten - + Audio File Formats Audiobestandsindelingen - + Track Table View Track tabel aanzicht - + Track Double-Click Action: Actie bij dubbel klik op Track - + BPM display precision: BPM detail weergave : - + Session History Sessie Geschiedenis - + Track duplicate distance Track komt dubbel voor - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Wanneer een Track opnieuw wordt afgespeeld dan wordt deze enkel in de geschiedenis opgeslagen als er ondertussen meer dan N andere Tracks werden afgespeeld. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Geschiedenis afspeellijsten met minder dan N Tracks worden verwijderd<br/><br/>Opmerking: het opkuisen gebeurd tijdens het opstarten en afsluiten van Mixxx. - + Delete history playlist with less than N tracks Verwijder Geschiedenis afspeellijst als die minder dan N Tracks bevat - + Library Font: Lettertype Bibliotheek: - + + Show scan summary dialog + + + + Grey out played tracks Verduister gespeelde tracks in grijs. - + Track Search Zoek track - + Enable search completions Zoekterm vervolledigen toestaan - + Enable search history keyboard shortcuts Zoekgeschiedenis via toetsenbord-snelkoppelingen toestaan - + Percentage of pitch slider range for 'fuzzy' BPM search: Percentage van het bereik van de pitch glijder voor wazige BPM zoekfunctie: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks Dit bereik zal zowel gebruikt worden in de wazige BPM zoekfunctie (`bpm) via het zoekvenster als voor de BPM zoekfunctie in het Track omgevingsmenu > en het Zoeken van Overeenkomstige Tracks - + Preferred Cover Art Fetcher Resolution Voorkeur resolutie bij zoeken naar Cover Art - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Zoek Cover Art bij CcoverArtArchive.com door Metadata van Musicbrainz te importeren. - + Note: ">1200 px" can fetch up to very large cover arts. Opmerking: ">1200 px" kan leiden tot zeer grote Cover Art bestanden. - + >1200 px (if available) >1200 px (indien beschikbaar) - + 1200 px (if available) 1200 px (indien beschikbaar) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Instellingen Map - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. De Mixxx instellingenmap bevat de Bibliotheek-database, verschillende configuratie-bestanden, log-bestanden, Track-analyses, als ook persoonlijke controller instellingen. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Bewerk deze bestanden alleen als u weet wat u doet en alleen terwijl Mixxx niet actief is. - + Open Mixxx Settings Folder Open Mixxx-instellingenmap - + Library Row Height: Rijhoogte Bibliotheek: - + Use relative paths for playlist export if possible Gebruik indien mogelijk relatieve paden bij exporteren van afspeellijsten - + ... ... - + px px - + Synchronize library track metadata from/to file tags Synchroniseer Bibliotheek Track metadata van /naar tags in bestanden. - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Automatisch de aangepaste Track-metadata vanuit de Bibliotheek naar de bestand-tags wegschrijven en de metadata opnieuw importeren vanuit de aangepaste bestanden naar de Bibliotheek. - + Synchronize Serato track metadata from/to file tags (experimental) Synchroniseer Serato Track metadata van/naar bestands-tags (experimenteel) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Houdt Track kleur, Beat Grid, BPM vergrendeling, Cue-Punten en Loops gesynchroniseerd met SERATO_MARKERS/MARKERS2 BestandsTags.<br/><br/>WAARSCHUWING: Activatie van deze optie activeert ook het her-importeren van de Serato metadata nadat bestanden nuiten Mixxx werden aangepast. Bij her-import wordt de bestaande metadata in Mixxx vervangen door de metadata die in de BestandsTags. Aangepaste metadata die niet in BestandsTags wordt opgeslagen, wordt verloren (bijv. Loop Kleuren) - + Edit metadata after clicking selected track Bewerk metadata nadat u op de geselecteerde Track hebt geklikt - + Search-as-you-type timeout: Zoeken-bij-typen timeout: - + ms ms - + Load track to next available deck Laad Track naar het volgende beschikbare Deck - + External Libraries Externe Bibliotheken - + You will need to restart Mixxx for these settings to take effect. U moet Mixxx opnieuw opstarten om deze instellingen te activeren. - + Show Rhythmbox Library Toon Rhythmbox Bibliotheek - + Track Metadata Synchronization / Playlists Track Metadata Synchronisatie / Afspeellijsten - + Add track to Auto DJ queue (bottom) Track toevoegen aan Auto-DJ wachtrij (onderaan) - + Add track to Auto DJ queue (top) Track toevoegen aan Auto-DJ wachtrij (bovenaan) - + Ignore Negeren - + Show Banshee Library Laat Banshee Bibliotheek zien - + Show iTunes Library Toon iTunes Bibliotheek - + Show Traktor Library Toon Traktor Bibliotheek - + Show Rekordbox Library Toon Rekordbox Bibliotheek - + Show Serato Library Toon Serato Bibliotheek - + All external libraries shown are write protected. Alle weergegeven externe bibliotheken zijn tegen schrijven beveiligd. @@ -7294,33 +7566,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Kies de Map voor Opnames - - + + Recordings directory invalid Map voor Opnames ongeldig - + Recordings directory must be set to an existing directory. De Map voor Opnames moet op een bestaande map worden ingesteld. - + Recordings directory must be set to a directory. De Map voor Opnames moet ingesteld zijn op een map. - + Recordings directory not writable Map voor Opnames is niet beschrijfbaar - + You do not have write access to %1. Choose a recordings directory you have write access to. U heeft geen schrijftoegang tot %1. Kies een Map voor Opnames waartoe u schrijftoegang hebt. @@ -7338,43 +7610,55 @@ and allows you to pitch adjust them for harmonic mixing. Zoeken... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Kwaliteit - + Tags Labels - + Title Titel - + Author Auteur - + Album Album - + Output File Format Bestandsindeling voor Uitvoer - + Compression Compressie - + Lossy @@ -7389,12 +7673,12 @@ and allows you to pitch adjust them for harmonic mixing. Map: - + Compression Level Compressie Niveau - + Lossless @@ -7527,172 +7811,177 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Standaard (lange vertraging) - + Experimental (no delay) Experimenteel (geen vertraging) - + Disabled (short delay) Uitgeschakeld (korte vertraging) - + Soundcard Clock Geluidskaart Klok - + Network Clock Netwerk Klok - + Direct monitor (recording and broadcasting only) Directe monitor (enkel opnemen en uitzenden) - + Disabled Uitgeschakeld - + Enabled Ingeschakeld - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Om Realtime scheduling in te schakelen (momenteel uitgeschakeld), zie de %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. De %1 bevat een lijst met geluidskaarten en controllers die u kunt overwegen voor het gebruik met Mixxx. - + Mixxx DJ Hardware Guide Mixxx DJ Hardware Gids - + + Find details in the Mixxx user manual + + + + Information Informatie - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. Mixxx moet worden herstart alvorens de multi-threaded RubberBand instelling wordt toegepast. - + auto (<= 1024 frames/period) auto (<= 1024 frames/periode) - + 2048 frames/period 2048 frames/periode - + 4096 frames/period 4096 frames/periode - + Are you sure? Weet u zeker? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. Stereo kanalen in mono kanalen omzetten voor gelijktijdige verwerking zal resulteren in een verlies van mono compatibiliteit en een diffuus stereo beeld. Dit wordt niet aangeraden tijdens uitzenden of opname. - + Are you sure you wish to proceed? Weet u zeker dat u wilt doorgaan. - + No Neen - + Yes, I know what I am doing Ja, Ik weet wat ik doe. - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Microfooningangen zijn niet synchroon met het opname- en uitzendsignaal in vergelijking met wat je hoort. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Meet de Round Trip Latency en voer het hierboven in voor Microphone Latency Compensation om de microfoon timing uit te lijnen. - + Refer to the Mixxx User Manual for details. Raadpleeg de Mixxx-gebruikershandleiding voor meer informatie. - + Configured latency has changed. De geconfigureerde latency is gewijzigd. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Meet opnieuw de Round Trip Latency en voer het hierboven in voor Microphone Latency Compensation om de microfoon timing uit te lijnen. - + Realtime scheduling is enabled. Realtime scheduling is ingeschakeld. - + Main output only Alleen HoofdUitgang - + Main and booth outputs Hoofd en Booth uitgangen - + %1 ms %1 ms - + Configuration error Configuratiefout @@ -7759,17 +8048,22 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Buffer Underflow Teller - + 0 0 @@ -7794,12 +8088,12 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Invoer - + System Reported Latency Door systeem gerapporteerde Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Vergroot je geluidsbuffer als de teller voor bufferleegloop verhoogt of als je korte onderbrekingen hoort tijdens het afspelen. @@ -7829,7 +8123,7 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Tips en diagnostische gegevens - + Downsize your audio buffer to improve Mixxx's responsiveness. Verklein uw audiobuffer om het reactievermogen van Mixxx te verbeteren. @@ -7876,7 +8170,7 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Vinyl Configuratie - + Show Signal Quality in Skin Toon signaalkwaliteit in het thema @@ -7912,46 +8206,51 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 Deck 3 - + Deck 4 Deck 4 - + Signal Quality Signaalkwaliteit - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Aangestuurd door xwax - + Hints Tips - + Select sound devices for Vinyl Control in the Sound Hardware pane. Selecteer geluidsapparaten voor vinylbesturing in het deelvenster Geluidsapparatuur. @@ -7959,58 +8258,58 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out DlgPrefWaveform - + Filtered Gefilterd - + HSV HSV - + RGB RGB - + Top - + Center Midden - + Bottom Onderkant - + 1/3 of waveform viewer options for "Text height limit" 1/3 van de waveform weergave - + Entire waveform viewer volledige waveform weergave - + OpenGL not available OpenGL niet beschikbaar - + dropped frames verloren frames - + Cached waveforms occupy %1 MiB on disk. Waveforms in cache gebruiken %1 MiB op schijf @@ -8028,22 +8327,17 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Framesnelheid - + OpenGL Status OpenGL Status - + Displays which OpenGL version is supported by the current platform. Geeft weer welke OpenGL-versie wordt ondersteund door het huidige platform. - - Normalize waveform overview - Normaliseer Waveform-overzicht - - - + Average frame rate Gemiddelde framesnelheid @@ -8059,7 +8353,7 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Standaard zoomniveau - + Displays the actual frame rate. Geeft de werkelijke framesnelheid weer. @@ -8094,7 +8388,7 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Laag - + Show minute markers on waveform overview Toon minuut-aanduidingen in waveform overview @@ -8139,7 +8433,7 @@ Het DoelVolume is bij benadering en veronderstelt dat Track PreGain en Hoofd Out Globale visuele versterking - + 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. Het waveform overzicht toont de waveform omslag van de hele Track. @@ -8208,22 +8502,22 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers pt - + Caching Caching - + 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 buffert de waveforms van je Tracks in de cache op schijf wanneer een Track voor de eerste keer laadt. Dit vermindert het CPU-gebruik tijdens het live spelen, maar vereist extra schijfruimte. - + Enable waveform caching Schakel waveform caching in - + Generate waveforms when analyzing library Genereer waveforms bij het analyseren van de Bibliotheek @@ -8239,7 +8533,7 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers - + Type Type @@ -8269,12 +8563,58 @@ Kies uit verschillende soorten weergaven voor de waveform, die voornamelijk vers Verplaatst de speelmarkeringspositie op de waveforms naar links, rechts of midden (standaard). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms Overzicht Waveform - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Wis gebufferde Waveforms @@ -8766,7 +9106,7 @@ Dit kan niet ongedaan gemaakt worden! BPM: - + Location: Locatie: @@ -8781,27 +9121,27 @@ Dit kan niet ongedaan gemaakt worden! Opmerkingen - + BPM BPM - + Sets the BPM to 75% of the current value. Stelt de BPM in op 75% van de huidige waarde. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Stelt de BPM in op 50% van de huidige waarde. - + Displays the BPM of the selected track. Geeft de BPM weer van de geselecteerde Track. @@ -8856,49 +9196,49 @@ Dit kan niet ongedaan gemaakt worden! Genre - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Stelt de BPM in op 200% van de huidige waarde. - + Double BPM Dubbele BPM - + Halve BPM 1/2 BPM - + Clear BPM and Beatgrid Wis BPM en Beat-Grid - + Move to the previous item. "Previous" button Ga naar het vorige item. - + &Previous &Vorige - + Move to the next item. "Next" button Ga naar het volgende item - + &Next &Volgende @@ -8923,12 +9263,12 @@ Dit kan niet ongedaan gemaakt worden! Kleur - + Date added: Datum toegevoegd: - + Open in File Browser Open bestand in Browser @@ -8938,12 +9278,17 @@ Dit kan niet ongedaan gemaakt worden! Samplefrequentie - + + Filesize: + + + + Track BPM: Track BPM: - + 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. @@ -8952,90 +9297,90 @@ Gebruik deze instelling als uw Tracks een constant tempo hebben (bijv. de meeste Dit resulteert vaak in Beat-Grids van hogere kwaliteit, maar zal het niet goed doen op Tracks met tempowisselingen. - + Assume constant tempo Ga uit van een constant tempo - + Sets the BPM to 66% of the current value. Stelt de BPM in op 66% van de huidige waarde. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Stelt de BPM in op 150% van de huidige waarde. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Stelt de BPM in op 133% van de huidige waarde. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Tik op de maat om de BPM in te stellen op je tik-snelheid. - + Tap to Beat Tik op de maat - + Hint: Use the Library Analyze view to run BPM detection. Tip: gebruik de weergave Bibliotheekanalyse om BPM-detectie uit te voeren. - + Save changes and close the window. "OK" button Sla wijzigingen op en sluit het venster. - + &OK &OK - + Discard changes and close the window. "Cancel" button Negeer wijzigingen en sluit het venster. - + Save changes and keep the window open. "Apply" button Sla wijzigingen op en houd het venster open. - + &Apply &Pas toe - + &Cancel &Annuleer - + (no color) (geen kleur) @@ -9192,7 +9537,7 @@ Dit resulteert vaak in Beat-Grids van hogere kwaliteit, maar zal het niet goed d &OK - + (no color) (geen kleur) @@ -9394,27 +9739,27 @@ Dit resulteert vaak in Beat-Grids van hogere kwaliteit, maar zal het niet goed d EngineBuffer - + Soundtouch (faster) Soundtouch (sneller) - + Rubberband (better) Rubberband (beter) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (bijna hi-fi kwaliteit) - + Unknown, using Rubberband (better) Onbekend, Rubberband gebruiken (beter) - + Unknown, using Soundtouch Onbekend, Soundtouch gebruiken @@ -9629,15 +9974,15 @@ Dit resulteert vaak in Beat-Grids van hogere kwaliteit, maar zal het niet goed d 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 @@ -9649,57 +9994,57 @@ Shown when VuMeter can not be displayed. Please keep ondersteuning. - + activate Activeer - + toggle Schakelaar - + 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 @@ -9707,37 +10052,37 @@ ondersteuning. Library - + This or a parent directory is already in your library. Deze map of een bovenliggende map is reeds opgenomen in uw bibliotheek. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Deze map of een opgelijste map bestaat niet of is niet toegankelijk. De operatie wordt afgebroken om fouten in de bibliotheek the vermijden. - - + + This directory can not be read. Deze map kan niet worden uitgelezen. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Een onbekende fout is opgetreden. De operatie wordt afgebroken om fouten in de bibliotheek the vermijden. - + Can't add Directory to Library Deze map kan niet worden toegevoegd aan de bibliotheek. - + Could not add <b>%1</b> to your library. %2 @@ -9746,27 +10091,27 @@ De operatie wordt afgebroken om fouten in de bibliotheek the vermijden. - + Can't remove Directory from Library De map kon niet uit uw bibliotheek verwijderd worden - + An unknown error occurred. Een onbekende fout is opgetreden. - + This directory does not exist or is inaccessible. Deze map bestaat niet of is niet toegankelijk. - + Relink Directory Herlink de map - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9778,22 +10123,22 @@ De operatie wordt afgebroken om fouten in de bibliotheek the vermijden. 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. @@ -9814,7 +10159,7 @@ Wil je het echt overschrijven? 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... + Mixxx heeft even nodig om je muziekbibliotheek te scannen, even geduld... @@ -9934,12 +10279,12 @@ Wil je het echt overschrijven? Verborgen Tracks - + Export to Engine DJ Exporteren naar Engine DJ - + Tracks Tracks @@ -9947,37 +10292,37 @@ 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 Probeer opnieuw @@ -9987,213 +10332,213 @@ Wil je het echt overschrijven? skin - + Allow Mixxx to hide the menu bar? Mixxx toestaan om de menu balk te verbergen? - + Hide Always show the menu bar? Verberg - + Always show Altijd tonen - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label De Mixxx menu balk is verborgen en kan worden opgeroepen met een enkele druk op de <b>Alt</b> toets.<br><br>Click <b>%1</b> om akkoord te gaan.<br><br>Click <b>%2</b> om dit uit te schakelen, bijvoorbeeld wanneer u Mixxx niet met een toetsenbord gebruikt.<br><br>U kan deze instelling altijd wijzigen in de Voorkeuren -> Interface.<br> - + Ask me again Vraag mij opnieuw - - + + 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 Directe 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + Error in skin file Fout in Skin-bestand - + The selected skin cannot be loaded. De geselecteerde Skin 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. OpenGL Directe weergave-herberekening 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 OpenGL Directe weergave-herberekening 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? @@ -10209,13 +10554,13 @@ Wilt u een invoerapparaat selecteren? PlaylistFeature - + Lock Vergrendel - - + + Playlists Afspeellijsten @@ -10225,58 +10570,63 @@ Wilt u een invoerapparaat selecteren? Afspeellijst door elkaar schudden - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Ontgrendel - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 Tracks van uw voorbereide afspeellijst over te slaan of enkele andere Tracks 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 Creëer nieuwe afspeellijst @@ -10375,59 +10725,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 Cover Art. Wilt u nu in uw Bibliotheek scannen naar Cover Art? - + 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-Grids 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-Grids behouden". Je kunt deze instelling op elk moment wijzigen in het "Beat Detectie" gedeelte in de Voorkeuren. - + Keep Current Beatgrids Huidige Beat-Grids behouden - + Generate New Beatgrids Nieuwe Beat-Grids genereren @@ -10541,69 +10891,82 @@ Wilt u nu in uw Bibliotheek scannen naar Cover Art? 14-bit (MSB) - + Main + Audio path indetifier Hoofd - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier Hoofdtelefoon - + Left Bus + Audio path indetifier Bus Links - + Center Bus + Audio path indetifier Bus Centraal - + Right Bus + Audio path indetifier Bus Rechts - + Invalid Bus + Audio path indetifier Ongeldinge Bus - + Deck + Audio path indetifier Deck - + Record/Broadcast + Audio path indetifier Opnemen/Uitzenden - + Vinyl Control + Audio path indetifier Vinyl Besturing - + Microphone + Audio path indetifier Microfoon - + Auxiliary + Audio path indetifier Auxiliary - + Unknown path type %1 + Audio path Ongekend pad-type %1 @@ -10946,47 +11309,49 @@ Met een breedte van nul, maakt dit het mogelijk handmatig over het gehele vertra Breedte - + Metronome Metronoom - + + The Mixxx Team Het Mixxx Team - + Adds a metronome click sound to the stream Voegt het klikgeluid van een metronoom toe aan de stream - + BPM BPM - + Set the beats per minute value of the click sound Stel de BPM waarde van het klikgeluid in - + Sync Synchroniseer - + Synchronizes the BPM with the track if it can be retrieved Synchroniseert de BPM met de Track als deze kan worden opgehaald - + + Gain Versterking - + Set the gain of metronome click sound Stel de versterking van het metronoom klikgeluid in @@ -11790,14 +12155,14 @@ Volledig rechts: einde van de effectperiode OGG-opname wordt niet ondersteund. OGG/Vorbis-Bibliotheek kan niet worden geïnitialiseerd. - - + + encoder failure encoderfout - - + + Failed to apply the selected settings. Kan de geselecteerde instellingen niet toepassen. @@ -11937,7 +12302,7 @@ Tip: compenseer "chipmunk" en "diepeg" stemmen De hoeveelheid versterking die toegepast wordt op het audio signaal. Op een hoger niveau zal het geluid meer worden vervormd (distored)r. - + Passthrough Directe Doorvoer @@ -11984,36 +12349,107 @@ Tip: compenseer "chipmunk" en "diepeg" stemmen Auto Makeup Gain - - Makeup - Makeup + + Makeup + Makeup + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + De Auto Makeup toets activeert het automatisch aanpassen van de gain om het ingangssignaal +en het verwerkt uitgangssignaal auditief zo dicht mogelijk bij elkaar te houden + + + + Off + Uit + + + + On + Aan + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + Drempel (dBFS) + + + + + Threshold + Drempel + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - De Auto Makeup toets activeert het automatisch aanpassen van de gain om het ingangssignaal -en het verwerkt uitgangssignaal auditief zo dicht mogelijk bij elkaar te houden + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - Uit + + Knee (dB) + - - On - Aan + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - Drempel (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - Drempel + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12045,6 +12481,7 @@ Bij een ratio van 1:1 gebeurt er geen compressie, aangezien het ingangssignaal e Knee (dBFS) + Knee Knee @@ -12055,11 +12492,13 @@ Bij een ratio van 1:1 gebeurt er geen compressie, aangezien het ingangssignaal e De Knee knop wordt gebruikt om een rondere compressie curve te bereiken. + Attack (ms) Aanslag (ms) + Attack Aanslag @@ -12071,11 +12510,13 @@ will set in once the signal exceeds the threshold De Aanslag knop stelt de tijd in die bepaalt hoe snel de compressie invalt wanneer het signaal de drempel overstijgt. + Release (ms) Release (ms) + Release Release @@ -12106,12 +12547,12 @@ release tijd zorgen voor een pompend effect en/of een vervorming. allerlei - + built-in ingebouwd - + missing ontbrekend @@ -12147,42 +12588,42 @@ release tijd zorgen voor een pompend effect en/of een vervorming. Stem #%1 - + Empty Leeg - + Simple Eenvoudig - + Filtered Gefilterd - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked Gestapeld - + Unknown Onbekend @@ -12443,193 +12884,193 @@ release tijd zorgen voor een pompend effect en/of een vervorming. ShoutConnection - - + + Mixxx encountered a problem Mixxx ondervond een probleem - + Could not allocate shout_t Kon shout_t niet toewijzen - + Could not allocate shout_metadata_t Kon shout_metadata_t niet toewijzen - + Error setting non-blocking mode: Fout bij instellen van niet-blokkerende Modus: - + Error setting tls mode: Fout bij instellen van de tls Modus - + Error setting hostname! Fout bij instellen hostname! - + Error setting port! Fout bij het instellen poort! - + Error setting password! Fout bij het instellen van het paswoord! - + Error setting mount! Fout bij het instellen van de koppeling! - + Error setting username! Fout bij het instellen van de gebruikersnaam! - + Error setting stream name! Fout bij het instellen van de stream-naam! - + Error setting stream description! Fout bij het instellen van de stream-omschrijving! - + Error setting stream genre! Fout bij het instellen van het stream-genre! - + Error setting stream url! Fout bij het instellen van de stream-url! - + Error setting stream IRC! Fout bij het instellen van het stream-IRC! - + Error setting stream AIM! Fout bij het instellen van de stream-AIM! - + Error setting stream ICQ! Fout bij het instellen van de stream-ICQ! - + Error setting stream public! Fout bij het instellen van de openbare stream! - + Unknown stream encoding format! Onbekend stream coderingsformaat! - + Use a libshout version with %1 enabled Gebruik een libshout-versie met %1 ingeschakeld - + Error setting stream encoding format! Fout bij instellen van streamcoderingsformaat! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Uitzenden op 96 kHz met Ogg Vorbis wordt momenteel niet ondersteund. Probeer een andere samplefrequentie of schakel over naar een andere codering. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Ga naar https://github.com/mixxxdj/mixxx/issues/5701 voor meer informatie. - + Unsupported sample rate Niet-ondersteunde samplefrequentie - + Error setting bitrate Fout bij het instellen van de bitrate - + Error: unknown server protocol! Fout: onbekend serverprotocol! - + Error: Shoutcast only supports MP3 and AAC encoders Fout: Shoutcast ondersteunt enkel MP3 en AAC encoders - + Error setting protocol! Fout bij het instellen van het protocol! - + Network cache overflow Netwerk cache overflow - + Connection error Connectiefout - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Een van de Live Uitzending-verbindingen veroorzaakte deze fout:<br><b>Fout met verbinding '%1':</b><br> - + Connection message Bericht bij verbinden - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Bericht van Live Uitzending-verbinding '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Verbinding met streaming-server is verbroken en %1 pogingen om opnieuw verbinding te maken, zijn mislukt. - + Lost connection to streaming server. Verbinding met de streaming-server verbroken. - + Please check your connection to the Internet. Controleer uw verbinding met internet. - + Can't connect to streaming server Kan niet verbinden met de streaming-server - + Please check your connection to the Internet and verify that your username and password are correct. Controleer uw verbinding met internet en controleer of uw gebruikersnaam en wachtwoord correct zijn. @@ -12637,7 +13078,7 @@ release tijd zorgen voor een pompend effect en/of een vervorming. SoftwareWaveformWidget - + Filtered Gefilterd @@ -12645,23 +13086,23 @@ release tijd zorgen voor een pompend effect en/of een vervorming. SoundManager - - + + a device Een apparaat - + An unknown error occurred Er is een onbekende fout opgetreden - + Two outputs cannot share channels on "%1" Twee uitgangen kunnen geen kanalen delen op %1 - + Error opening "%1" Fout bij het openen van "%1" @@ -12849,7 +13290,7 @@ release tijd zorgen voor een pompend effect en/of een vervorming. - + Spinning Vinyl Spinnend Vinyl @@ -13031,7 +13472,7 @@ release tijd zorgen voor een pompend effect en/of een vervorming. - + Cover Art Cover Art @@ -13221,243 +13662,243 @@ release tijd zorgen voor een pompend effect en/of een vervorming. Houdt de versterking van de lage EQ op nul terwijl deze actief is. - + Displays the tempo of the loaded track in BPM (beats per minute). Toont het tempo van het geladen Track in BPM (Beats Per Minute). - + Tempo Tempo - + Key The musical key of a track De Toonaard (Key) van een Track - + BPM Tap BPM Tikken - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Bij herhaaldelijk tikken, wordt de BPM aangepast zodat deze overeenkomt met de getikte BPM. - + Adjust BPM Down Pas BPM aan naar omlaag - + When tapped, adjusts the average BPM down by a small amount. Wanneer erop wordt getikt, wordt de gemiddelde BPM met een kleine waarde verlaagd. - + Adjust BPM Up Pas BPM aan naar omhoog - + When tapped, adjusts the average BPM up by a small amount. Wanneer erop wordt getikt, wordt de gemiddelde BPM met een kleine waarde verhoogd. - + Adjust Beats Earlier Verschuift de beats vooruit - + When tapped, moves the beatgrid left by a small amount. Wanneer erop getikt wordt, zal het Beat-Grid naar links verplaatst worden met een kleine waarde. - + Adjust Beats Later Verschuift de beats achteruit - + When tapped, moves the beatgrid right by a small amount. Wanneer erop getikt wordt, zal het Beat-Grid naar rechts verplaatst worden met een kleine waarde. - + Tempo and BPM Tap Tempo en Rate Tikken - + Show/hide the spinning vinyl section. Toon/Verberg de draaiende vinylsectie - + Keylock Toonaard (Key)-Vergrendeling - + Toggling keylock during playback may result in a momentary audio glitch. Schakelen van Toonaard (Key)-Vergrendeling tijdens het afspelen van een Track kan resulteren in een kortstondige audio-storing. - + Toggle visibility of Loop Controls Zichtbaarheid van de Loop-Controls Schakelaar - + Toggle visibility of Beatjump Controls Zichtbaarheid van de Beatjump-Controls Schakelaar - + Toggle visibility of Rate Control Zichtbaarheid van Rate-Control Schakelaar - + Toggle visibility of Key Controls Zichtbaarheid van de Key-Controls Schakelaar - + (while previewing) (tijdens het bekijken) - + Places a cue point at the current position on the waveform. Plaatst een Cue-Punt op de huidige positie op de waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Stopt Track op het Cue point, OF ga naar Cue point en speel na loslaten (CUP-Modus). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Stel het Cue-Punt in (Pioneer/Mixxx/Numark-Modus), stel het Cue-Punt in en speel na het loslaten (CUP-Modus) OF bekijk er een voorbeeld van (Denon-Modus). - + Is latching the playing state. Vergrendelt de afspeelstatus. - + Seeks the track to the cue point and stops. Doorzoekt de Track naar het Cue-Punt en stopt. - + Play Afspelen - + Plays track from the cue point. Speelt de Track vanaf het Cue-Punt - + 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!) (Deze skin moet worden aangepast om Sync Lock te gebruiken!) - + Enable Sync Lock Schakel Sync Lock aan - + Tap to sync the tempo to other playing tracks or the sync leader. Tik om het tempo te synchroniseren met andere spelende Tracks of met de sync leader. - + Enable Sync Leader Schakel Sync Leader aan - + When enabled, this device will serve as the sync leader for all other decks. Wanneer Ingeschakeld zal dit Deck als Sync Leader dienen voor alle andere Decks. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Dit is relevant wanneer een Track met een dynamisch Tempo wordt geladen in een Sync Leader Dech. In dat geval zullen de andere Decjs zich aanpassen aan het wijzigende Tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Wijzigt de AfspeelSnelheid van de Track (beïnvloedt zowel het Tempo als de Toonhoogte (Pitch)). Als Toonaard-vergrendeling is ingeschakeld, wordt alleen het tempo beïnvloed. - + Tempo Range Display Weergave van Tempo-Bereik - + Displays the current range of the tempo slider. Geeft het huidige bereik van de Temposchuifregelaar weer. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Un-Eject wanneer geen Track is geladen, bijv. herlaad de laatst uitgeworpen Track (van om het even welk Deck). - + Delete selected hotcue. Verwijder de geselecteerde Hotcue. - + Track Comment Track commentaar - + Displays the comment tag of the loaded track. Toont het opmerking-veld van de geladen Track. - + Opens separate artwork viewer. Opent een aparte viewer voor artwork. - + Effect Chain Preset Settings Effect Ketting Voorkeuze instellingen - + Show the effect chain settings menu for this unit. Toon de Effect Ketting instellingen voor deze unit. - + Select and configure a hardware device for this input Selecteer en configureer een hardware apparaat voor deze uitgang - + Recording Duration Opnameduur @@ -13680,949 +14121,984 @@ release tijd zorgen voor een pompend effect en/of een vervorming. Houdt de afspeelsnelheid lager (weinig) tijdens inschakelen (tempo). - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. Wanneer herhaaldelijk wordt aangetikt, wordt het tempo aangepast aan het aangetikt BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap Tempo Tikken - + Rate Tap and BPM Tap Rate Tap en BPM Tikken - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change Herstel laatste BPM/Beatgrid wijziging - + Revert last BPM/Beatgrid Change of the loaded track. Herstel laatste BPM/Beatgrid wijziging van de geladen track. - - + + Toggle the BPM/beatgrid lock Schakel de BPM/beatgrid vergrendeling - + Tempo and Rate Tap Tempo en Rate Tikken - + Tempo, Rate Tap and BPM Tap Tempo, Rate Tikken and BPM Tikken - + Shift cues earlier Verschuif 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 Linkerklik: 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 Linkerklik: 10 milliseconden later verschuiven - + Right click: shift 1 millisecond later Rechts klikken: 1 milliseconde later verschuiven - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Sleep een hotcue toets hierheen om het afspelen verder te zetten na het loslaten van de Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. Tip: Wijzig de standaard cue modus in Voorkeuren -> Decks. - + 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. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Wanneer de hotcue een lus cue is, schakelt de lus in en springt ernaar indien de lus zich achter de afspeelpositie bevind. - + If the play position is inside an active loop, stores the loop as loop cue. Indien de afspeelpositie zich bevind in een actieve lus, wordt de lus als een lus cue opgeslagen. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Sleep deze toets naar een andere Hotcue toets om deze te verplaatse, (wijzig de index). Wanneer een andere hotcue ingesteld wordt, worden beide omgewisseld. - + Expand/Collapse Samplers Vergroot/Verkleint Samplers - + Toggle expanded samplers view. Schakelt uitgebreide sampler weergave in. - + Displays the duration of the running recording. Geeft de duur van de lopende opname weer. - + Auto DJ is active Auto-DJ is actief - + Red for when needle skip has been detected. Rood voor wanneer de naald skip^gedetecteerd werd. - + Hot Cue - Track will seek to nearest previous hotcue point. Hot Cue - Track zoekt naar het dichtstbijzijnde vorige Hotcue-Punt. - + Sets the track Loop-In Marker to the current play position. Stelt de Track Loop-In Marker in op de huidige afspeelpositie. - + Press and hold to move Loop-In Marker. Houd ingedrukt om Loop-In Marker te verplaatsen. - + Jump to Loop-In Marker. Spring naar Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. Stelt de Track Loop-Out Marker in op de huidige afspeelpositie. - + Press and hold to move Loop-Out Marker. Houd ingedrukt om Loop-Out Marker te verplaatsen. - + Jump to Loop-Out Marker. Spring naar Loop-Out Marker. - + If the track has no beats the unit is seconds. Indien de track geen beats heeft is de eenheid seconden. - + Beatloop Size Beatloop maat - + Select the size of the loop in beats to set with the Beatloop button. Selecteer de maat van de loop in beats om de Beatloop-knop in te stellen. - + Changing this resizes the loop if the loop already matches this size. Als u dit wijzigt, wordt de maat van de loop aangepast als de loop al overeenkomt met deze grootte. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Halveer de maat van een bestaande beatloop of halveer de maat van de volgende beatloop die ingesteld is met de Beatloop-knop. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Verdubbel de maat van een bestaande beatloop of verdubbel de maat van de volgende beatloop die ingesteld is met de Beatloop-knop. - + Start a loop over the set number of beats. Start een Loop over het ingestelde aantal beats. - + Temporarily enable a rolling loop over the set number of beats. Schakel tijdelijk een Loop-roll in over het ingestelde aantal beats. - + Beatloop Anchor Beatlus Anker - + Define whether the loop is created and adjusted from its staring point or ending point. Bepaal of de lus aangemaakt en aangepast wordt vanaf het start- of eindpunt. - + Beatjump/Loop Move Size Beatjump / Loop Move Maat - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecteer het aantal beats om te verspringen of de Loop te verplaatsen met de Beatjump Vooruit/Achteruit knoppen. - + Beatjump Forward Beatjump vooruit - + Jump forward by the set number of beats. Spring vooruit met het ingestelde aantal beats. - + Move the loop forward by the set number of beats. Verplaats de Loop vooruit met het ingestelde aantal beats. - + Jump forward by 1 beat. Spring 1 beat vooruit. - + Move the loop forward by 1 beat. Verplaats de Loop met 1 beat vooruit. - + Beatjump Backward Beatjump achteruit - + Jump backward by the set number of beats. Spring achteruit met het ingestelde aantal beats. - + Move the loop backward by the set number of beats. Verplaats de Loop achteruit met het ingestelde aantal beats. - + Jump backward by 1 beat. Spring 1 beat achteruit. - + Move the loop backward by 1 beat. Verplaats de Loop 1 beat achteruit. - + Reloop Reloop - + If the loop is ahead of the current position, looping will start when the loop is reached. Als de Loop voor de huidige positie ligt, begint het Loopen wanneer de Loop is bereikt. - + Works only if Loop-In and Loop-Out Marker are set. Werkt alleen als Loop-In en Loop-Out Markeerpunten zijn ingesteld. - + Enable loop, jump to Loop-In Marker, and stop playback. Schakel Loop in, spring naar het Loop-In Markeerpunt en stop het afspelen. - + Displays the elapsed and/or remaining time of the track loaded. Geeft de verstreken en/of resterende tijd van de geladen Track weer. - + Click to toggle between time elapsed/remaining time/both. Schakelaar om te wisselen tussen Verstreken tijd/Resterende tijd/Beide. - + Hint: Change the time format in Preferences -> Decks. Tip: Wijzig het tijdformaat in Voorkeuren -> Decks. - + Show/hide intro & outro markers and associated buttons. Toon/Verberg intro & outro markeerpunten en bijbehorende knoppen. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Intro Start Markeerpunt - - - - + + + + If marker is set, jumps to the marker. Als het markeerpunt is ingesteld, springt deze naar het markeerpunt. - - - - + + + + If marker is not set, sets the marker to the current play position. Als er geen markeerpunt is ingesteld, wordt het markeerpunt op de huidige afspeelpositie gezet. - - - - + + + + If marker is set, clears the marker. Als het markeerpunt ingesteld is, wordt de markering gewist. - + Intro End Marker Intro Einde Markering - + Outro Start Marker Outro Begin Markering - + Outro End Marker Outro Einde Markering - + Mix Mix - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Pas de mix van het onbewerkte (droge) ingangssignaal aan met het verwerkte (natte) uitgangssignaal van de effecteenheid - + D/W mode: Crossfade between dry and wet D/W-Modus: overgang tussen Onbewerkt (Dry) en Verwerkt (Wet) - + D+W mode: Add wet to dry D+W Modus: voeg Verwerkt (Wet) toe aan Onbewerkt (Dry) - + Mix Mode Mix Modus - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Pas aan hoe het Onbewerkte (invoer/Dry) signaal wordt gemengd met het bewerkte (Uitvoer/Wet) signaal van de effecteenheid - + 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-Modus (gekruiste lijnen): Mix-knop vloeit over tussen Bewerkt en Onbewerkt Gebruik dit om het geluid van de Track te veranderen met EQ en filtereffecten. - + 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-knop voegt Wet aan Dry toe Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecten te wijzigen. - + Route the main mix through this effect unit. Leid de hoofdmix door deze effecteenheid. - + Route the left crossfader bus through this effect unit. Leid de linker crossfaderbus door dit effectapparaat. - + Route the right crossfader bus through this effect unit. Leid de rechter crossfaderbus door dit effectapparaat. - + Right side active: parameter moves with right half of Meta Knob turn Rechterkant actief: parameter beweegt met de rechterhelft van de Meta-knop - + Stem Label Stem Label - + Name of the stem stored in the stem file Naam van de stem die opgeslagen is in het stem bestand - + Text is displayed in the stem color stored in the stem file De tekst wordt weergegeven in de kleur die opgeslagen is in het stem bestand - + this stem color is also used for the waveform of this stem deze stem kleur wordt ook gebruikt voor de waveform van deze stem - + Stem Mute Stem Mute - + Toggle the stem mute/unmuted Schekel de stem mute - + Stem Volume Knob Stem Volume Knop - + Adjusts the volume of the stem Regelt het volume van de stem - + Skin Settings Menu Menu Skin-instellingen - + Show/hide skin settings menu Toon/Verberg menu Skin-instellingen - + Save Sampler Bank Sampler Collectie opslaan - + Save the collection of samples loaded in the samplers. Sla de collectie van samples op die in de samplers zijn geladen. - + Load Sampler Bank Sampler Collectie laden - + Load a previously saved collection of samples into the samplers. Laad een eerder opgeslagen Collectie samples op in de samplers. - + Show Effect Parameters Toon Effect Parameters - + Enable Effect Effect inschakelen - + Meta Knob Link Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. Stel in hoe deze parameter wordt gekoppeld aan het effect van de metaknop. - + Meta Knob Link Inversion Meta Knob Link Inversie - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Keert de richting om die deze parameter beweegt, wanneer u aan de metaknop van het effect draait. - + Super Knob Super Knop - + Next Chain Volgende Ketting - + Previous Chain Vorige Ketting - + Next/Previous Chain Volgende/Vorige Ketting - + Clear Wissen - + Clear the current effect. Wis het huidige effect. - + Toggle Schakelaar - + Toggle the current effect. Huidige effect Schakelaar. - + Next Volgende - + Clear Unit Wis Eenheid - + Clear effect unit. Wis de effect-eenheid - + Show/hide parameters for effects in this unit. Toon/Verberg parameters voor effecten in deze unit. - + Toggle Unit Eenheid Schakelaar - + Enable or disable this whole effect unit. Aan/Uit-Schakelaar van deze hele Effecteneenheid. - + Controls the Meta Knob of all effects in this unit together. Bestuurt de metaknop van alle effecten samen in deze eenheid. - + Load next effect chain preset into this effect unit. Laad de volgende vooraf ingestelde EffectenKetting in deze Effecteenheid. - + Load previous effect chain preset into this effect unit. Laad vorige vooraf ingestelde EffectenKetting in deze Effecteneenheid. - + Load next or previous effect chain preset into this effect unit. Laad vorige of volgende vooraf ingestelde EffectenKetting in deze Effecteneenheid. - - - - - - - - - + + + + + + + + + Assign Effect Unit Wijs Effecteneenheid toe - + Assign this effect unit to the channel output. Wijs deze Effecteneenheid toe aan de kanaaluitvoer. - + Route the headphone channel through this effect unit. Stuur het hoofdtelefoonkanaal door deze Effecteneenheid. - + Route this deck through the indicated effect unit. Stuur dit Deck door de aangegeven Effecteneenheid. - + Route this sampler through the indicated effect unit. Stuur deze sampler door de aangegeven Effecteneenheid. - + Route this microphone through the indicated effect unit. Stuur de microfoon door de aangegeven Effecteneenheid. - + Route this auxiliary input through the indicated effect unit. Stuur de Auxiliary ingang door de aangegeven Effecteneenheid. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. De Effecteenheid moet ook zijn toegewezen aan een Deck of andere geluidsbron om het effect te horen. - + Switch to the next effect. Schakel over naar het volgende effect. - + Previous Vorige - + Switch to the previous effect. Schakel over naar het vorige effect. - + Next or Previous Volgende of Vorige - + Switch to either the next or previous effect. Schakel over naar het volgende of vorige effect. - + Meta Knob Meta Knop - + Controls linked parameters of this effect Bestuurt gekoppelde parameters van dit effect - + Effect Focus Button Effect Focus knop - + Focuses this effect. Legt de focus op dit effect. - + Unfocuses this effect. Neemt de focus weg van dit effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. Raadpleeg voor meer informatie de webpagina op de Mixxx-wiki voor je controller . - + Effect Parameter Effect Parameter - + Adjusts a parameter of the effect. Past een parameter van het effect aan. - + Inactive: parameter not linked Inactief: parameter niet gekoppeld. - + Active: parameter moves with Meta Knob Actief: parameter beweegt met metaknop - + Left side active: parameter moves with left half of Meta Knob turn Linkerkant actief: parameter beweegt met linkerhelft van de metaknopdraai - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Linker- en rechterkant actief: parameter beweegt over bereik met de helft van de metaknopdraai en terug met de andere helft - - + + Equalizer Parameter Kill Demp Equalizer Parameter - - + + Holds the gain of the EQ to zero while active. Houdt de versterking van de EQ op nul terwijl deze actief is. - + Quick Effect Super Knob Superknop Quick Effect - + Quick Effect Super Knob (control linked effect parameters). Superknop Quick Effect ( controle op gekoppelde effectparameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Tip: Wijzig de standaard Quick Effect-Modus in Voorkeuren -> Equalizers. - + Equalizer Parameter Equalizer Parameter - + Adjusts the gain of the EQ filter. Pas de versterking van de EQ filter aan. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Tip: Wijzig de standaard EQ-Modus in Voorkeuren -> Equalizers. - - + + Adjust Beatgrid Stel Beat-Grid bij - + Adjust beatgrid so the closest beat is aligned with the current play position. Pas de Beat-Grid aan zodat de dichtstbijzijnde beat uitgelijnd is met de huidige afspeelpositie. - - + + Adjust beatgrid to match another playing deck. Pas de Beat-Grid aan om te matchen een ander spelend Deck. - + If quantize is enabled, snaps to the nearest beat. Als Quantizatie is ingeschakeld, springt het naar de dichtstbijzijnde Beat. - + Quantize Quantizatie - + Toggles quantization. Quantizatie Aan/Uit-Schakelaar. - + Loops and cues snap to the nearest beat when quantization is enabled. Loops en Cues springen naar de dichtstbijzijnde beat wanneer Quantizatie is ingeschakeld. - + Reverse Omkeren - + Reverses track playback during regular playback. Keert het afspelen van de Track om tijdens normaal afspelen. - + Puts a track into reverse while being held (Censor). Keert een Track om wanneer deze wordt vastgehouden (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. Het afspelen gaat verder waar het Track zou zijn geweest als het niet tijdelijk was omgekeerd. - - - + + + Play/Pause Play/Pauze - + Jumps to the beginning of the track. Spring naar het begin van de track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Synchroniseert het tempo (BPM) en Fase met dat van de andere Track, als BPM op beide Tracks wordt gedetecteerd. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Synchroniseert het tempo (BPM) met dat van de andere Track, als BPM op beide Tracks wordt gedetecteerd. - + Sync and Reset Key Synchroniseer en Herstel Toonaard (Key) - + Increases the pitch by one semitone. Verhoogt de Toonhoogte (Pitch) met een halve toon. - + Decreases the pitch by one semitone. Verlaagt de Toonhoogte (Pitch) met een halve toon. - + Enable Vinyl Control Schakel VinylBediening in - + When disabled, the track is controlled by Mixxx playback controls. Indien uitgeschakeld, wordt de Track bestuurd door Mixxx-afspeelknoppen. - + When enabled, the track responds to external vinyl control. Indien ingeschakeld, reageert de Track op externe VinylBediening. - + Enable Passthrough Directe Doorvoer inschakelen - + Indicates that the audio buffer is too small to do all audio processing. Geeft aan dat de audiobuffer te klein is om alle audiobewerkingen uit te voeren. - + Displays cover artwork of the loaded track. Toont hoes van de geladen track. - + Displays options for editing cover artwork. Toont de bewerkopties voor de Cover Art. - + Star Rating Sterwaardering - + Assign ratings to individual tracks by clicking the stars. Ken waarderingen toe aan individuele Tracks door op de sterren te klikken. @@ -14757,33 +15233,33 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Dempsterkte microfoon Talkover - + Prevents the pitch from changing when the rate changes. Voorkomt dat de Toonhoogte (Pitch) verandert wanneer de snelheid verandert. - + Changes the number of hotcue buttons displayed in the deck Wijzigt het aantal Hotcue-knoppen dat in de deck wordt weergegeven - + Starts playing from the beginning of the track. Begint te spelen vanaf het begin van de Track. - + Jumps to the beginning of the track and stops. Sprint naar het begin van de Track en stopt. - - + + Plays or pauses the track. Speelt of pauzeert de Track. - + (while playing) (tijdens het spelen) @@ -14803,215 +15279,215 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Main Kanaal R Volume Meter - + (while stopped) (terwijl gestopt) - + Cue Cue - + Headphone Hoofdtelefoon - + Mute Dempen - + Old Synchronize Oude Synchronisatie - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Synchroniseert met de eerste deck (in numerieke volgorde) dat een Track afspeelt en een BPM heeft. - + If no deck is playing, syncs to the first deck that has a BPM. Als geen Deck speelt, wordt het gesynchroniseerd met de eerste Deck met een BPM. - + Decks can't sync to samplers and samplers can only sync to decks. Decks kunnen niet worden gesynchroniseerd met Samplers en Samplers kunnen alleen worden gesynchroniseerd met Decks. - + Hold for at least a second to enable sync lock for this deck. Houd minimaal één seconde ingedrukt om de SynchronisatieVergrendeling voor dit Deck in te schakelen. - + 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 met SynchronisatieVergrendeling, spelen allemaal in hetzelfde tempo, en Decks waarvoor ook Quantizatie is ingeschakeld, hebben hun beats altijd uitgelijnd. - + Resets the key to the original track key. Herstelt de Toonaard (Key) naar de originele Track-Toonaard (Key). - + Speed Control Snelheidsbediening - - - + + + Changes the track pitch independent of the tempo. Verandert de Track Toonhoogte (Pitch) onafhankelijk van het tempo. - + Increases the pitch by 10 cents. Verhoogt de Toonhoogte (Pitch) met 10 cent. - + Decreases the pitch by 10 cents. Verlaagt de Toonhoogte (Pitch) met 10 cent. - + Pitch Adjust Toonhoogte (Pitch) Bijregelen - + Adjust the pitch in addition to the speed slider pitch. Regel de Toonhoogte (Pitch) als aanvulling bij de snelheid van de schuifregelaar. - + Opens a menu to clear hotcues or edit their labels and colors. Opent een menu om Hotcues te wissen of om de labels en kleuren te bewerken. - + Drag this button onto a Play button while previewing to continue playback after release. Sleep deze toets naar de afspeeltoets tijdens het voorbeluisteren om het afspelen verder te zetten na het loslaten. - + Dragging with Shift key pressed will not start previewing the hotcue. Slepen met de Shift toets ingedrukt zal het voorbeluisteren van de hotcue niet starten. - + Record Mix Neem Mix Op - + Toggle mix recording. Mix Opname Schakelaar. - + Enable Live Broadcasting Live-uitzenden Inschakelen - + Stream your mix over the Internet. Stream je mix over het Internet. - + Provides visual feedback for Live Broadcasting status: Voorziet visuele feedback voor de status van live-uitzendingen: - + disabled, connecting, connected, failure. Uitgeschakeld, Verbinden, Verbonden, Fout. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Indien ingeschakeld, speelt de deck onmiddelijk audio af die op de vinyl-invoer binnenkomt. - + Playback will resume where the track would have been if it had not entered the loop. Het afspelen wordt hervat waar de Track zou zijn geweest als deze niet in de Loop was terechtgekomen. - + Loop Exit Verlaat Loop - + Turns the current loop off. Schakelt de huidige Loop uit. - + Slip Mode Slip Modus - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Indien actief, gaat het afspelen op de achtergrond gedempt door tijdens een Loop, Omgekeerd Afspelen, Scratch etc. - + Once disabled, the audible playback will resume where the track would have been. Eenmaal uitgeschakeld, wordt het hoorbaar Afspelen hervat waar de Track zou zijn geweest. - + Track Key The musical key of a track Track Toonaard (Key) - + Displays the musical key of the loaded track. Geeft de Toonaard (Key) van de geladen Track weer. - + Clock Klok - + Displays the current time. Geeft de huidige tijd weer. - + Audio Latency Usage Meter Gebruiksmeter voor Audio Latency - + Displays the fraction of latency used for audio processing. Toont het deel van de Latency weer dat wordt gebruikt voor audioverwerking. - + A high value indicates that audible glitches are likely. Een hoge waarde geeft aan dat hoorbare storingen waarschijnlijk zijn. - + Do not enable keylock, effects or additional decks in this situation. Schakel in deze situatie geen ToonaardVergrendeling, Effecten of Extra Decks in. - + Audio Latency Overload Indicator Indicator voor overbelasting van de Audio Latency @@ -15051,259 +15527,259 @@ Gebruik deze optie om alleen het verwerkte (Wet) signaal met EQ en filtereffecte Activeer VinylBediening vanuit het Menu -> Opties. - + Displays the current musical key of the loaded track after pitch shifting. Toont de huidige Muzikale Toonaard (Key) van de geladen Track na het veranderen van de Toonhoogte (Pitch). - + Fast Rewind Snel Terugspoelen - + Fast rewind through the track. Snel terugspoelen in de Track. - + Fast Forward Snel vooruitspoelen - + Fast forward through the track. Snel vooruitspoelen in de Track. - + Jumps to the end of the track. Spring naar het einde van de Track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Stelt de Toonhoogte (Pitch) in op een Toonaard (Key) die een harmonische overgang van de andere Track mogelijk maakt. Vereist een gedetecteerde Toonaard (Key) op beide betrokken Decks. - - - + + + Pitch Control Toonhoogte (Pitch) regeling - + Pitch Rate Toonhoogte (Pitch) waarde - + Displays the current playback rate of the track. Geeft de huidige AfspeelSnelheid van de Track weer. - + Repeat Herhaal - + When active the track will repeat if you go past the end or reverse before the start. Indien actief, wordt de Track herhaald als u voorbij het einde gaat of wanneer u voor het begin komt bij Omgekeerd Afspelen. - + Eject Uitwerpen - + Ejects track from the player. Verwijdert de Track uit het Deck. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Springt naar de Hotcue als er een Hotcue is ingesteld. - + If hotcue is not set, sets the hotcue to the current play position. Stelt de Hotcue in op de huidige afspeelpositie als er nog geen Hotcue is ingesteld. - + Vinyl Control Mode VinylBediening Modus - + Absolute mode - track position equals needle position and speed. Absolute Modus - Trackpositie is gelijk aan Naald-Positie en Naald-Snelheid. - + Relative mode - track speed equals needle speed regardless of needle position. Relatieve Modus - Tracksnelheid is gelijk aan Naalds-Selheid, ongeacht de Naald-Positie. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Constante Modus - Tracksnelheid is gelijk aan laatst bekende constante snelheid, ongeacht de Naald-Invoer. - + Vinyl Status Vinyl Status - + Provides visual feedback for vinyl control status: Biedt visuele feedback over de vinylstatus: - + Green for control enabled. Groen als de besturing is ingeschakeld. - + Blinking yellow for when the needle reaches the end of the record. Geel knipperend wanneer de naald het einde van de plaat bereikt. - + Loop-In Marker Loop-In Markering - + Loop-Out Marker Loop-Out Markering - + Loop Halve Halve Loop - + Halves the current loop's length by moving the end marker. Halveert de lengte van de huidige Loop door de eindmarkering te verplaatsen. - + Deck immediately loops if past the new endpoint. De Deck zal onmiddellijk in een Loop gaan als het voorbij het nieuwe eindpunt is. - + Loop Double Dubbele Loop - + Doubles the current loop's length by moving the end marker. Verdubbelt de lengte van de huidige Loop door de eindmarkering te verplaatsen. - + Beatloop BeatLoop - + Toggles the current loop on or off. De huidige Loop Aan/Uit-Schakelen. - + Works only if Loop-In and Loop-Out marker are set. Werkt alleen als de Loop-In- en Loop-Out-markeringen zijn ingesteld. - + Vinyl Cueing Mode Vinyl Cueing Modus - + Determines how cue points are treated in vinyl control Relative mode: Bepaalt hoe Cue-Punten worden behandeld in Relatieve Modus met VinylBediening: - + Off - Cue points ignored. Off - Cue punten genegeerd. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. One Cue - Als de naald na het Cue-Punt valt, zoekt de Track naar dat Cue-Punt. - + Track Time Track-Tijd - + Track Duration Track-Duur - + Displays the duration of the loaded track. Toont de Duur van de geladen Track. - + Information is loaded from the track's metadata tags. Informatie wordt geladen uit de Metadata-Tags van de Track. - + Track Artist Track Artiest - + Displays the artist of the loaded track. Toont de Artiest van de geladen Track. - + Track Title Track Titel - + Displays the title of the loaded track. Toont de titel van de geladen Track. - + Track Album Track Album - + Displays the album name of the loaded track. Toont de albumnaam van de geladen Track. - + Track Artist/Title Track Artiest/Titel - + Displays the artist and title of the loaded track. Toont de Artiest en Titel van de geladen Track. @@ -15534,47 +16010,75 @@ Dit kan niet ongedaan gemaakt worden! WCueMenuPopup - + Cue number Cue Nr - + Cue position Cue Positie - + Edit cue label Bewerk Cue Label - + Label... Label... - + Delete this cue Verwijder deze Cue... - - Toggle this cue type between normal cue and saved loop - Schakelt dit cue type tussen normale cue en opgeslagen lus cue. + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - Linker-click: Gebruik de oude grootte of de huidige beatlus grootte als de lusgrootte + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - Rechter-click: Gebruik de huidige afspeelpositie als lus einde indien deze zich achter de cue bevindt. + + Right-click: use current play position as new jump start position + - + Hotcue #%1 Hotcue #%1 @@ -15699,323 +16203,363 @@ Dit kan niet ongedaan gemaakt worden! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Maak &nieuwe Afspeellijst - + Create a new playlist Maak een nieuwe afspeellijst - + Ctrl+n Ctrl+n - + Create New &Crate Creëer nieuwe &Krat - + Create a new crate Creëer een nieuwe Krat - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Bekijk - + Auto-hide menu bar Verberg de menu balk automatisch - + Auto-hide the main menu bar when it's not used. Verberg de hoofd menu balk wanneer deze niet gebruikt wordt. - + May not be supported on all skins. Wordt mogelijk niet op alle Skins ondersteund. - + Show Skin Settings Menu Menu Skin-instellingen weergeven - + Show the Skin Settings Menu of the currently selected Skin Toon het menu Skin-instellingen van de huidig geselecteerde thema - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Laat Microfoon Sectie zien - + Show the microphone section of the Mixxx interface. Toon de microfoonsectie van de Mixxx-interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Toon sectie VinylBediening - + Show the vinyl control section of the Mixxx interface. Toon de sectie VinylBediening van de Mixxx-interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Toon VoorbeluisterDeck - + Show the preview deck in the Mixxx interface. Toon het VoorbeluisterDeck in de Mixxx-interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Toon Cover Art - + Show cover art in the Mixxx interface. Toon Cover Art in de Mixxx-interface. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximaliseer Bibliotheek - + Maximize the track library to take up all the available screen space. Maximaliseer de TrackBibliotheek in de beschikbare schermruimte. - + Space Menubar|View|Maximize Library Spatie - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Volledig Scherm - + Display Mixxx using the full screen Geef Mixxx weer in volledig scherm - + &Options &Opties - + &Vinyl Control &VinylBediening - + Use timecoded vinyls on external turntables to control Mixxx Gebruik tijdgecodeerde vinyl op externe draaitafels om Mixxx te bedienen - + Enable Vinyl Control &%1 Activeer VinylBediening &%1 - + &Record Mix Mix &Opnemen - + Record your mix to a file Neem je Mix op naar een bestand - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Schakel Live &Uitzenden in - + Stream your mixes to a shoutcast or icecast server Stream je mixen naar een Shoutcast- of Icecast-server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Schakel &Sneltoetsen in - + Toggles keyboard shortcuts on or off ToetsenbordSneltoetsen Aan/Uit-Schakelen - + Ctrl+` Ctrl+` - + &Preferences &Instellingen - + Change Mixxx settings (e.g. playback, MIDI, controls) Mixxx-instellingen wijzigen (bijv. Afspelen, MIDI, BedieningsElementen) - + &Developer &Ontwikkelaar - + &Reload Skin &Herlaad Skin - + Reload the skin Herlaad de Skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Ontwikkelaar &Hulpmiddelen - + Opens the developer tools dialog Opent het dialoogvenster hulpprogramma's voor ontwikkelaars - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Statistieken: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Schakel Experiment-Modus in. Verzamelt statistieken in de EXPERIMENT-Tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Statistieken: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. Schakel Base Modus in. Verzamelt statistieken in de BASE Tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Deb&ugger ingeschakeld - + Enables the debugger during skin parsing Activeert de debugger tijdens het ontleden van het thema - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Help - + Show Keywheel menu title Toon Toonaard (Key)-Rad @@ -16032,74 +16576,74 @@ Dit kan niet ongedaan gemaakt worden! Exporteer de bibliotheek naar het Engine DJ formaat - + Show keywheel tooltip text Toon Toonaard (Key)-Rad - + F12 Menubar|View|Show Keywheel F12 - + &Community Support &Community Ondersteuning - + Get help with Mixxx Zoek hulp bij Mixxx - + &User Manual &Gebruikers Handleiding - + Read the Mixxx user manual. Lees de Mixxx gebruikers handleiding. - + &Keyboard Shortcuts &Toetsenbord Sneltoetsen - + Speed up your workflow with keyboard shortcuts. Versnel uw workflow met sneltoetsen. - + &Settings directory &Instellingen map - + Open the Mixxx user settings directory. Open de map met Mixxx GebruikersInstellingen - + &Translate This Application &Vertaal Deze Applicatie - + Help translate this application into your language. Help om deze applicatie in je eigen taal te vertalen. - + &About &Over - + About the application Over de applicatie @@ -16107,25 +16651,25 @@ Dit kan niet ongedaan gemaakt worden! WOverview - + Passthrough Directe Doorvoer - + 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... @@ -16134,25 +16678,13 @@ Dit kan niet ongedaan gemaakt worden! WSearchLineEdit - - Clear input - Clear the search bar input field - Invoer wissen - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Zoek - + Clear input Invoer wissen @@ -16163,93 +16695,87 @@ Dit kan niet ongedaan gemaakt worden! Zoek... - + Clear the search bar input field Wis het zoektekstveld - - Enter a string to search for - Geef waarde om op te zoeken + + Return + Enter - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Gebruik operatoren zoals BPM: 115-128, Artiest: BooFar, -jaar: 1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Voor meer informatie zie Handleiding > Mixxx Bibliotheek + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Snelkoppeling + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Focus + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts - Snelkoppelingen + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - Enter + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Kies Zoek voor zoek-terwijl-je-typt timeout of spring naar de Tracks nadien. + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Spatie - + Toggle search history Shows/hides the search history entries Zoekgeschiedenis Tonen/Verbergen-Schakelaar - + Delete or Backspace Delete of Backspace - - Delete query from history - Verwijder zoekterm uit geschiedenis - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Beëindig zoeken + + Delete query from history + Verwijder zoekterm uit geschiedenis @@ -16333,625 +16859,640 @@ Dit kan niet ongedaan gemaakt worden! WTrackMenu - + Load to Laad naar - + Deck Deck - + Sampler Sampler - + Add to Playlist Toevoegen aan Afspeellijst - + Crates Kratten - + Metadata Metadata - + Update external collections Update externe collecties - + Cover Art Cover Art - + Adjust BPM Pas BPM aan - + Select Color Selecteer kleur - - + + Analyze Analyseer - - + + Delete Track Files Verwijder Track bestanden - + Add to Auto DJ Queue (bottom) Toevoegen aan Auto-DJ Wachtrij (onderaan) - + Add to Auto DJ Queue (top) Toevoegen aan Auto-DJ Wachtrij (bovenaan) - + Add to Auto DJ Queue (replace) Toevoegen aan de Auto-DJ wachtrij (vervang) - + Preview Deck VoorbeluisterDeck - + Remove Verwijder - + Remove from Playlist Verwijder uit afspeellijst - + Remove from Crate Verwijder uit Krat - + Hide from Library Verbergen voor Bibliotheek - + Unhide from Library Zichtbaar maken voor Bibliotheek - + Purge from Library Wissen uit Bibliotheek - + Move Track File(s) to Trash Verplaats Track bestand(en) naar prullenmand - + Delete Files from Disk Verwijder Bestanden van Schijf - + Properties Eigenschappen - + Open in File Browser Open bestand in Browser - + Select in Library Selecteer in Bibliotheek - + Import From File Tags Importeer van bestandslabels - + Import From MusicBrainz Importeer van MusicBrainz - + Export To File Tags Exporteer naar bestandslabels - + BPM and Beatgrid BPM en Beat-Grid - + Play Count Afspeelteller - + Rating Waardering - + Cue Point Cue-Punt - - + + Hotcues Hotcues - + Intro Intro - + Outro Outro - + Key Toonaard (Key) - + ReplayGain ReplayGain - + Waveform Waveform - + Comment Opmerking - + All Alles - + Sort hotcues by position (remove offsets) Sorteer de hotcues volgens positie (verwijder de verrekening) - + Sort hotcues by position Sorteer de hotcues volgens positie - + Lock BPM Vergrendel BPM - + Unlock BPM Ontgrendel BPM - + Double BPM Dubbele BPM - + Halve BPM 1/2 BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze Her-analizeer - + Reanalyze (constant BPM) Her-analyseer (constante BPM) - + Reanalyze (variable BPM) Her-analyseer (variabele BPM) - + Update ReplayGain from Deck Gain Update ReplayGain van Deck Versterking - + Deck %1 Deck %1 - + Importing metadata of %n track(s) from file tags Importeren metadata van %n bestand(en) van file tagsImporteren metadata van %n Track(s) van file tags - + Marking metadata of %n track(s) to be exported into file tags Markeren metadata van %n bestand(en) om te exporteren in bestand tagsMarkeren metadata van %n bestand(en) om te exporteren in 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 Toevoegen aan nieuwe Krat - + Scaling BPM of %n track(s) Schalen BPM van %n bestand(en)Schalen BPM van %n bestand(en) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Vergrendelen BPM van %n bestand(en)Vergrendelen BPM van %n bestand(en) - + Unlocking BPM of %n track(s) Ontgrendelen BPM van %n bestand(en)Vergrendelen BPM van %n bestand(en) - + Setting rating of %n track(s) - + Setting color of %n track(s) Kleur instellen van %n bestand(en)Kleur instellen van %n bestand(en) - + Resetting play count of %n track(s) Resetten afspeelteller van %n bestand(en)Resetten afspeelteller van %n bestand(en) - + Resetting beats of %n track(s) Resetten Beats van %n bestand(en)Resetten Beats van %n bestand(en) - + Clearing rating of %n track(s) Verwijderen beoordeling van %n bestand(en)Verwijderen beoordeling van %n bestand(en) - + Clearing comment of %n track(s) Dit kan niet ongedaan gemaakt wordenVerwijder opmerking van %n Track(s) - + Removing main cue from %n track(s) Verwijderen Main Cue van %n bestand(en)Verwijderen Main Cue van %n bestand(en) - + Removing outro cue from %n track(s) Verwijderen Outro Cue van %n bestand(en)Verwijderen Outro Cue van %n bestand(en) - + Removing intro cue from %n track(s) Verwijderen Intro Cue van %n bestand(en)Verwijderen Intro Cue van %n bestand(en) - + Removing loop cues from %n track(s) Verwijderen Loop Cues van %n bestand(en)Verwijderen Loop Cues van %n bestand(en) - + Removing hot cues from %n track(s) Verwijderen Hotcues van %n bestand(en)Verwijderen Hotcues van %n bestand(en) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) Resetten Toonaard (Key) van %n bestand(en)Resetten Toonaard (Key) van %n bestand(en) - + Resetting replay gain of %n track(s) Resetten herhaal versterking van %n bestand(en)Resetten herhaal versterking van %n bestand(en) - + Resetting waveform of %n track(s) Resetten Waveform van %n bestand(en)Resetten Waveform van %n bestand(en) - + Resetting all performance metadata of %n track(s) Resetten alle prestatie Metadata van %n bestand(en)Resetten alle prestatie Metadata van %n bestand(en) - + Move these files to the trash bin? Deze bestanden naar de prullenbak verplaatsen? - + Permanently delete these files from disk? Deze bestanden permanent verwijderen van de schijf? - - + + This can not be undone! Dit kan niet ongedaan gemaakt worden - + Cancel Annuleer - + Delete Files Verwijder bestanden - + Okay OK - + Move Track File(s) to Trash? Track Bestand(en) Verplaatsen naar Prullenmand? - + Track Files Deleted Track Bestanden zijn verwijderd - + Track Files Moved To Trash Track Bestanden zijn Verplaatst Naar de Prullenmand - + %1 track files were moved to trash and purged from the Mixxx database. %1 Track bestanden werden verplaatst naar de prullenmand en verwijderd uit de Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 Track bestanden werden verwijderd van de schijf en verwijderd uit de Mixxx database. - + Track File Deleted Track Bestand Verwijderd - + Track file was deleted from disk and purged from the Mixxx database. Track bestand werd verwijderd van de schijf en verwijderd uit de Mixxx database. - + The following %1 file(s) could not be deleted from disk Volgend(e) %1 bestand(en) konden niet worden verwijderd van de schijf. - + This track file could not be deleted from disk Dit Track bestand kon niet worden verwijderd van de schijf. - + Remaining Track File(s) Overblijvende Track Bestand(en) - + Close Sluit - + Clear Reset metadata in right click track context menu in library Reset metadata in rechter click context menu in de bibliotheek - + Loops Loops - + Clear BPM and Beatgrid Leeg BPM en Beatgrid - + Undo last BPM/beats change Maak de laatste BPM/beats wijziging ongedaan - + Move this track file to the trash bin? Dit trackbestand naar de prullenbak verplaatsen? - + Permanently delete this track file from disk? Deze track definitief van de schijf verwijderen? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Alle decks waar deze tracks geladen zijn zullen worden gestopt en de tracks zullen uitgeworpen worden. - + All decks where this track is loaded will be stopped and the track will be ejected. Alle decks waar deze track geladen is zullen worden gestopt en de track zal uitgeworpen worden. - + Removing %n track file(s) from disk... %n Track bestand(en) van schijf verwijderen... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Nota: Als u in het Computer- of Opnameaanzicht bent dan dient u op het huidige aanzicht opnieuw te klikken om de wijzigingen te zien. - + Track File Moved To Trash Track Bestand is verplaatst naar de Prullenmand - + Track file was moved to trash and purged from the Mixxx database. Track bestand werd verplaatst naar de Prullenmand en verwijderd uit de Mixxx database. - + Don't show again during this session Niet opnieuw tonen tijdens deze sessie - + The following %1 file(s) could not be moved to trash De volgende %1 bestand(en) konden niet verplaatst worden naar de Prullenmand. - + This track file could not be moved to trash Dit Track bestand kon niet verplaatst worden naar de Prullenmand. + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Instellen Cover Art van %n bestand(en)Instellen Cover Art van %n bestand(en) - + Reloading cover art of %n track(s) Opnieuw inladen Cover Art van %n bestand(en)Opnieuw inladen Cover Art van %n bestand(en) @@ -17005,37 +17546,37 @@ Dit kan niet ongedaan gemaakt worden! WTrackTableView - + Confirm track hide Bevestig het verbergen van de Track - + Are you sure you want to hide the selected tracks? Bent u zeker dat u de Track wil verbergen? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Bent u zeker dat u de geselecteerde Track(s) wil verwijderen uit de Auto-DJ afspeelrij? - + Are you sure you want to remove the selected tracks from this crate? Bent u zeker dat u de geselecteerde Track(s) wil verwijderen uit deze Krat? - + Are you sure you want to remove the selected tracks from this playlist? Bent u zeker dat u de geselecteerde Track(s) wil verwijderen uit deze Afspeellijst - + Don't ask again during this session Niet meer vragen tijdens deze sessie - + Confirm track removal Bevestig verwijderen van de Track @@ -17043,12 +17584,12 @@ Dit kan niet ongedaan gemaakt worden! WTrackTableViewHeader - + Show or hide columns. Toon/Verberg kolommen. - + Shuffle Tracks Tracks schudden @@ -17086,22 +17627,22 @@ Dit kan niet ongedaan gemaakt worden! Bibliotheek - + Choose music library directory Kies de map voor de muziekBibliotheek - + controllers Controllers - + Cannot open database Kan de 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. @@ -17259,6 +17800,24 @@ Klik op OK om af te sluiten. Het Netwerk verzoek is nog niet gestart + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17267,4 +17826,27 @@ Klik op OK om af te sluiten. Geen Effect geladen. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_nn.ts b/res/translations/mixxx_nn.ts index 897c80a4d1e2..8ef4c912dba0 100644 --- a/res/translations/mixxx_nn.ts +++ b/res/translations/mixxx_nn.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ Automatisk DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist @@ -258,13 +258,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunne ikkje åpna sangen @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Album - + Album Artist - + Artist Artist - + Bitrate Bitrate - + BPM BPM - + Channels - + Color - + Comment Kommentar - + Composer - + Cover Art - + Date Added Dato lagt til - + Last Played - + Duration Lengd - + Type Type - + Genre Sjanger - + Grouping - + Key Nøkkel - + Location Stad - + Preview - + Rating Vurdering - + ReplayGain - + Samplerate - + Played Spelt - + Title Tittel - + Track # Spornummer # - + Year År - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links Snarlinkar - - + + Devices Enheitar - + Removable Devices Flyttbare enheitar - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Lås @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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 @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Hopp over - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Automatisk DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Endra namn - + Export - + Delete - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: BPM: - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Spornummer # - + Album Artist - + Composer - + Title Tittel - + Grouping - + Key Nøkkel - + Year År - + Artist Artist - + Album Album - + Genre Sjanger @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Lås - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Nøkkel - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artist - + Album Artist - + Composer - + Title Tittel - + Album Album - + Grouping - + Year År - + Genre Sjanger - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Kassar - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Fjern - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Vurdering - + Cue Point - + Hotcues - + Intro - + Outro - + Key Nøkkel - + ReplayGain - + Waveform - + Comment Kommentar - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_oc.ts b/res/translations/mixxx_oc.ts index 99d67a5dbd64..45d4d1bfb9e4 100644 --- a/res/translations/mixxx_oc.ts +++ b/res/translations/mixxx_oc.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist @@ -258,13 +258,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Impossible de cargar la pista. @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Album - + Album Artist - + Artist Artista - + Bitrate Debit - + BPM BPM - + Channels Canals - + Color - + Comment Comentari - + Composer - + Cover Art - + Date Added Apondut lo - + Last Played - + Duration Durada - + Type Tipe - + Genre Genre - + Grouping - + Key Clau - + Location Localizacion - + Preview - + Rating Nòta - + ReplayGain - + Samplerate - + Played Jogat - + Title Títol - + Track # Pista n° - + Year Annada - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links Ligams Rapids - - + + Devices Periferics - + Removable Devices Periferics amovibles - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Varrolhar @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Passar al seguent - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Auto DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo Esterèo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Pas cap - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As Enregistrar coma - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? Volètz enregistrar totas las modificacion ? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% 10 % - + 16% - + 24% - + 50% 50 % - + 90% 90 % @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Tornar nomenar - + Export Exportar - + Delete Suprimir - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Activat - + Stereo Esterèo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Error de configuracion @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev Son API - + Sample Rate Taus d'escandalhatge - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input Entrada - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configuracion Vinyl - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Pista n° - + Album Artist - + Composer - + Title Títol - + Grouping - + Key Clau - + Year Annada - + Artist Artista - + Album Album - + Genre Genre @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel &Anullar - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Varrolhar - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Varrolhar - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Clau - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artista - + Album Artist - + Composer - + Title Títol - + Album Album - + Grouping - + Year Annada - + Genre Genre - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Contenidors - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze Analisar - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Suprimir - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Nòta - + Cue Point - + Hotcues - + Intro - + Outro - + Key Clau - + ReplayGain - + Waveform - + Comment Comentari - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Anullar - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. Anullar - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_pl.qm b/res/translations/mixxx_pl.qm index 7e11f96f9757..3a78778d3122 100644 Binary files a/res/translations/mixxx_pl.qm and b/res/translations/mixxx_pl.qm differ diff --git a/res/translations/mixxx_pl.ts b/res/translations/mixxx_pl.ts index d325ec51c130..07127d3d6d0c 100644 --- a/res/translations/mixxx_pl.ts +++ b/res/translations/mixxx_pl.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Skrzynki - + Enable Auto DJ - Włącz Auto DJa + Włącz Auto DJ - + Disable Auto DJ - Wyłącz Auto DJa + Wyłącz Auto DJ - + Clear Auto DJ Queue - Wyczyść kolejkę Auto DJa + Wyczyść kolejkę Auto DJ - + Remove Crate as Track Source Usuń Skrzynkę jako źródło utworów - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? Czy napewno chcesz usunąć wszystkie ścieżki z kolejki Auto DJa? - + This can not be undone. Nie można tego cofnąć. - + Add Crate as Track Source Dodaj Skrzynkę jako źródło utworów @@ -224,7 +232,7 @@ Importuj jako skrzynkę - + Export Playlist Eksportuj listę odtwarzania @@ -278,13 +286,13 @@ Importuj jako skrzynkę - + 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: @@ -299,12 +307,12 @@ Importuj jako skrzynkę Czy na pewno chcesz usunąć playlistę <b>%1</b>? - + 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) @@ -312,12 +320,12 @@ Importuj jako skrzynkę BaseSqlTableModel - + # Nr - + Timestamp Znacznik czasu @@ -325,7 +333,7 @@ Importuj jako skrzynkę BaseTrackPlayerImpl - + Couldn't load track. Nie mogę załadować ścieżki. @@ -363,7 +371,7 @@ Importuj jako skrzynkę Kanały - + Color Kolor @@ -378,7 +386,7 @@ Importuj jako skrzynkę Kompozytor - + Cover Art Okładka @@ -388,7 +396,7 @@ Importuj jako skrzynkę Data dodania - + Last Played Ostatnio grane @@ -418,7 +426,7 @@ Importuj jako skrzynkę Tonacja - + Location Lokalizacja @@ -428,7 +436,7 @@ Importuj jako skrzynkę Przegląd - + Preview Podgląd @@ -468,7 +476,7 @@ Importuj jako skrzynkę Rok - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Wczytuje okładkę ... @@ -490,22 +498,22 @@ Importuj jako skrzynkę BroadcastProfile - + Can't use secure password storage: keychain access failed. Nie można użyć bezpiecznej bazy haseł: dostęp do pęku kluczy nie powiódł się. - + Secure password retrieval unsuccessful: keychain access failed. Nie udało się otrzymać hasła: dostęp do pęku kluczy nie powiódł się. - + Settings error Błąd ustawień - + <b>Error with settings for '%1':</b><br> <b>Błąd ustawień dla '%1':</b><br> @@ -593,7 +601,7 @@ Importuj jako skrzynkę - + Computer Komputer @@ -613,17 +621,17 @@ Importuj jako skrzynkę 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -736,12 +744,12 @@ Importuj jako skrzynkę 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ę. @@ -772,87 +780,92 @@ Importuj jako skrzynkę CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx to oprogramowanie dla DJ-ów o otwartym kodzie źródłowym. Aby uzyskać więcej informacji, zobacz: - + Starts Mixxx in full-screen mode Uruchamia Mixxx w trybie pełnoekranowym - + Use a custom locale for loading translations. (e.g 'fr') Użyj niestandardowych ustawień regionalnych do ładowania tłumaczeń. (np. „pl”) - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Katalog najwyższego poziomu, w którym Mixxx powinien szukać plików zasobów, takich jak mapowania MIDI, zastępując domyślną lokalizację instalacji. - + Path the debug statistics time line is written to Ścieżka, w której zapisana jest oś czasu statystyk debugowania - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads Powoduje, że Mixxx wyświetla/rejestruje wszystkie otrzymane dane kontrolera i ładowane funkcje skryptowe - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! Mapowanie kontrolera będzie generować bardziej agresywne ostrzeżenia i błędy w przypadku wykrycia niewłaściwego użycia interfejsów API kontrolera. Nowe mapowania kontrolerów powinny być tworzone z włączoną tą opcją! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Włącza tryb programisty. Zawiera dodatkowe informacje o dzienniku, statystyki wydajności i menu narzędzi dla programistów. - + Top-level directory where Mixxx should look for settings. Default is: Katalog najwyższego poziomu, w którym Mixxx powinien szukać ustawień. Wartość domyślna to: - + Starts Auto DJ when Mixxx is launched. Uruchamia Auto DJ'a przy uruchomieniu Mixxx'a. - + Rescans the library when Mixxx is launched. Przeskanowuje bibliotekę przy uruchomieniu Mixxx'a. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin - Uruchomia eksperymentalny interfejs QML zamiast dotyczasowej skórki QWidget. + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Włącza tryb awaryjny. Wyłącza przebiegi OpenGL i obracające się widżety winylowe. Wypróbuj tę opcję, jeśli Mixxx ulega awarii podczas uruchamiania. - + [auto|always|never] Use colors on the console output. [auto|zawsze|nigdy] Użyj kolorów na wyjściu konsoli. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -862,32 +875,32 @@ trace - Above + Profiling messages Ustawia szczegółowość rejestrowania wiersza poleceń. krytyczny — ostrzeżenie krytyczne/tylko krytyczne — powyżej + informacje o ostrzeżeniach — powyżej + debugowanie komunikatów informacyjnych — powyżej + śledzenie komunikatów debugowania/programisty — powyżej + komunikaty profilowania - + 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. Ustawia poziom rejestrowania, przy którym bufor dziennika jest opróżniany do mixxx.log. <poziom> jest jedną z wartości zdefiniowanych w --log-level powyżej. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Przerywa (ZNAK) Mixxx, jeśli DEBUGUJ_ASERCJĘ ma wartość false. W debugerze możesz kontynuować później. - + Overrides the default application GUI style. Possible values: %1 Nadpisuje styl domyślnego interfejsu graficznego. Możliwe wartości: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Załaduj określone pliki muzyczne podczas uruchamiania. Każdy określony plik zostanie załadowany do następnego wirtualnego decka. - + Preview rendered controller screens in the Setting windows. @@ -980,2567 +993,2748 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Wyjście słuchawkowe - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Decka %1 - + Sampler %1 - Sampler %1 + - + Preview Deck %1 Podgląd Decka %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Wejście zewnętrzne %1 - + Reset to default Przywróć wartości domyślne - + Effect Rack %1 Panel efektów %1 - + Parameter %1 Parametr %1 - + Mixer Mikser - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mix słuchawek (wstępny/główny) - + Toggle headphone split cueing Przełącz dzielenie Cue na słuchawki - + Headphone delay Opóźnienie słuchawek - + Transport Transport - + Strip-search through track Stopniowe przeszukiwanie utworu - + Play button Przycisk play - - + + Set to full volume Ustaw głośność na maksimum - - + + Set to zero volume Ustaw głośność na zero - + Stop button Przycisk stop - + Jump to start of track and play Skocz do początku utworu i odtwórz - + Jump to end of track Przeskocz do końca utworu - + Reverse roll (Censor) button Przycisk reverse roll (cenzuruj) - + Headphone listen button Przycisk odsłuchu słuchawkowego - - + + Mute button Przycisk wyciszenia - + Toggle repeat mode Przełącz tryb powtarzania - - + + 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 - + Toggle slip mode Przełącz tryb poślizgu - - + + BPM BPM - + Increase BPM by 1 Zwiększ BPM o 1 - + Decrease BPM by 1 Zmniejsz BPM o 1 - + Increase BPM by 0.1 Zwiększ BPM o 0.1 - + Decrease BPM by 0.1 Zmniejsz BPM o 0.1 - + BPM tap button Przycisk wstukiwania bitu - + Toggle quantize mode Przełącz tryb kwantyzacji - + One-time beat sync (tempo only) Jednorazowa synchronizacja rytmu (tylko tempo) - + One-time beat sync (phase only) Jednorazowa synchronizacja rytmu (tylko faza) - + Toggle keylock mode Przełącz tryb blokowania - + Equalizers 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 - + 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 - + Slot %1 Gniazdo %1 - + Headphone Mix Mikser słuchawek - + Headphone Split Cue Podzielony Cue na słuchawki - + Headphone Delay Opóźnienie słuchawek - + Play Odtwarzaj - + Fast Rewind Szybkie cofanie - + Fast Rewind button Przycisk szybkiego przewijania wstecz - + Fast Forward Przewiń do przodu - + Fast Forward button Przycisk szybkiego przewijania do przodu - + Strip Search Wyszukiwanie pasków - + Play Reverse Odtwarzanie wstecz - + Play Reverse button Przycisk odtwarzania wstecz - + Reverse Roll (Censor) Odwrotna rolka (Cenzor) - + Jump To Start Skocz do początku - + Jumps to start of track Skocz do początku utworu - + Play From Start Odtwarzaj od początku - + Stop Zatrzymaj - + Stop And Jump To Start Zatrzymaj i skocz do początku - + Stop playback and jump to start of track Zatrzymaj odtwarzanie i skocz do początku utworu - + Jump To End Skocz do końca - + Volume Głośność - - - + + + Volume Fader Regulacja głośności - - + + Full Volume Maksymalna głóśność - - + + Zero Volume Głośność zero - + Track Gain Wzmocnieni utworu - + Track Gain knob Gałka wzmocnienia utworu - - + + Mute Wycisz - + Eject Wysuń - - + + Headphone Listen Odsłuch na słuchawkach - + Headphone listen (pfl) button Przycisk odsłuchy na słuchawkach (pfl) - + Repeat Mode Tryb powtarzania - + Slip Mode Tryb poślizgu - - + + Orientation Kierunek - - + + Orient Left Kierunek w lewo - - + + Orient Center Kierunek środek - - + + Orient Right Kierunek w prawo - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap Wstukanie rytmu (BPM Tap) - + Adjust Beatgrid Faster +.01 Przyspiesz siatkę tempa o 0.01 - + Increase track's average BPM by 0.01 Zwiększ średni BPM utworu o 0.01 - + Adjust Beatgrid Slower -.01 Zwolnij siatke tempa o 0.01 - + Decrease track's average BPM by 0.01 Zmniejsz średni BPM utworu o 0.01 - + Move Beatgrid Earlier Przesuń siatkę tempa wstecz - + Adjust the beatgrid to the left Skoryguj siatkę tempa do lewej - + Move Beatgrid Later Przesuń siatkę tempa do przodu - + Adjust the beatgrid to the right Skoryguj siatkę tempa do prawej - + Adjust Beatgrid Reguluje siatkę uderzeń - + Align beatgrid to current position Wyrównaj siatkę tempa do bieżącej pozycji - + Adjust Beatgrid - Match Alignment Skoryguj siatkę tempa - dopasuj wyrównanie - + Adjust beatgrid to match another playing deck. Skoryguj siatkę tempa aby pasowała do drugiego grającego odtwarzacza. - + Quantize Mode Tryb Kwantyzacji - + Sync Synchronizuj - + Beat Sync One-Shot Synchronizacja bitów One-Shot - + Sync Tempo One-Shot Synchronizacja tempa One-Shot - + Sync Phase One-Shot Synchronizacja fazy One-Shot - + Pitch control (does not affect tempo), center is original pitch Kontrola wysokości dźwięku (nie wpływa na tempo), środek to oryginalna wysokość - + Pitch Adjust Dostosowanie Tonu - + Adjust pitch from speed slider pitch Dostosuj wysokość za pomocą suwaka prędkości - + Match musical key Dopasuj klucz muzyczny - + Match Key Dopasuj Klucz - + Reset Key Przywróć Klucz - + Resets key to original Przywróć klucz do oryginalnego - + High EQ Wysokie - + Mid EQ Średnie - - + + Main Output Główne wyjście - + Main Output Balance Główny bilans wyjściowy - + Main Output Delay Główne opóźnienie wyjścia - + Main Output Gain Główne wzmocnienie wyjścia - + Low EQ 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 winylem - + Vinyl Control Cueing Mode Przejście kontroli CUE winylu - + Vinyl Control Passthrough Przejście kontroli winylu - + 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 Wskazóœka 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 Zapętlenie % 1 beat'ów - + Add to Auto DJ Queue (bottom) Dodaj do kolejki Auto DJ (dół) - + Append the selected track to the Auto DJ Queue Dołącz wybrany utwór do kolejki Auto DJ - + Add to Auto DJ Queue (top) Dodaj do kolejki Auto DJ (góra) - + Prepend selected track to the Auto DJ Queue Dodaj wybrany utwór do kolejki Auto DJ - + 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 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. Dostosuj balans pomiędzy sygnałem oryginalnym (suchym) i przetworzonym (mokrym). - + 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 Przetasuj zawartość kolejki Auto DJ - + Skip the next track in the Auto DJ queue Pomiń następny utwór w kolejce Auto DJ - + Auto DJ Toggle Przełącznik trybu Auto DJ - + Toggle Auto DJ On/Off Włącz/Wyłącz tryb Auto DJ - + Show/hide the microphone & auxiliary section Pokaż/ukryj sekcję mikrofonu i sekcji pomocniczej - + 4 Effect Units Show/Hide 4 jednostki efektów Pokaż/Ukryj - + Switches between showing 2 and 4 effect units Przełącza pomiędzy wyświetlaniem 2 i 4 jednostek efektów - + Mixer Show/Hide Mikser Pokaż/Ukryj - + Show or hide the mixer. Pokazuje lub ukrywa Mikser - + Cover Art Show/Hide (Library) Pokaż/ukryj okładkę (biblioteka) - + Show/hide cover art in the library Pokaż/ukryj okładkę w bibliotece - + 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 - + Headphone Gain Wzmocnienie Słuchawek - + Headphone gain Wzmocnienie słuchawek - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Stuknij, aby zsynchronizować tempo (i fazę z włączoną kwantyzacją), przytrzymaj, aby włączyć stałą synchronizację - + One-time beat sync tempo (and phase with quantize enabled) Jednorazowa synchronizacja rytmu (i faza z włączoną kwantyzacją) - + 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) - - + + Adjust %1 Dostosuj %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Jednostka efektu %1 - + Button Parameter %1 Przycisk Parametru %1 - + Skin Skórka - + Controller Kontroler - + Crossfader / Orientation Crossfader / Orientacja - + Main Output gain Główne wzmocnienie wyjściowe - + Main Output balance Główny bilans wyjściowy - + Main Output delay Główne opóźnienie wyjściowe - + Headphone Słuchawka - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Wycisz %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid BPM / Siatka bitów - + Halve BPM Połowa BPM - + Multiply current BPM by 0.5 Pomnóż obecne BPM przez 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Pomnóż obecne BPM przez 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Pomnóż obecne BPM przez 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Pomnóż obecne BPM przez 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Pomnóż obecne BPM przez 1.5 - + Double BPM Podwój BPM - + Multiply current BPM by 2 Pomnóż obecne BPM przez 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid Przesuń siatkę bitu - + Adjust the beatgrid to the left or right Skoryguj siatkę tempa do lewej lub prawej - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Skoryguj siatkę bitu o dokładnie jedną połowę bitu. Przydatne tylko dla ścieżek o stałym tempie. - - + + Toggle the BPM/beatgrid lock - Przełącz blokadę BPM/bitu + Przełącz blokadę BPM/siatki bitu - + Revert last BPM/Beatgrid Change Cofnij ostatnią zmianę BPM/siatki bitu - + Revert last BPM/Beatgrid Change of the loaded track. Cofnij ostatnią zmianę BPM/siatki bitu załadowanej ścieżki. - + Sync / Sync Lock Synchronizacja / Blokada synchronizacji - + Internal Sync Leader Główna synchronizacja wewnętrzna - + Toggle Internal Sync Leader Przełącz główną synchronizację wewnętrzną - - + + Internal Leader BPM Główna synchronizacja wewnętrzna BPM - + Internal Leader BPM +1 Główna synchronizacja wewnętrzna BPM +1 - + Increase internal Leader BPM by 1 Zwiększ główne wewnętrzne BPM o 1 - + Internal Leader BPM -1 Główna synchronizacja wewnętrzna BPM -1 - + Decrease internal Leader BPM by 1 Zmniejsz główne wewnętrzne BPM o 1 - + Internal Leader BPM +0.1 Główna synchronizacja wewnętrzna BPM +0,1 - + Increase internal Leader BPM by 0.1 Zwiększ główne wewnętrzne BPM o 0,1 - + Internal Leader BPM -0.1 Główna synchronizacja wewnętrzna BPM -0,1 - + Decrease internal Leader BPM by 0.1 Zmniejsz główne wewnętrzne BPM o 0,1 - + Sync Leader Główna synchronizacja - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) 3-stanowy przełącznik/wskaźnik trybu synchronizacji (wyłączony, miękki lider, wyraźny lider) - + Speed Prędkość - + Decrease Speed (Fine) Zmniejsz prędkość (dobrze) - + Pitch (Musical Key) Wysokość tonu (klawisz muzyczny) - + Increase Pitch Zwiększ wysokość tonu - + Increases the pitch by one semitone Zwiększa wysokość dźwięku o jeden półton - + Increase Pitch (Fine) Zwiększ wysokość dźwięku (dokładnie) - + Increases the pitch by 10 cents Zwiększa wysokość dźwięku o 10 centów - + Decrease Pitch Zmniejsz wysokość tonu - + Decreases the pitch by one semitone Zmniejsza wysokość dźwięku o jeden półton - + Decrease Pitch (Fine) Zmniejsza wysokość dźwięku (dokładnie) - + Decreases the pitch by 10 cents Zmniejsza wysokość dźwięku o 10 centów - + Keylock Blokada przycisków - + CUP (Cue + Play) CUP (CUE + start) - + Shift cue points earlier Cofnij do wcześniejszego punktu CUE - + Shift cue points 10 milliseconds earlier Przesuń punkty CUE 10 milisekund wstecz - + Shift cue points earlier (fine) Przesuń punkty CUE wstecz (dokładnie) - + Shift cue points 1 millisecond earlier Przesuń punkty CUE o 1 milisekundę wstecz - + Shift cue points later Przesuń punkt CUE dalej - + Shift cue points 10 milliseconds later Przesuń punkty CUE 10 milisekund dalej - + Shift cue points later (fine) Przesuń punkty CUE dalej (dokładnie) - + Shift cue points 1 millisecond later Przesuń punkty CUE o 1 milisekundę dalej - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + Hotcues %1-%2 Szybkie CUE %1-%2 - + Intro / Outro Markers Markery Intro / Outro - + Intro Start Marker Start Intro Marker - + Intro End Marker Stop Intro Marker - + Outro Start Marker Start Outro Marker - + Outro End Marker Stop Outro Marker - + intro start marker start intro marker - + intro end marker stop intro marker - + outro start marker start outro marker - + outro end marker stop outro marker - + Activate %1 [intro/outro marker Aktywacja %1 - + Jump to or set the %1 [intro/outro marker Przejdź do lub ustaw %1 - + Set %1 [intro/outro marker Ustaw %1 - + Set or jump to the %1 [intro/outro marker Ustaw lub Przejdź do %1 - + Clear %1 [intro/outro marker Czyść %1 - + Clear the %1 [intro/outro marker Czyść w %1 - + if the track has no beats the unit is seconds - + Loop Selected Beats Zapętl wybrane uderzenia - + Create a beat loop of selected beat size Utwórz pętlę beatów o wybranym rozmiarze beatów - + Loop Roll Selected Beats Zapętl wybrane rytmy - + Create a rolling beat loop of selected beat size Utwórz pętlę rytmiczną o wybranym rozmiarze - + Loop %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats Pętla bitów - + Loop Roll Beats Zapętlone rytmy - + Go To Loop In Przejdź do początku pętli - + Go to Loop In button Przejdź do początku przycisku Zapętlenie - + Go To Loop Out Przejdź na koniec pętli - + Go to Loop Out button Przejdź na koniec przycisku Zapętlenie - + Toggle loop on/off and jump to Loop In point if loop is behind play position Włącz/wyłącz pętlę i przejdź do punktu Loop In, jeśli pętla znajduje się za pozycją odtwarzania - + Reloop And Stop Uruchom ponownie i zatrzymaj - + Enable loop, jump to Loop In point, and stop Włącz pętlę, przejdź do punktu Loop In i zatrzymaj się - + Halve the loop length Zmniejsz o połowę długość pętli - + Double the loop length Podwoić długość pętli - + Beat Jump / Loop Move Beat skok / ruch w pętli - + Jump / Move Loop Forward %1 Beats Skok / Przesuń pętlę do przodu %1 beat - + Jump / Move Loop Backward %1 Beats Skok / Przesuń pętlę w tył %1 beat - + Jump forward by %1 beats, or if a loop is enabled, move the loop forward %1 beats Przeskocz do przodu o %1 uderzeń lub, jeśli włączona jest pętla, przesuń pętlę do przodu o %1 uderzeń - + Jump backward by %1 beats, or if a loop is enabled, move the loop backward %1 beats Przeskocz w tył o %1 uderzeń lub, jeśli włączona jest pętla, przesuń pętlę w tył o %1 uderzeń - + Beat Jump / Loop Move Forward Selected Beats Beat skok / Ruch w pętli Przesuń do przodu wybrane beaty - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats Przeskocz do przodu o wybraną liczbę uderzeń lub, jeśli włączona jest pętla, przesuń pętlę do przodu o wybraną liczbę uderzeń - + Beat Jump / Loop Move Backward Selected Beats Beat skok / Ruch w pętli Przesuń wstecz wybrane beaty - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats Przeskocz do tyłu o wybraną liczbę uderzeń lub, jeśli włączona jest pętla, przesuń pętlę do tyłu o wybraną liczbę uderzeń - + Beat Jump - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward Beat skok / Ruch w pętli Przesuń do przodu - + Beat Jump / Loop Move Backward Beat skok / Ruch w pętli Przesuń wstecz - + Loop Move Forward Pętla Przejdź do przodu - + Loop Move Backward Pętla Przejdź do tyłu - + Remove Temporary Loop Usuń tymczasową pętlę - + Remove the temporary loop Usuń tymczasową pętlę - + Navigation Nawigacja - + 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 Poruszaj się poziomo w dowolnym kierunku za pomocą pokrętła, tak jakbyś naciskał klawisze LEWO/PRAWO - + Move focus to right pane Przenieś fokus do prawego panelu - + Equivalent to pressing the TAB key on the keyboard Odpowiednik przytrzymywania klawisza TAB na klawiaturze - + Move focus to left pane Przenieś fokus do lewego panelu - + Equivalent to pressing the SHIFT+TAB key on the keyboard Odpowiednik naciśnięcia klawiszy SHIFT+TAB na klawiaturze - + Move focus to right/left pane Przenieś fokus do prawego/lewego panelu - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys Przesuń fokus o jedno okienko w prawo lub w lewo za pomocą pokrętła, tak jak przy naciśnięciu klawiszy TAB/SHIFT+TAB - + Sort focused column Sortuj wybraną kolumnę - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Posortuj kolumnę aktualnie aktywnej komórki, co odpowiada kliknięciu jej nagłówka - + Go to the currently selected item Przejdź do aktualnie wybranego elementu - + Choose the currently selected item and advance forward one pane if appropriate Wybierz aktualnie wybrany element i w razie potrzeby przejdź do przodu o jedno okienko - + Load Track and Play Załaduj utwór i odtwarzaj - + Add to Auto DJ Queue (replace) Dodaj do kolejki Auto DJ (zamień) - + Replace Auto DJ Queue with selected tracks Zastąp kolejkę Auto DJ wybranymi utworami - + Select next search history Wybierz następną historię wyszukiwania - + Selects the next search history entry Wybiera następny wpis w historii wyszukiwania - + Select previous search history Wybierz poprzednią historię wyszukiwania - + Selects the previous search history entry Wybiera poprzedni wpis historii wyszukiwania - + Move selected search entry Przenieś wybrany wpis wyszukiwania - + Moves the selected search history item into given direction and steps Przesuwa wybrany element historii wyszukiwania w określonym kierunku i krokach - + Clear search Wyczyść wyszukiwanie - + Clears the search query Wyczyszcza zapytanie wyszukiwania - - + + Select Next Color Available Wybierz następny dostępny kolor - + Select the next color in the color palette for the first selected track Wybierz następny kolor w palecie kolorów dla pierwszej wybranej ścieżki - - + + Select Previous Color Available Wybierz poprzedni dostępny kolor - + Select the previous color in the color palette for the first selected track Wybierz poprzedni kolor w palecie kolorów dla pierwszej wybranej ścieżki - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Deck %1 Przycisk włączania szybkich efektów - + + Quick Effect Enable Button Przycisk włączania szybkiego efektu - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing Włącz lub wyłącz przetwarzanie efektu - + Super Knob (control effects' Meta Knobs) Super pokrętło (meta pokrętła efektów sterujących) - + Mix Mode Toggle Przełącznik trybu miksowania - + Toggle effect unit between D/W and D+W modes Przełącz jednostkę efektu pomiędzy trybami D/W i D+W - + 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 Przypisanie jednostki efektu - + Meta Knob Pokrętło Meta - + Effect Meta Knob (control linked effect parameters) Pokrętło Efektu Meta (kontrola parametrów powiązanych efektów) - + Meta Knob Mode Tryb Pokrętła Meta - + Set how linked effect parameters change when turning the Meta Knob. Ustaw sposób zmiany parametrów połączonych efektów podczas obracania pokrętła Meta. - + Meta Knob Mode Invert Odwrócenie trybu pokrętła Meta - + Invert how linked effect parameters change when turning the Meta Knob. Odwróć sposób, w jaki zmieniają się parametry połączonych efektów podczas obracania pokrętła Meta. - - + + Button Parameter Value Wartość parametru przycisku - + 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 Auto DJ Dodaj losową ścieżkę - + Add a random track to the Auto DJ queue - Dodaj losowe ścieżki do kolejki Auto DJ'a + Dodaj losową ścieżkę do kolejki Auto DJ'a - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Mikrofon i urządzenie pomocnicze Pokaż/Ukryj - + Waveform Zoom Reset To Default Zresetuj powiększenie wykresu dźwięku do domyślnego - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. Wybierz następny kolor w palecie kolorów dla załadowanej ścieżki. - + Select previous color in the color palette for the loaded track. Wybierz poprzedni kolor w palecie kolorów dla załadowanej ścieżki. - + Navigate Through Track Colors Nawiguj przez kolory ścieżek - + Select either next or previous color in the palette for the loaded track. Wybierz następny lub poprzedni kolor w palecie kolorów dla załadowanej ścieżki. - + Start/Stop Live Broadcasting Rozpocznij/zatrzymaj transmisję na żywo - + Stream your mix over the Internet. Transmituj swój mix przez Internet. - + Start/stop recording your mix. Rozpocznij/zatrzymaj nagrywanie miksu. - - + + + Deck %1 Stems + + + + + Samplers Próbniki - + 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) Pokaż/ukryj okładkę (Decki) - + Show/hide cover art in the main decks Pokaż/ukryj okładkę na głównych deckach - + 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) Spinnery winylowe Pokaż/Ukryj (wszystkie decki) - + Show/Hide all spinnies Pokaż/ukryj wszystkie krążki - - Toggle Waveforms - Przełącz przebiegi + + Toggle Waveforms + Przełącz przebiegi + + + + Show/hide the scrolling waveforms. + Pokaż/ukryj przewijane przebiegi. + + + + 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 + Ocena gwiazdkowa w górę + + + + Increase the track rating by one star + Zwiększ ocenę utworu o jedną gwiazdkę + + + + Star Rating Down + Ocena gwiazdkowa w dół + + + + Decrease the track rating by one star + Zmniejsz ocenę utworu o jedną gwiazdkę + + + + Controller + + + Unknown + Nieznany + + + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + - - Show/hide the scrolling waveforms. - Pokaż/ukryj przewijane przebiegi. + + + Null + - - Waveform zoom - Skalowanie wykresu dźwięku + + + Volatile + - - Waveform Zoom - Skalowanie wykresu dźwięku + + Usage Page + - - Zoom waveform in - Powiększ wykres dźwięku + + Usage + - - Waveform Zoom In - Powiększ wykres dźwięku + + Relative + - - Zoom waveform out - Zmniejsz wykres dźwięku + + Absolute + - - Star Rating Up - Ocena gwiazdkowa w górę + + No Wrap + - - Increase the track rating by one star - Zwiększ ocenę utworu o jedną gwiazdkę + + Non Linear + - - Star Rating Down - Ocena gwiazdkowa w dół + + No Preferred + - - Decrease the track rating by one star - Zmniejsz ocenę utworu o jedną gwiazdkę + + No Null + - - - Controller - - Unknown - Nieznany + + Non Volatile + @@ -3645,32 +3839,32 @@ trace - Above + Profiling messages ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Funkcjonalność zapewniana przez to mapowanie kontrolera zostanie wyłączona do czasu rozwiązania problemu. - + You can ignore this error for this session but you may experience erratic behavior. Możesz zignorować ten błąd w tej sesji, ale może wystąpić nieprawidłowe zachowanie. - + Try to recover by resetting your controller. Spróbuj przwrócić resetując swój kontroler - + Controller Mapping Error Błąd mapowania kontrolera - + The mapping for your controller "%1" is not working properly. Mapowanie kontrolera „%1” nie działa poprawnie. - + The script code needs to be fixed. Kod skryptu musi zostać naprawiony. @@ -3678,27 +3872,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem Problem z plikiem mapowania kontrolera - + The mapping for controller "%1" cannot be opened. Nie można otworzyć mapowania dla kontrolera "%1". - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Funkcjonalność zapewniana przez to mapowanie kontrolera zostanie wyłączona do czasu rozwiązania problemu. - + File: Plik: - + Error: Błąd: @@ -3731,7 +3925,7 @@ trace - Above + Profiling messages - + Lock Zablokuj @@ -3761,7 +3955,7 @@ trace - Above + Profiling messages Źródło utworów Auto DJ'a - + Enter new name for crate: Podaj nową nazwę skrzynki: @@ -3778,22 +3972,22 @@ trace - Above + Profiling messages 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 @@ -3803,28 +3997,28 @@ trace - Above + Profiling messages Stwórz skrzynkę na twój następny występ, dla twoich ulubionych utworów electrohouse lub najbardziej pożądanych ścieżek. - + Confirm Deletion Potwierdź usunięcie - - + + 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) - + M3U Playlist (*.m3u) Lista odtwarzania M3U (*.m3u) @@ -3845,17 +4039,17 @@ trace - Above + Profiling messages Skrzynki pozwalają Ci organizować muzyke jak chcesz! - + Do you really want to delete crate <b>%1</b>? Czy na pewno chcesz usunąć skrzynkę <b>%1</b>? - + A crate cannot have a blank name. Musisz nazwać skrzynkę. - + A crate by that name already exists. Skrzynka o tej nazwie już istnieje. @@ -3950,12 +4144,12 @@ trace - Above + Profiling messages Byli współpracownicy - + Official Website Oficjalna strona internetowa - + Donate Wspomóż @@ -4199,7 +4393,7 @@ Odtwórz cały utwór z wyjątkiem ciszy na początku i na końcu. Rozpocznij przejście od wybranej liczby sekund przed ostatnim dźwiękiem. -Pomiń cisze Zacznij pełną glośnością: +Pomiń ciszę Zacznij pełną glośnością: To samo co pomiń ciszę, ale przejście zaczyna się dopiero po osiągnięciu centralnego crossfadera, dzięki czemu intro zaczyna się z pełną głośnością. @@ -4548,7 +4742,7 @@ Próbowałeś się nauczyć: %1,%2 Fetched Cover Art - Zaciągnij okładkę + Zaciągnięto okładkę @@ -4840,68 +5034,79 @@ Próbowałeś się nauczyć: %1,%2 Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Akcja zakończona niepowodzeniem - + You can't create more than %1 source connections. Nie możesz utworzyć więcej niż %1 połączeń źródłowych. - + Source connection %1 Połączenie źródłowe %1 - + Settings for %1 Settings for broadcast profile, %1 is the profile name placeholder Ustawienia dla %1 - + At least one source connection is required. Wymagane jest co najmniej jedno połączenie źródłowe. - + Are you sure you want to disconnect every active source connection? Czy na pewno chcesz rozłączyć każde aktywne połączenie źródłowe? - - + + Confirmation required Wymagane potwierdzenie - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. „%1” ma ten sam punkt montowania Icecast co „%2”. Nie można jednocześnie włączyć dwóch połączeń źródłowych z tym samym serwerem, które mają ten sam punkt podłączenia. - + Are you sure you want to delete '%1'? Czy na pewno chcesz usunąć '%1'? - + Renaming '%1' Zmiana nazwy '%1' - + New name for '%1': Nowa nazwa dla '%1': - + Can't rename '%1' to '%2': name already in use Nie można zmienić '%1' na '%2': taka nazwa jest już w użyciu @@ -4914,27 +5119,27 @@ Two source connections to the same server that have the same mountpoint can not Ustawienia Nadawania na Żywo - + Mixxx Icecast Testing Testowanie Mixxx Icecast - + Public stream Publiczny strumień - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nazwa strumienia - + 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. Ze względu na wady niektórych klientów przesyłania strumieniowego dynamiczna aktualizacja metadanych Ogg Vorbis może powodować zakłócenia i rozłączenia słuchacza. Zaznacz to pole, aby mimo to zaktualizować metadane. @@ -4974,67 +5179,72 @@ Two source connections to the same server that have the same mountpoint can not Ustawienia dla %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Dynamicznie aktualizuj metadane Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Strona internetowa - + Live mix Live mix - + IRC IRC - + Select a source connection above to edit its settings here Wybierz połączenie źródłowe powyżej, aby edytować jego ustawienia tutaj - + Password storage Przechowywanie haseł - + Plain text Zwykły tekst - + Secure storage (OS keychain) Bezpieczne przechowywanie (pęk kluczy systemu operacyjnego) - + Genre Gatunek - + Use UTF-8 encoding for metadata. Użyj kodowania UTF-8 dla metadanych. - + Description Opis @@ -5060,42 +5270,42 @@ Two source connections to the same server that have the same mountpoint can not Kanały - + Server connection Połączenie serwera - + Type Typ - + Host Host - + Login Login - + Mount Montuj - + Port Port - + Password Hasło - + Stream info Informacje o strumieniu @@ -5105,17 +5315,17 @@ Two source connections to the same server that have the same mountpoint can not Metadane - + Use static artist and title. Użyj statycznego wykonawcy i tytułu - + Static title Statyczny tytuł - + Static artist Statyczny wykonawca @@ -5174,13 +5384,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number Według numeru hotcue - + Color Kolor @@ -5225,17 +5436,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5243,114 +5459,114 @@ associated with each key. DlgPrefController - + Apply device settings? Zastosować ustawienia urządzenia? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Twoje ustawienia muszą być zapisane przed uruchomieniem kreatora. Zastosować ustawienie i kontynuować? - + None Żadne - + %1 by %2 %1 wykonywane przez %2 - + Mapping has been edited Mapowanie zostało zmodyfikowane - + Always overwrite during this session Zawsze nadpisz podczas tej sesji - + Save As Zapisz Jako - + Overwrite Nadpisz - + Save user mapping Zapisz mapowanie użytkownika - + Enter the name for saving the mapping to the user folder. Wprowadź nazwę, pod którą chcesz zapisać mapowanie w folderze użytkownika. - + Saving mapping failed Zapisanie mapowania nie powiodło się - + A mapping cannot have a blank name and may not contain special characters. Mapowanie nie może mieć pustej nazwy i nie może zawierać znaków specjalnych. - + A mapping file with that name already exists. Plik mapowania o tej nazwie już istnieje. - + Do you want to save the changes? Czy chcesz zapisać zmiany? - + Troubleshooting Rozwiązywanie problemów - + <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. Mapowanie już istnieje. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> już istnieje w folderze mapowania użytkownika.<br>Zastąpić czy zapisać pod nową nazwą? - + Clear Input Mappings Wyczyść mapowanie przychodzące - + Are you sure you want to clear all input mappings? Czy na pewno wyczyścić wszystkie mapowania przychodzące? - + Clear Output Mappings Wyczyść mapowanie wychodzące - + Are you sure you want to clear all output mappings? Czy na pewno wyczyścić wszystkie mapowania wychodzące? @@ -5368,100 +5584,105 @@ Zastosować ustawienie i kontynuować? Włączony - + + Refresh mapping list + + + + Device Info Informacje o urządzeniu - + Physical Interface: Fizyczny intefejs: - + Vendor name: Nazwa producenta: - + Product name: Nazwa produktu: - + Vendor ID - ID wydawcy + ID producenta - + VID: VID: - + Product ID ID produktu - + PID: PID: - + Serial number: Numer seryjny: - + USB interface number: Numer interfejsu USB: - + HID Usage-Page: - + HID Usage: Użycie HID: - + Description: Opis: - + Support: Wsparcie: - + Screens preview Podgląd ekranów - + Input Mappings Mapowania przychodzące - - + + Search Szukaj - - + + Add Dodaj - - + + Remove Usuń @@ -5481,17 +5702,17 @@ Zastosować ustawienie i kontynuować? Załaduj mapowanie: - + Mapping Info Informacje o mapowaniu - + Author: Autor: - + Name: Nazwa: @@ -5501,28 +5722,28 @@ Zastosować ustawienie i kontynuować? Kreator uczenia się kontrolera (tylko MIDI) - + Data protocol: Protokół danych: - + Mapping Files: Pliki mapowania: - + Mapping Settings Ustawienia mapowania - - + + Clear All Wyczyść Wszystko - + Output Mappings Mapowania wychodzące @@ -5537,21 +5758,21 @@ Zastosować ustawienie i kontynuować? - 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 wykorzystuje „mapowania” do łączenia wiadomości z kontrolera z elementami sterującymi w Mixxx. Jeśli nie widzisz mapowania dla swojego kontrolera w menu „Wczytaj mapowanie” po kliknięciu kontrolera na lewym pasku bocznym, być może uda się pobrać je online z %1. Umieść pliki XML (.xml) i JavaScript (.js) w „Folderze mapowania użytkowników”, a następnie uruchom ponownie Mixxx. Jeśli pobierasz mapowanie w pliku ZIP, wyodrębnij pliki XML i Javascript z pliku ZIP do swojego „Folderu mapowania użytkownika”, a następnie uruchom ponownie 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Przewodnik po sprzęcie Mixxx DJ - + MIDI Mapping File Format Format pliku mapowania MIDI - + MIDI Scripting with Javascript Skrypty MIDI z JavaScriptem @@ -5576,7 +5797,7 @@ Zastosować ustawienie i kontynuować? Enable MIDI Through Port - Włącz MIDI Throught Port + Włącz MIDI Through Port @@ -5681,6 +5902,16 @@ Zastosować ustawienie i kontynuować? Multi-Sampling + + + Force 3D acceleration + Wymuś akcelerację 3D + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5710,137 +5941,137 @@ Zastosować ustawienie i kontynuować? DlgPrefDeck - + Mixxx mode Tryb Mixxx - + Mixxx mode (no blinking) Tryb Mixxx (bez migania) - + Pioneer mode Tryb Pioneer - + Denon mode Tryb Denon - + Numark mode Tryb Numark - + CUP mode Tryb CUP - + mm:ss%1zz - Traditional mm:ss%1zz — tradycyjny - + mm:ss - Traditional (Coarse) mm:ss — tradycyjny (gruby) - + s%1zz - Seconds s%1zz — sekundy - + sss%1zz - Seconds (Long) sss%1zz — sekundy (długie) - + s%1sss%2zz - Kiloseconds s%1sss%2zz — Kilosekundy - + Intro start Początek wprowadzenia - + Main cue Główne CUE - + First hotcue - + First sound (skip silence) Pierwszy dźwięk (pomiń ciszę) - + Beginning of track Początek utworu - + Reject Odrzuć - + Allow, but stop deck Zezwól, ale zatrzymaj deck - + Allow, play from load point - Zezwół, otwórz od punktu załadowania + Zezwól, otwórz od punktu załadowania - + 4% 4% - + 6% (semitone) 6% (półton) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6200,7 +6431,7 @@ Zawsze możesz przeciągnąć i upuścić ścieżki na ekranie, aby sklonować t Quick Effect Chain Presets - Ustawienia szybkich łańcuchów efektów + Szybkie ustawienia łańcuchów efektów @@ -6277,64 +6508,64 @@ Zawsze możesz przeciągnąć i upuścić ścieżki na ekranie, aby sklonować t 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 Zezwól na uruchomienie wygaszacza ekranu - + Prevent screensaver from running Zapobiegaj uruchomieniu wygaszacza ekranu - + Prevent screensaver while playing Zapobiegaj wygaszaczowi ekranu podczas gry - + Disabled Wyłączone - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + 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, scaling or multi-sampling settings will take effect. - Mixxx musi zastać zrestartowany aby nowe ustawienia regionalne, skalowania lub multi-sampling'u zaczęły obowiązywać. + Mixxx musi zostać zrestartowany aby nowe ustawienia regionalne, skalowania lub multi-sampling'u zaczęły obowiązywać. @@ -6559,67 +6790,97 @@ and allows you to pitch adjust them for harmonic mixing. Odwiedź instrukcję dla szczegółów. - + 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 - + Item is not a directory or directory is missing Przedmiot nie jest katalogiem lub nie ma takiego katalogu. - + 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ą - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Wybierz czcionkę Biblioteki @@ -6795,7 +7056,7 @@ and allows you to pitch adjust them for harmonic mixing. The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. - Katalog ustawień Mixxa zawiera bazę danych biblioteki, różne pliki konfiguracyjne, logi, dane analityczne oraz niestandarowe mapy kontrolerów. + Katalog ustawień Mixxx'a zawiera bazę danych biblioteki, różne pliki konfiguracyjne, logi, dane analityczne oraz niestandarowe mapy kontrolerów. @@ -7273,33 +7534,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Wybierz katalog nagrań - - + + Recordings directory invalid Nieprawidłowy katalog nagrań - + Recordings directory must be set to an existing directory. Katalog nagrań musi być ustawiony na istniejący katalog. - + Recordings directory must be set to a directory. Katalog nagrań musi być ustawiony na katalog. - + Recordings directory not writable Katalog nagrań nie nadaje się do zapisu - + You do not have write access to %1. Choose a recordings directory you have write access to. Nie masz uprawnień do zapisu na %1. Wybierz katalog nagrań, do którego masz dostęp do zapisu. @@ -7317,43 +7578,55 @@ and allows you to pitch adjust them for harmonic mixing. Przeglądaj... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Jakość - + Tags Tagi - + Title Tytuł - + Author Autor - + Album Album - + Output File Format Format pliku wyjściowego - + Compression Kompresja - + Lossy Stratny @@ -7368,12 +7641,12 @@ and allows you to pitch adjust them for harmonic mixing. Katalog: - + Compression Level Poziom kompresji - + Lossless Bezstratny @@ -7504,172 +7777,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Domyślne (długie opóźnienie) - + Experimental (no delay) Eksperymentalne (bez opóźnienia) - + Disabled (short delay) Wyłączone (krótkie opóźnienie) - + Soundcard Clock Zegar karty dźwiękowej - + Network Clock Zegar sieciowy - + Direct monitor (recording and broadcasting only) Bezpośrednie monitorowanie (tylko nagrywanie i nadawanie) - + Disabled Wyłączone - + Enabled Włączony - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Aby włączyć planowanie w czasie rzeczywistym (obecnie wyłączone), zobacz %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 zawiera listę kart dźwiękowych i kontrolerów, które warto rozważyć przy korzystaniu z Mixxx. - + Mixxx DJ Hardware Guide Przewodnik po sprzęcie Mixxx DJ - + + Find details in the Mixxx user manual + + + + Information Informacja - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) auto (<= 1024 klatek/okres) - + 2048 frames/period 2048 klatek/okres - + 4096 frames/period 4096 klatek/okres - + Are you sure? Jesteś pewien? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? Czy napewno chcesz kontynuować? - + No Nie - + Yes, I know what I am doing Tak, wiem co robię - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Wejścia mikrofonowe są nieaktualne w sygnale nagrywania i nadawania w porównaniu z tym, co słyszysz. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Zmierz opóźnienie w obie strony i wprowadź je powyżej w celu kompensacji opóźnienia mikrofonu, aby dostosować taktowanie mikrofonu. - + Refer to the Mixxx User Manual for details. Szczegółowe informacje można znaleźć w instrukcji obsługi Mixxx. - + Configured latency has changed. Ustawione opóźnienie zostało zmienione. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Zmierz ponownie opóźnienie w obie strony i wprowadź je powyżej w polu Kompensacja opóźnienia mikrofonu, aby dopasować taktowanie mikrofonu. - + Realtime scheduling is enabled. - + Planowanie w czasie rzeczywistym jest włączone. - + Main output only Tylko wyjście główne - + Main and booth outputs Wyjścia główne i oba - + %1 ms %1 ms - + Configuration error Błąd konfiguracji @@ -7736,17 +8014,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Licznik niedomiaru bufora - + 0 0 @@ -7771,12 +8054,12 @@ The loudness target is approximate and assumes track pregain and main output lev Wejście - + System Reported Latency Zgłoszone przez system opóźnienie - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Powiększ bufor audio, jeśli licznik niedopełnienia rośnie lub podczas odtwarzania słychać trzaski. @@ -7806,7 +8089,7 @@ The loudness target is approximate and assumes track pregain and main output lev Podpowiedzi i diagnostyka - + Downsize your audio buffer to improve Mixxx's responsiveness. Zmniejsz Twój bufor audio aby poprawić czas odpowiedzi Mixxx'a. @@ -7853,7 +8136,7 @@ The loudness target is approximate and assumes track pregain and main output lev Konfiguracja Winyla - + Show Signal Quality in Skin Pokaż jakość w skórce @@ -7889,46 +8172,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 Decka 1 - + Deck 2 Decka 2 - + Deck 3 Decka 3 - + Deck 4 Decka 4 - + Signal Quality Jakość sygnału - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + Hints Podpowiedzi - + Select sound devices for Vinyl Control in the Sound Hardware pane. Wybierz urządzenia dźwiękowe do Kontroli Winylem w sekcji Urządzenia Audio. @@ -7936,58 +8224,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Przefiltrowane - + HSV HSV - + RGB RGB - + Top Góra - + Center Centralny - + Bottom Dół - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL niedostępne - + dropped frames opuszczone ramki - + Cached waveforms occupy %1 MiB on disk. Przebiegi buforowane zajmują %1 MiB na dysku. @@ -8005,22 +8293,17 @@ The loudness target is approximate and assumes track pregain and main output lev Liczba klatek na sekundę - + OpenGL Status Status OpenGL - + Displays which OpenGL version is supported by the current platform. Pokazuje jaką wersję OpenGL wspiera aktualna platforma. - - Normalize waveform overview - Normalizuj przegląd przebiegów - - - + Average frame rate Średnia prędkość ramek @@ -8036,7 +8319,7 @@ The loudness target is approximate and assumes track pregain and main output lev Domyślny poziom powiększenia - + Displays the actual frame rate. Pokazuje szybkość klatek @@ -8053,7 +8336,7 @@ The loudness target is approximate and assumes track pregain and main output lev This functionality requires waveform acceleration. - Ta funkcjionalność wymaga akceleracji wykresu dźwięku. + Ta funkcjonalność wymaga akceleracji wykresu dźwięku. @@ -8078,7 +8361,7 @@ The loudness target is approximate and assumes track pregain and main output lev Use acceleration - Użyj akcelerację + Użyj akceleracji @@ -8116,7 +8399,7 @@ The loudness target is approximate and assumes track pregain and main output lev Główny optyczny gain - + 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. Przegląd przebiegu pokazuje obwiednię przebiegu całej ścieżki. @@ -8185,22 +8468,22 @@ Wybierz spośród różnych typów wyświetlania przebiegu, które różnią si pt - + Caching Zapisywanie w pamięci podręcznej - + 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 buforuje przebiegi Twoich utworów na dysku przy pierwszym załadowaniu utworu. Zmniejsza to zużycie procesora podczas gry na żywo, ale wymaga dodatkowego miejsca na dysku. - + Enable waveform caching Włącz buforowanie przebiegów - + Generate waveforms when analyzing library Generuj przebiegi podczas analizy biblioteki @@ -8216,7 +8499,7 @@ Wybierz spośród różnych typów wyświetlania przebiegu, które różnią si - + Type Typ @@ -8276,12 +8559,28 @@ Wybierz spośród różnych typów wyświetlania przebiegu, które różnią si - + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Wyczyść buforowane przebiegi @@ -8703,7 +9002,7 @@ Wybierz spośród różnych typów wyświetlania przebiegu, które różnią si Metadata & Cover Art applied - Metadane i okładka zapisane + Metadane & okładka zapisane @@ -8773,7 +9072,7 @@ Nie można tego cofnąć! BPM (uderzenia na minutę): - + Location: Lokalizacja: @@ -8788,27 +9087,27 @@ Nie można tego cofnąć! Komentarze - + BPM BPM - + Sets the BPM to 75% of the current value. Ustawia BPM do 75% obecnej wartości. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ustawia BPM do 50% obecnej wartości. - + Displays the BPM of the selected track. Wyświetla BPM wybranego utworu. @@ -8863,49 +9162,49 @@ Nie można tego cofnąć! Gatunek - + ReplayGain: GainPowtórki: - + Sets the BPM to 200% of the current value. Ustawia BPM do 200% obecnej wartości. - + Double BPM Podwójny BPM - + Halve BPM Połowa BPM - + Clear BPM and Beatgrid Wyczyść BPM i siatkę beat'u - + Move to the previous item. "Previous" button Przenieś do poprzedniej pozycji. - + &Previous &Poprzedni - + Move to the next item. "Next" button Przenieś do następnej pozycji. - + &Next &Następny @@ -8930,12 +9229,12 @@ Nie można tego cofnąć! Kolor - + Date added: Data dodania: - + Open in File Browser Otwórz plik w przeglądarce @@ -8945,12 +9244,17 @@ Nie można tego cofnąć! Próbkowanie: - + + Filesize: + + + + Track BPM: BPM Ścieżki: - + 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. @@ -8959,90 +9263,90 @@ Użyj tego ustawienia, jeśli Twoje utwory mają stałe tempo (np. większość Często skutkuje wyższą jakością siatek beatowych, ale nie sprawdzi się dobrze w przypadku utworów zawierających zmiany tempa. - + Assume constant tempo Załóż stałe tempo - + Sets the BPM to 66% of the current value. Ustawia BPM do 66% obecnej wartości. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Ustawia BPM do 150% obecnej wartości. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Ustawia BPM do 133% obecnej wartości. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Uderzaj zgodnie z beat'em aby ustawić BPM zgodnie z tym który uderzasz. - + Tap to Beat Uderzaj do Bitu - + Hint: Use the Library Analyze view to run BPM detection. Podpowiedź: Użyj widoku Analizuj Kolekcję, aby uruchomić wykrywanie BPM. - + Save changes and close the window. "OK" button Zapisz zmiany i zamknij okno. - + &OK &OK - + Discard changes and close the window. "Cancel" button Porzuć zmiany i zamknij okno. - + Save changes and keep the window open. "Apply" button Zapisz zmiany i nie zamykaj okna. - + &Apply Z&astosuj - + &Cancel &Anuluj - + (no color) (bez koloru) @@ -9199,7 +9503,7 @@ Często skutkuje wyższą jakością siatek beatowych, ale nie sprawdzi się dob &OK - + (no color) (bez koloru) @@ -9236,7 +9540,7 @@ Często skutkuje wyższą jakością siatek beatowych, ale nie sprawdzi się dob duplicate - Duplikuj + duplikat @@ -9401,27 +9705,27 @@ Często skutkuje wyższą jakością siatek beatowych, ale nie sprawdzi się dob EngineBuffer - + Soundtouch (faster) Soundtouch (szybszy) - + Rubberband (better) Rubberband (lepszy) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (praktycznie jakość hi-fi) - + Unknown, using Rubberband (better) Nieznane, użycie Rubberband (lepsze) - + Unknown, using Soundtouch Nieznane, użycie Soundtouch @@ -9636,15 +9940,15 @@ Często skutkuje wyższą jakością siatek beatowych, ale nie sprawdzi się dob 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 @@ -9655,57 +9959,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9713,36 +10017,36 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - Ten albo nadrzędny katalog jest już w twojej bibliotece. + Ten albo nadrzędny katalog jest już w twojej Bibliotece. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. Nie można odczytać tego katalogu. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Nieznany błąd. Porzucam operację aby uniknąć niespójności w bibliotece. - + Can't add Directory to Library - Nie można dodać katalogu do biblioteki. + Nie można dodać katalogu do Biblioteki. - + Could not add <b>%1</b> to your library. %2 @@ -9751,27 +10055,27 @@ Porzucam operację aby uniknąć niespójności w bibliotece. %2 - + Can't remove Directory from Library Nie można usunąć katalogu z biblioteki. - + An unknown error occurred. Nieznany błąd. - + This directory does not exist or is inaccessible. Ten katalog nie istnieje albo jest niedostępny. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9781,22 +10085,22 @@ Porzucam operację aby uniknąć niespójności w bibliotece. LibraryFeature - + Import Playlist Importuj listę odtwarzania - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Pliki list odtwarzania (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Nadpisać plik? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -9937,12 +10241,12 @@ Czy na pewno chcesz to nadpisać? Ukryte utwory - + Export to Engine DJ Wyeksportuj do Engine DJ - + Tracks Ścieżki @@ -9950,252 +10254,252 @@ Czy na pewno chcesz to nadpisać? 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. + <b>Wyjdź</b> z Mixxx'a. - + Retry Ponów - + skin Skórka - + Allow Mixxx to hide the menu bar? - Pozwoli Mixxx'owi schować pasek menu? + Pozwolić Mixxx'owi schować pasek menu? - + Hide Always show the menu bar? Ukryj - + Always show Zawsze pokazuj - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again Zapytaj mnie ponownie - - + + 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 <b>Spróbuj ponownie</b> po rozwiązaniu problemu - + 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. Nie wybrano żadnego urządzenia wejściowego dla tej kontroli przejścia. Najpierw wybierz urządzenie wejściowe w preferencjach sprzętu dźwiękowego. - + There is no input device selected for this microphone. Do you want to select an input device? Dla tego mikrofonu nie wybrano żadnego urządzenia wejściowego. Czy chcesz wybrać urządzenie wejściowe? - + There is no input device selected for this auxiliary. Do you want to select an input device? Dla tego urządzenia pomocniczego nie wybrano żadnego urządzenia wejściowego. Czy chcesz wybrać urządzenie wejściowe? - + Scan took %1 Skanowanie trwało %1 - + No changes detected. Nie wykryto zmian. - - + + %1 tracks in total %1 ścieżek w sumie - + %1 new tracks found %1 nowych ścieżek znalezionych - + %1 moved tracks detected %1 przemieszczonych ścieżek wykryto - + %1 tracks are missing (%2 total) %1 ścieżek brak (%2 w sumie) - + %1 tracks have been rediscovered %1 ścieżek zostało ponownie odznalezionych - + Library scan finished Skanowanie biblioteki zakończone - + 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. Renderowanie bezpośrednie nie jest włączone na Twoim komputerze.<br><br>Oznacza to, że wyświetlanie przebiegów będzie bardzo <br><b>powolne i może mocno obciążać procesor</b>. Zaktualizuj<br>konfigurację, aby włączyć bezpośrednie renderowanie, albo wyłącz<br>wyświetlanie przebiegu w preferencjach Mixxx, wybierając<br>„Pusty” jako sposób wyświetlania przebiegu w sekcji „Interfejs”. - - - + + + 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? @@ -10211,13 +10515,13 @@ Czy chcesz wybrać urządzenie wejściowe? PlaylistFeature - + Lock Zablokuj - - + + Playlists Listy odtwarzania @@ -10227,58 +10531,63 @@ Czy chcesz wybrać urządzenie wejściowe? Wymieszaj Listę Odtwarzania - + + Adopt current order + + + + Unlock all playlists Odblokuj wszystkie playlisty - + Delete all unlocked playlists Usuń wszystkie odblokowane playlisty - + Unlock Odblokuj - - + + Confirm Deletion Potwierdź usunięcie - + Do you really want to delete all unlocked playlists? Czy napewno chcesz usunąć wszystkie odblokowane playlisty? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! Usuwanie %1 odblokowanych playlists.<br>Nie można tego cofnąć! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Playlisty są to uporządkowane listy ścieżek, które pozwalają planować swoje DJ sety. - + 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. Może być niezbędne pominąć niektóre ścieżki w przygotowanej playliście lub dodanie niektórych aby utrzymać energię twojej widowni. - + 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 @@ -10377,59 +10686,59 @@ Czy chcesz wybrać urządzenie wejściowe? 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 @@ -10543,69 +10852,82 @@ Czy chcesz przeskanować Twoją bibliotekę plików teraz? 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier Oba - + Headphones + Audio path indetifier Słuchawki - + Left Bus + Audio path indetifier Magistrala Lewa - + Center Bus + Audio path indetifier Magistrala Środkowa - + Right Bus + Audio path indetifier Magistrala Prawa - + Invalid Bus + Audio path indetifier Nieprawidłowa Magistrala - + Deck + Audio path indetifier Odtwarzacz - + Record/Broadcast + Audio path indetifier Nagrywanie/Nadawanie - + Vinyl Control + Audio path indetifier Kontrola Winylem - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier Zewnętrzne - + Unknown path type %1 + Audio path Nieznany typ ścieżki %1 @@ -10680,7 +11002,7 @@ Jeśli nie chcesz przyznawać Mixxx dostępu, kliknij Anuluj w selektorze plikó Downsampling - + Downsampling @@ -10942,47 +11264,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Szerokość - + Metronome Metronom - + + The Mixxx Team - + Adds a metronome click sound to the stream Dodaj dźwięk metronomu do strumienia - + BPM BPM - + Set the beats per minute value of the click sound Ustaw liczbę uderzeń na minutę dźwięku kliknięcia - + Sync Synchronizuj - + Synchronizes the BPM with the track if it can be retrieved Synchronizuje BPM ze ścieżką, jeśli można ją odzyskać - + + Gain - + Set the gain of metronome click sound @@ -11768,14 +12092,14 @@ Fully right: end of the effect period Nagrywanie OGG nie jest obsługiwane. Biblioteka OGG/Vorbis nie mogła zostać uruchomiona. - - + + encoder failure błąd encoder'a - - + + Failed to apply the selected settings. @@ -11913,7 +12237,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Passthrough @@ -11934,60 +12258,131 @@ Hint: compensates "chipmunk" or "growling" voices - - When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + + When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + + + + + (empty) + (pusty) + + + + Sampler %1 + + + + + + Compressor + + + + + Auto Makeup Gain + + + + + Makeup + + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + Wył. + + + + On + Wł. + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold - - (empty) - (pusty) + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + - - Sampler %1 - Sampler %1 + + Target (dBFS) + - - - Compressor + + Target - - Auto Makeup Gain + + The Target knob adjusts the desired target level of the output signal - - Makeup + + Gain (dB) - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - Off - Wył. + + Knee (dB) + - - On - Wł. + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -12018,6 +12413,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -12028,11 +12424,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) Atak (ms) + Attack Atak @@ -12044,11 +12442,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12077,12 +12477,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in wbudowany - + missing brakujący @@ -12117,42 +12517,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty Pusty - + Simple - + Filtered Przefiltrowane - + HSV HSV - + VSyncTest VSyncTest - + RGB RGB - + Stacked - + Unknown Nieznany @@ -12413,193 +12813,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx napotkał problem - + Could not allocate shout_t Nie mogę alokować shout_t - + Could not allocate shout_metadata_t Nie mogę alokować shout_metadata_t - + Error setting non-blocking mode: Błąd podczas ustawiania trybu non-blocking: - + Error setting tls mode: Bład ustawień trybu TLS: - + Error setting hostname! Błąd ustawienia nazwy serwera! - + Error setting port! Błąd ustawienia portu! - + Error setting password! Błąd ustawienia hasła! - + Error setting mount! Błąd ustawienia podłączenia! - + Error setting username! Błąd ustawienia nazwy użytkownika! - + Error setting stream name! Błąd ustawienia nazwy strumienia! - + Error setting stream description! Błąd ustawiania opisu strumienia! - + Error setting stream genre! Błąd ustawienia gartunku strumienia! - + Error setting stream url! Błąd ustawiania adresu url strumienia! - + Error setting stream IRC! Błąd ustawienia strumienia IRC! - + Error setting stream AIM! Błąd ustawienia strumienia AIM! - + Error setting stream ICQ! Błąd ustawienia strumienia ICQ! - + Error setting stream public! Błąd ustawiania strumienia publicznego! - + Unknown stream encoding format! Nieznany format kodowania strumienia! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Zobacz https://github.com/mixxxdj/mixxx/issues/5701 aby dowiedzieć się więcej. - + Unsupported sample rate - + Error setting bitrate Błąd ustawienia przepustowości! - + Error: unknown server protocol! Błąd: nieznany protokół serwera! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! błąd ustawienia protokołu! - + Network cache overflow - + Connection error Błąd połączenia - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message Wiadomość połączenia - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Utracono połączenie z serwerem strumieniowym. Liczba nieudanych połączeń: %1 - + Lost connection to streaming server. Utracono połączenie z serwerem strumieniowym. - + Please check your connection to the Internet. Sprawdź swoje połączenie z Internetem. - + Can't connect to streaming server Nie można połączyć się z serwerem strumienia - + Please check your connection to the Internet and verify that your username and password are correct. Sprawdź połączenie z Internetem i zweryfikuj nazwę użytkownika i hasło @@ -12607,7 +13007,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Przefiltrowane @@ -12615,23 +13015,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device urządzenie - + An unknown error occurred Wystąpił nieznany błąd - + Two outputs cannot share channels on "%1" - + Error opening "%1" Wystąpił błąd podczas otwierania "%1" @@ -12816,7 +13216,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Obracajacy się vinyl @@ -12968,7 +13368,7 @@ may introduce a 'pumping' effect and/or distortion. Sampler - Sampler + @@ -12998,7 +13398,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Okładka @@ -13188,243 +13588,243 @@ may introduce a 'pumping' effect and/or distortion. Utrzymuje wzmocnienie tonów niskich na pozimie 0 kiedy jestaktywne. - + Displays the tempo of the loaded track in BPM (beats per minute). Wyświetla prędkość załadowanego utworu w uderzeniach na minutę (BPM). - + Tempo Prędkosc - + Key The musical key of a track Tonacja - + BPM Tap Wstukanie rytmu (BPM Tap) - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Uderzane cyklicznie reguluje tempo utworu (BPM) aby pasowało do wybitego rytmu. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Tempo i BPM Tap - + Show/hide the spinning vinyl section. Pokaż/ukryj sekcję obracającego się vinyla - + Keylock Blokada przycisków - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Odtwarzaj - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13647,947 +14047,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Start Intro Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker Stop Intro Marker - + Outro Start Marker Start Outro Marker - + Outro End Marker Stop Outro Marker - + Mix Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Zapisz Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Wczytaj Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters Pokaż parametry efektu - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Super Gałka - + Next Chain Następny łańcuch - + Previous Chain Poprzedni Łańcuch - + Next/Previous Chain Następny/Poprzedni Łańcuch - + Clear Wyczyść - + Clear the current effect. Wyczyść obecny efekt. - + Toggle Przełącz - + Toggle the current effect. Przełącz obecny efekt. - + Next Następny - + Clear Unit Wyczyść Jednostkę - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit Przełącz moduł - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the 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 the next or previous effect. Przełącz do następnego lub poprzedniego efektu. - + Meta Knob Pokrętło Meta - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Parametr efektu - + Adjusts a parameter of the effect. Reguluje parametr efektu. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter Parametr Equalizera - + Adjusts the gain of the EQ filter. Reguluje moc filtru korektora. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Podpowiedź: Zmień domyślny tryb korektora w Ustawienia -> Korekcja graficzna - - + + Adjust Beatgrid Reguluje siatkę uderzeń - + Adjust beatgrid so the closest beat is aligned with the current play position. Ustawia siatkę uderzeń tak aby najbliższa linia siatki została wyrównana do aktualnej pozycji odtwarzania. - - + + Adjust beatgrid to match another playing deck. Skoryguj siatkę tempa aby pasowała do drugiego grającego odtwarzacza. - + If quantize is enabled, snaps to the nearest beat. Jeśli kwantyzacja jest włączona, przeskakuje do najbliższego uderzenia. - + Quantize Kwantyzuje - + Toggles quantization. Przełącza kwantyzację. - + Loops and cues snap to the nearest beat when quantization is enabled. Pętle i wskaźniki przeuwają się do najbliższego uderzenia kiedy kwantyzacja jest włączona. - + Reverse Wstecz - + Reverses track playback during regular playback. Odwraca kierunek odtwarzania podczas odtwarzania utworu. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Odtwórz/Wstrzymaj - + Jumps to the beginning of the track. Skacze do początku utworu. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. Zwiększa odstrojenie o jeden półton. - + Decreases the pitch by one semitone. Zmniejsza odstrojenie o jeden półton. - + Enable Vinyl Control Włącz kontrolę vinylem - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Wskazuje, że bufor audio jest za mały, aby wykonać całe przetwarzanie audio. - + Displays cover artwork of the loaded track. Wyświetla okładkę albumu załadowanego utworu. - + Displays options for editing cover artwork. Wyświetla opcje edycji okładki albumu. - + Star Rating Ranking Gwiazdek - + Assign ratings to individual tracks by clicking the stars. Przyporządkowuje ranking do poszczególnych utworów przez kliknięcie gwiazdek. @@ -14722,33 +15157,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Rozpoczyna odtwarzanie od początku utworu. - + Jumps to the beginning of the track and stops. Skacze do początku utworu i zatrzymuje. - - + + Plays or pauses the track. Odtwarza lub pauzuje utwór. - + (while playing) (podczas odtwarzania) @@ -14768,215 +15203,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (kiedy zatrzymane) - + Cue Wskaźnik (Cue) - + Headphone Słuchawka - + Mute Wycisz - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Synchronizuje do pierwszego odtwarzacza (w porządku numerycznym) który gra i ma określony BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Jeśli żaden odtwarzacz nie gra, synchronizuje do pierwszego odtwarzacza który ma podany BPM. - + 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. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. Resetuj klucz do oryginalnego klucza utworu. - + Speed Control Kontrola prędkości - - - + + + Changes the track pitch independent of the tempo. Zmienia wysokość tonu utworu nie zależnie od tempa. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Dostosowanie Tonu - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Zarejestruj mix - + Toggle mix recording. - + Enable Live Broadcasting Włącz Nadawane na Żywo - + Stream your mix over the Internet. Transmituj swój mix przez Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. Odtwarzanie zostanie wznowione tam, gdzie byłoby gdyby nie było ustawionej pętli. - + Loop Exit Wyjście z pętli - + Turns the current loop off. Wyłącza atualny loop. - + Slip Mode Tryb poślizgu - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Kiedy aktywne, odtwarzanie jest kontynuowane w tle wyciszone podczas trwania pętli, odtwarzania w tył, skreczowania itp. - + Once disabled, the audible playback will resume where the track would have been. Kiedy nieaktywne, odtwarzanie szłyszalne, będzie kontynuowane tam gdzie ścieżki znajdowały się oryginalnie. - + Track Key The musical key of a track Tonacja Ścieżki - + Displays the musical key of the loaded track. Pokazuje tonację załadowanej ścieżki. - + Clock Zegar - + Displays the current time. Wyświetla aktualny czas. - + Audio Latency Usage Meter Wskaźnik użycia bufora opóźnienia audio. - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator Wskaźnik przeładownia bufora opóźnienia audio. @@ -15016,259 +15451,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Aktywuj kontrolę vinylem z Menu -> Opcje - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Szybkie cofanie - + Fast rewind through the track. Szybkie przewijanie (do tyłu) przez ścieżkę. - + Fast Forward Przewiń do przodu - + Fast forward through the track. Szybkie przewijanie (do przodu) przez ścieżkę. - + Jumps to the end of the track. Przeskakuje do końca utworu. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Kontrola wysoości tonu - + Pitch Rate Wysokość tonu. - + Displays the current playback rate of the track. Wyświetla aktualną prędkość utworu. - + Repeat Powtórz - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Wysuń - + Ejects track from the player. Wysuwa ścieżkę z odtwarzacza. - + Hotcue Szybiki znacznik (Hotcue) - + If hotcue is set, jumps to the hotcue. Jeżeli Hotcue jest ustalony, przeskakuje do Hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Jeżeli Hotcue nie jest ustalony, ustala Hotcue na pozycję aktualnie odtwarzaną. - + Vinyl Control Mode Tryb kontroli vinylem - + Absolute mode - track position equals needle position and speed. Tryb bezwzględny - pozycja utworu jest równa pozycji i prędkosci igły. - + Relative mode - track speed equals needle speed regardless of needle position. Tryb względny - Prędkość utworu jest równa prędkości igły niezależnie od jej pozycji. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Tryb stały - prędkość utworu jest równa ostatniej stałej prędkości igły niezależnie od wejścia. - + Vinyl Status Status vinyla - + Provides visual feedback for vinyl control status: Pokazuje wizualne sprzężenie zwrotne stanu kontroli vinylem. - + Green for control enabled. Zielone jeśli kontrola jest włączona. - + Blinking yellow for when the needle reaches the end of the record. Mrugające żółte kiedy igła osiągnie koniec nagrania. - + Loop-In Marker Znacznik początku pętli - + Loop-Out Marker Znacznik końca pętli. - + Loop Halve Połowa pętli - + Halves the current loop's length by moving the end marker. Skraca o połowę aktualną petlę przenosząc znacznik końca pętli. - + Deck immediately loops if past the new endpoint. Odtwarzacz natychmiast zapętla się jeśli przekroczy nowy punkt końcowy. - + Loop Double Podwojenie pętli - + Doubles the current loop's length by moving the end marker. Podwaja długość aktualnej pętli przenosząc znacznik końca pętli. - + Beatloop - + Toggles the current loop on or off. Przełacza biezacą pętlę (Wł./Wył.) - + Works only if Loop-In and Loop-Out marker are set. Dziala tylko iedy znaczniki początku i końca petli są ustawione. - + Vinyl Cueing Mode Tryb CUE Vinyla - + Determines how cue points are treated in vinyl control Relative mode: Ustala jak pozycje CUE są traktowane w trybie względnej kontroli vinyla: - + Off - Cue points ignored. OFF - Pozycje CUE ignorowane. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. One Cue - Kiedy igła zostaje opuszczona po pozycji CUE, przewinie ścieżkę do tej pozycji CUE. - + Track Time Całkowity czas utworu - + Track Duration Czas trwania utworu - + Displays the duration of the loaded track. Wyświetla czas trwania załadowanego utworu. - + Information is loaded from the track's metadata tags. Informacja jest załadowana z metadanych utworu. - + Track Artist Wykonawca utworu. - + Displays the artist of the loaded track. Wyświetla wykonawcę załadowanego utworu. - + Track Title Tytuł utworu - + Displays the title of the loaded track. Wyświetla tytuł załadowanego utworu. - + Track Album Album utworu - + Displays the album name of the loaded track. Wyświetla tytuł albumu, z którego pochodzi utwór. - + Track Artist/Title Wykonawca/tytuł utworu - + Displays the artist and title of the loaded track. Wyświetla nazwę wykonawcy oraz tytuł załadowanego utworu. @@ -15497,47 +15932,75 @@ This can not be undone! WCueMenuPopup - + Cue number Numer CUE - + Cue position Pozycja CUE - + Edit cue label - + Label... Okładka... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue - - Left-click: Use the old size or the current beatloop size as the loop size + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. - - Right-click: Use the current play position as loop end if it is after the cue + + Turn this cue into a saved backward jump (one shot loop). - + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 Hotcue #%1 @@ -15662,323 +16125,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Utwórz &Nową Listę Odtwarzania - + Create a new playlist Utwórz nową listę odtwarzania - + Ctrl+n Ctrl+n - + Create New &Crate Utwórz nową &Skrzynkę - + Create a new crate Utwórz nową Skrzynkę - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Widok - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Może nie być wspierane we wszystkich skórkach. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Pokaż Sekcję Mikrofonową - + Show the microphone section of the Mixxx interface. Pokaż sekcję mikrofonu w interfejsie Mixxx'a. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Pokaż Sekcję Kontroli Vinyli - + Show the vinyl control section of the Mixxx interface. Pokaż sekcję kontroli vinyla w interfejsie Mixxx'a. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Pokaż Podgląd Decka - + Show the preview deck in the Mixxx interface. Pokaż podgląd decka w interfejsie Mixxx'a. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Pokaż Okładę - + Show cover art in the Mixxx interface. Pokaż Okładkę w interfejsie Mixxx'a - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maksymalizuj 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. - + Space Menubar|View|Maximize Library Spacja - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Pełny Ekran - + Display Mixxx using the full screen Włącz Mixxx w trybie pełnoekranowym - + &Options &Opcje - + &Vinyl Control Kontrola &Winylem - + Use timecoded vinyls on external turntables to control Mixxx Użyj "timecoded vinyls" na zewnętrznych gramofonach aby kontrolować Mixxx'a - + Enable Vinyl Control &%1 Włącz Kontrolę Winylem &%1 - + &Record Mix &Nagraj Mix - + Record your mix to a file Nagraj swój mix do pliku - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Włącz &Nadawanie na żywo - + Stream your mixes to a shoutcast or icecast server Wysyłaj strumień mixu do serwera shoutcast/icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Włącz skróty &Klawiaturowe - + Toggles keyboard shortcuts on or off Przełącza skróty klawiaturowe (Wł./Wył.) - + Ctrl+` Ctrl+` - + &Preferences &Ustawienia - + Change Mixxx settings (e.g. playback, MIDI, controls) Zmień ustawienia Mixxx (np. odtwarzanie, MIDI, sterowanie) - + &Developer &Programista - + &Reload Skin &Wczytaj ponownie skórkę - + Reload the skin Wczytaj ponownie skórkę - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Narzędzia &Programistyczne - + Opens the developer tools dialog Otwiera okienko dialogowe z narzędziami dla programistów. - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Włącza tryb eksperymentalny. Zbiera statystyki w "Koszyku Śledzenia Eksperymentu". - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. Włącza tryb podstawowy. Zbiera statystyki w "Podstawowym Koszyku Śledzenia". - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing Włącza debugger podczas analizowania skórki - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Pomoc - + Show Keywheel menu title @@ -15995,74 +16498,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support & Wsparcie Mixxx - + Get help with Mixxx Uzyskaj pomoc Mixxx - + &User Manual I instrukcja - + Read the Mixxx user manual. Przeczytaj instrukcję użytkownika Mixxx. - + &Keyboard Shortcuts &Skróty Klawiaturowe - + Speed up your workflow with keyboard shortcuts. Przyśpiesz pracę używając skrótów klawiaturowych - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application Prze&tłumacz ten program - + Help translate this application into your language. Pomóż przetłumaczyć ta Aplikacje Na Twój język. - + &About &O programie - + About the application O programie @@ -16070,25 +16573,25 @@ This can not be undone! WOverview - + Passthrough 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 Ładowanie ścieżki... - + Finalizing... Text on waveform overview during finalizing of waveform analysis Kończenie... @@ -16097,25 +16600,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Wyczyść wejście - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Szukaj - + Clear input Wyczyść wejście @@ -16126,94 +16617,87 @@ This can not be undone! Szukaj... - + Clear the search bar input field - - Enter a string to search for - Wpisz słowo do wyszukania + + Return + Powróć - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - + + Enter a string to search for. + Wpisz słowo do wyszukania. - - For more information see User Manual > Mixxx Library - + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + Użyj operatoróœ taki jak bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Skrót + See User Manual > Mixxx Library for more information. + Odwiedź Instrukcję użytkownika > Biblioteka Mixxx aby dowiedzieć się więcej. - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Skupienie - + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspce + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return - Powróć + Esc or Ctrl+Return + Esc lub Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space Ctrl+Space - + Toggle search history Shows/hides the search history entries Przełącz historię wyszukiwania - + Delete or Backspace Delete lub Backspace - - Delete query from history - Usuń zapytanie z historii - - - - Esc - Esc + + in search history + w historii wyszukiwania - - Exit search - Exit search bar and leave focus - Wyjdź z wyszukiwania + + Delete query from history + Usuń zapytanie z historii @@ -16241,7 +16725,7 @@ This can not be undone! between %1 and %2 - pomiędzy %1 i %2 + pomiędzy %1 a %2 @@ -16286,7 +16770,7 @@ This can not be undone! Directory - Folder: + Katalog @@ -16297,625 +16781,640 @@ This can not be undone! WTrackMenu - + Load to Załaduj do - + Deck Odtwarzacz - + Sampler - Sampler + - + Add to Playlist Dodaj do listy odtwarzania - + Crates Skrzynki - + Metadata Metadane - + Update external collections - Zaktualizuj zewnętrzną kolekcję + Zaktualizuj zewnętrzne kolekcję - + Cover Art Okładka - + Adjust BPM Ustaw BPM - + Select Color Wybierz Kolor - - + + Analyze Analizuj - - + + Delete Track Files Usuń pliki ścieżki - + 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ń) - + Preview Deck Podgląd Decka - + Remove Usuń - + Remove from Playlist Usuń z playlisty - + Remove from Crate Usuń ze skrzynki - + Hide from Library Ukryj w bibliotece - + Unhide from Library Odkryj w bibliotece - + Purge from Library Usuń z biblioteki - + Move Track File(s) to Trash Przenieść pliki ścież(ki/ek) do kosza - + Delete Files from Disk Usuń pliki z dysku - + Properties Właściwości - + Open in File Browser Otwórz plik w przeglądarce - + Select in Library - Wybierz w bibliotecę + Wybierz w bibliotece - + Import From File Tags Importuj z metadanych pliku - + Import From MusicBrainz Importuj z MusicBrainz - + Export To File Tags Eksportuj do metadanych pliku - + BPM and Beatgrid BPM i Siatka bitów - + Play Count Licznik odtwarzania - + Rating Ocena - + Cue Point Punkt CUE - - + + Hotcues Znaczniki hotcue - + Intro Intro - + Outro Outro - + Key Tonacja - + ReplayGain GainPowtórki - + Waveform Wykres dźwięku - + Comment Komentarz - + All Wszystko - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Zablokuj BPM - + Unlock BPM Odblokuj BPM - + Double BPM Podwójny BPM - + Halve BPM Połowa BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze Analizuj ponownie - + Reanalyze (constant BPM) Analizuj ponownie (stałe BPM) - + Reanalyze (variable BPM) Analizuj ponownie (zmienne BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Decka %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - Czy przenieść ten pliki kosza? + Czy przenieść te pliki kosza? - + Permanently delete these files from disk? Usunąć te pliki na zawsze z dysku? - - + + This can not be undone! Nie można tego cofnąć! - + Cancel Anuluj - + Delete Files Usuń pliki - + Okay Ok - + Move Track File(s) to Trash? Przenieść pliki ścież(ki/ek) do kosza? - + Track Files Deleted Pliki ścieżki usunięte - + Track Files Moved To Trash Pliki ścieżki zostały przeniesione do kosza - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted Plik ścieżki usunięty - + Track file was deleted from disk and purged from the Mixxx database. Plik ścieżki został usunięty z dysku i usunięty z bazy danych Mixxx'a. - + The following %1 file(s) could not be deleted from disk Te %1 plik(i/ów) mogły nie zostać usunięte z dysku - + This track file could not be deleted from disk Ten plik ścieżki nie mógł zostać usunięty z dysku - + Remaining Track File(s) - Pozostałe pliki ścież(ki/ek). + Pozostałe pliki ścież(ki/ek) - + Close Zamknij - + Clear Reset metadata in right click track context menu in library Wyczyść - + Loops Pętle - + Clear BPM and Beatgrid Wyczyść BPM i siatkę beat'u - + Undo last BPM/beats change Cofnij ostatnią zmianę BPM/bitu - + Move this track file to the trash bin? Czy przenieść ten plik ścieżki do kosza? - + Permanently delete this track file from disk? Usunąć ten plik ścieżki na zawsze z dysku? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. Wszystkie decki w których te ścieżki są załadowane zostaną zatrzymane a ścieżki zostaną wyrzucone z tychże decków. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Uwaga: jeśli jesteś w widoku Komputera ("Computer") lub Nagrywania ("Recording") musisz kliknąć obecny widok ponownie aby zobaczyć zmiany. - + Track File Moved To Trash Plik ścieżki został przeniesiony do kosza - + Track file was moved to trash and purged from the Mixxx database. Plik ścieżki został przeniesiony do kosza i usunięty z bazy danych Mixxx'a. - + Don't show again during this session Nie pokazuj ponownie podczas tej sesji - + The following %1 file(s) could not be moved to trash Te %1 plik(i/ów) mogły nie zostać przeniesione do kosza. - + This track file could not be moved to trash - Ten plik może nie zostać przeniesiony do kosza. + Ten plik mógł nie zostać przeniesiony do kosza. + + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) Odświeżenie okładki jednej ścieżki.Odświeżenie okładek %n ścieżek.Odświeżenie okładek %n ścieżek.Odświeżenie okład(ki/ek) %n ścież(ki/ek) @@ -16969,37 +17468,37 @@ This can not be undone! WTrackTableView - + Confirm track hide Potwiedź ukrycie ścieżki - + Are you sure you want to hide the selected tracks? Czy napewno chcesz ukryć wybrane ścieżki? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - Czy napewno chcesz usunąć wybrane ścieżki z kolejki AutoDJ? + Czy napewno chcesz usunąć wybrane ścieżki z kolejki AutoDJ'a? - + Are you sure you want to remove the selected tracks from this crate? Czy napewno chcesz usunąć wybrane ścieżki z tej skrzynki? - + Are you sure you want to remove the selected tracks from this playlist? Czy napewno chcesz usunąć wybrane ścieżki z tej playlisty? - + Don't ask again during this session Nie pytaj ponownie podczas tej sesji - + Confirm track removal Potwierdź usunięcie ścieżki @@ -17007,12 +17506,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Pokaż lub ukryj kolumny. - + Shuffle Tracks Przetasuj ścieżki @@ -17050,22 +17549,22 @@ This can not be undone! biblioteka - + Choose music library directory Wybierz katalog biblioteki utworów. - + controllers kontrolery - + 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. @@ -17106,7 +17605,7 @@ Kliknij OK aby wyjść. Export directory - Wyeksportuj katalog + Wyeksportuj folder @@ -17137,17 +17636,17 @@ Kliknij OK aby wyjść. No Export Directory Chosen - Nie eksportuj wybranego folderu + Nie wybrano folderu eksportu. No export directory was chosen. Please choose a directory in order to export the music library. - Nie wybrano folderu exportu. Proszę wybrać folder, aby wyeskportować bibliotekę. + Nie wybrano folderu eksportu. Proszę wybrać folder, aby wyeskportować bibliotekę. A database already exists in the chosen directory. Exported tracks will be added into this database. - Baza danych już istnieje w wybranym katalogu, Wyeksportowane ścieżki zostaną dodane do tej bazy danych. + Baza danych już istnieje w wybranym folderze, Wyeksportowane ścieżki zostaną dodane do tej bazy danych. @@ -17223,6 +17722,24 @@ Kliknij OK aby wyjść. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17231,4 +17748,27 @@ Kliknij OK aby wyjść. Nie załadowano efektu. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_pt.qm b/res/translations/mixxx_pt.qm index 87bcc7820f87..668c7d8e67ee 100644 Binary files a/res/translations/mixxx_pt.qm and b/res/translations/mixxx_pt.qm differ diff --git a/res/translations/mixxx_pt.ts b/res/translations/mixxx_pt.ts index fafd954e7445..5920a874e595 100644 --- a/res/translations/mixxx_pt.ts +++ b/res/translations/mixxx_pt.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Caixas - + Enable Auto DJ Habilitar Auto DJ - + Disable Auto DJ Desativar Auto DJ - + Clear Auto DJ Queue Limpar fila do Auto DJ - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ Auto DJ - + Confirmation Clear Confirmar limpeza - + Do you really want to remove all tracks from the Auto DJ queue? Você tem certeza que quer remover todas as faixas da fila do Auto DJ? - + This can not be undone. Esta ação não pode ser desfeita. - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -170,7 +178,7 @@ Remove - + Remover @@ -221,7 +229,7 @@ - + Export Playlist Exportar Playlist @@ -235,7 +243,7 @@ Export to Engine DJ "Engine DJ" is a product name and must not be translated. - + Exportar para mecanismo DJ @@ -275,13 +283,13 @@ - + 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 @@ -296,12 +304,12 @@ Você realmente deseja excluir a lista de reprodução <b>%1</b>? - + 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 M3U (*.m3u);;Lista M3U8 (*.m3u8);;Lista PLS (*.pls);;Texto CSV (*.csv);;Texto (*.txt) @@ -309,12 +317,12 @@ BaseSqlTableModel - + # - + Timestamp Data/Hora @@ -322,7 +330,7 @@ BaseTrackPlayerImpl - + Couldn't load track. NAO FOI Possível carregar a Faixa @@ -352,7 +360,7 @@ BPM - + BPM @@ -360,9 +368,9 @@ Canais - + Color - + Cor @@ -375,7 +383,7 @@ Compositor - + Cover Art Capa @@ -385,7 +393,7 @@ Data Adicionada - + Last Played Última Execução @@ -415,17 +423,17 @@ Nota - + Location LOCALIZAÇÃO Overview - + Visão geral - + Preview Prévia @@ -465,7 +473,7 @@ Ano - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Buscando imagem ... @@ -487,22 +495,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Não é possível usar o armazenamento seguro de senha: o acesso ao keychain falhou. - + Secure password retrieval unsuccessful: keychain access failed. A recuperação segura da senha não foi bem-sucedida: o acesso ao keychain falhou. - + Settings error Erro nas definições - + <b>Error with settings for '%1':</b><br> <b>Erro com configurações para '%1':</b><br> @@ -590,7 +598,7 @@ - + Computer Computador @@ -607,22 +615,22 @@ Scan - + 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + Ele mostra os dados das tags do arquivo, não os dados da faixa da sua biblioteca Mixxx como outras visualizações de faixa. - + If you load a track file from here, it will be added to your library. - + Se você carregar um arquivo de faixa daqui, ele será adicionado à sua biblioteca. @@ -700,7 +708,7 @@ Bitrate - + Bit rate @@ -710,7 +718,7 @@ Location - + LOCALIZAÇÃO @@ -733,12 +741,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. @@ -748,108 +756,113 @@ The file '%1' could not be found. - + O arquivo '%1' não pôde ser encontrado. The file '%1' could not be loaded. - + O arquivo '%1' não pôde ser carregado. The file '%1' could not be loaded because it contains %2 channels, and only 1 to %3 are supported. - + O arquivo '%1' não pôde ser carregado porque contém %2 canais, e somente 1 a %3 são suportados. The file '%1' is empty and could not be loaded. - + O arquivo '%1' não pôde ser carregado. CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: - + Mixxx é um software de DJ de código aberto. Para mais informações, consulte: - + Starts Mixxx in full-screen mode Começa o Mixxx em tela cheia - + Use a custom locale for loading translations. (e.g 'fr') - + Use um idioma personalizado para carregar traduções. (por exemplo, 'fr') - + 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 - + Caminho onde a linha do tempo das estatísticas de depuração é escrita - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads - + Faz com que o Mixxx exiba/registre todos os dados do controlador que ele recebe e as funções de script que ele carrega - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + O mapeamento do controlador emitirá avisos e erros mais agressivos ao detectar o uso indevido das APIs do controlador. Novos mapeamentos de controlador devem ser desenvolvidos com esta opção habilitada! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Habilita o modo de desenvolvedor. Inclui informações extras de log, estatísticas de desempenho e um menu de ferramentas para desenvolvedores. - + Top-level directory where Mixxx should look for settings. Default is: - + Diretório de nível superior onde o Mixxx deve procurar as configurações. O padrão é: - + Starts Auto DJ when Mixxx is launched. - + Inicia o Auto DJ quando o Mixxx é iniciado. - + Rescans the library when Mixxx is launched. - + Verifica novamente a biblioteca quando o Mixxx é iniciado. - + Use legacy vu meter - + Use o medidor VU legado - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -859,32 +872,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -910,7 +923,7 @@ trace - Above + Profiling messages Remove Palette - + Remover Paleta @@ -938,7 +951,7 @@ trace - Above + Profiling messages No control chosen. - + Nenhum controlo escolhido. @@ -977,2557 +990,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Saída Auscultadores - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Leitor %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Antevisão do leitor %1 - + Microphone %1 Microfone %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Repor as predefinições - + Effect Rack %1 - + Rack de Efeitos %1 - + Parameter %1 Parâmetro %1 - + Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mistura nos auscultadores (pré-escuta/geral) - + Toggle headphone split cueing Ligar/Desligar o cueing dividido no fone - + Headphone delay - + Atraso Auscultador - + Transport Transporte - + Strip-search through track Pesquisar nas pistas - + Play button Tecla Play - - + + Set to full volume Volume Máximo - - + + Set to zero volume Volume Mínimo - + Stop button Botão Parar - + Jump to start of track and play Saltar para o inicio da pista e tocar - + Jump to end of track Saltar para o fim da faixa - + Reverse roll (Censor) button Tecla de rolagem inversa (Censurar) - + Headphone listen button Botão de audição dos fones - - + + Mute button - + Tecla de Silêncio - + Toggle repeat mode Alternar modo de repetição - - + + 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 mixagem para o centro - - + + Set mix orientation to right - + Definir orientação da mistura à direita - + Toggle slip mode Alterar modo de deslizamento - - + + BPM BPM - + Increase BPM by 1 Aumentar BPM em 1 - + Decrease BPM by 1 Diminuir BPM em 1 - + Increase BPM by 0.1 Aumentar BPM em 0.1 - + Decrease BPM by 0.1 Diminuir BPM em 0.1 - + BPM tap button Botão de batimento BPM - + Toggle quantize mode Activar/desactivar o modo de quantificação - + One-time beat sync (tempo only) - + Sincronização pontual da batida (só tempo) - + One-time beat sync (phase only) - + Sincronização pontual da batida (só fase) - + Toggle keylock mode Activar/desactivar o modo de bloqueio - + Equalizers 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 Passar audio externo para o misturador interno - + 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 - + Antevisão a partir do ponto de marcação - + Cue button (CDJ mode) Botão Cue (modo CDJ) - + Stutter cue - + Marcação Stutter - + Hotcues Marcações - + Set, preview from or jump to hotcue %1 Definir, escutar de ou pular ao hotcue %1 - + Clear hotcue %1 Apagar o marcador %1 - + Set hotcue %1 - + Definir a Hot Cue %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 Pular para hotcue %1 e jogar - + Preview from hotcue %1 - + Antevisão a partir da Hot Cue %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/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 - + Move o loop para trás %1 batidas - + Create %1-beat loop Criar um loop com %1 tempos - + Create temporary %1-beat loop roll Criar temporariamente %1 -beat loop roll - + Library Biblioteca - + Slot %1 - + Compartimento %1 - + Headphone Mix Mistura do auscultador - + Headphone Split Cue - + Escuta Dividida no Auscultador - + Headphone Delay - + Atraso Auscultador - + Play Tocar - + Fast Rewind Retorno Rápido - + Fast Rewind button Botão de Retrocesso Rápido - + Fast Forward Avanço Rápido - + Fast Forward button Botão de Avanço Rápido - + Strip Search - + Busca pela Faixa - + Play Reverse Tocar Invertido - + Play Reverse button Botão de Tocar ao Contrário - + Reverse Roll (Censor) Rolagem inversa (Censurar) - + Jump To Start Saltar para Inicio - + Jumps to start of track Saltar para o inicio da pista - + Play From Start Tocar do Inicio - + Stop Parar - + Stop And Jump To Start Para e Salta para o Inicio - + Stop playback and jump to start of track Parar a reprodução e pular para o início da faixa - + Jump To End Salta para o Fim - + Volume Volume - - - + + + Volume Fader Fader de Volume - - + + Full Volume Volume Total - - + + Zero Volume - + Volume Zero - + Track Gain Ganho Pista - + Track Gain knob - + Botão de Ganho da Faixa - - + + Mute Mutar - + Eject Ejectar - - + + Headphone Listen - + Escuta de Auscultador - + Headphone listen (pfl) button - + Botão de escuta de auscultador (PFL) - + Repeat Mode Modo Repetir - + Slip Mode Modo de deslizamento - - + + Orientation Orientação - - + + Orient Left Orientação à Esquerda - - + + Orient Center Orientação ao Centro - - + + Orient Right Orientação à Direita - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 - + BPM +0.1 - + BPM -0.1 -0,1 BPM - + BPM Tap Bater BPM - + Adjust Beatgrid Faster +.01 - + Ajustar Grelha de Batidas Mais Rápido +.01 - + Increase track's average BPM by 0.01 Aumentar o BPM médio da faixa por 0,01 - + Adjust Beatgrid Slower -.01 Expandir Grade de Batidas por -,01 - + Decrease track's average BPM by 0.01 - + Atrasa o BPM médio da faixa de 0.01 - + Move Beatgrid Earlier - + Mover Grelha de Batidas Cedo - + Adjust the beatgrid to the left Move a grade de batidas à esquerda - + Move Beatgrid Later - + Mover Grelha de Batidas Tarde - + Adjust the beatgrid to the right Move a grade de batidas à direita - + Adjust Beatgrid Ajustar a grelha ritmica - + Align beatgrid to current position - + Alinhar a grade de batidas à posição atual - + Adjust Beatgrid - Match Alignment - + Ajustar Grelha de Batidas - Igualar Alinhamento - + Adjust beatgrid to match another playing deck. - + Ajusta a grelha de batidas para corresponder um outro leitor em reprodução. - + Quantize Mode - + Modo Quantização - + Sync Sincronizar - + Beat Sync One-Shot Sincronizar a Batida De Uma Vez - + Sync Tempo One-Shot - + Sincronizar o Tempo De Uma Vez - + Sync Phase One-Shot Sincronizar a Fase De Uma Vez - + 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 - + Redefinir o Tom - + Resets key to original - + Redefine o tom para o original - + High EQ Equalizador dos Agudos - + Mid EQ - + Equalizador dos Médios - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ Equalizador dos Graves - + Toggle Vinyl Control - + Alternar Controlo do Vinil - + Toggle Vinyl Control (ON/OFF) Alternar o Controle por Vinil (Ligado/Desligado) - + Vinyl Control Mode Modo de Controlo Vinilo - + 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 de início - + Set Cue - + Definir Cue - + Go-To Cue - + Ir Para Cue - + 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) - + Cue (Modo CDJ) - + Stutter Cue - + Marcação Stutter - + 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 Hot Cue %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 - + Início de Loop - + Loop Out Saída do Loop - + Loop Exit - + Saída do Loop - + Reloop/Exit Loop - + Reloopar/Sair do Loop - + Loop Halve Reduz o loop a metade - + Loop Double Duplicação do 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 o Loop -%1 Batidas - + Loop %1 Beats - + Loopar %1 Batidas - + Loop Roll %1 Beats - + Loopar Temporariamente %1 Batidas - + Add to Auto DJ Queue (bottom) Juntar à fila Auto DJ (em 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) Juntar à fila 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 a faixa seleccionada - + Load selected track and play Carregar faixa selecionada e reproduzir - - + + Record Mix Gravar Mixagem - + Toggle mix recording - + Alternar gravação da mistura - + Effects Efeitos - - Quick Effects - - - - + 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 os parâmetros do efeito a que está ligado) - - + + + + Quick Effect - + Efeito Rápido - + 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 corrente - + Toggle Ligar/Desligar - + Toggle the current effect - + Alternar o efeito corrente - + Next Seguinte - + 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 - + Comutar quer para o próximo ou anterior efeito - - + + 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 Controlo 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 - + 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 Prateleira de Efeitos - + Show/hide the effect rack - + Mostra/Oculta a prateleira de efeitos - + Waveform Zoom Out - + Reduzir Forma de Onda - + Headphone Gain - + Ganho Auscultador - + Headphone gain - + Ganho dos auscultadores - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque para sincronizar o tempo (e fase com a quantização ativada), segure para ativar a sincronização permanente - + One-time beat sync tempo (and phase with quantize enabled) - + 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 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) - + Diminuir a velocidade temporariamente (grosseiro) - + Temporarily Decrease Speed (Fine) - + Temporariamente Diminuir a Velocidade (Fino) - + Temporarily decrease speed (fine) - + Temporariamente diminuir a velocidade (fino) - - + + Adjust %1 Ajustar %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Tema - + Controller Controladora - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone - + Auscultador - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Matar %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Velocidade - + Decrease Speed (Fine) Diminuir velocidade (Fino) - + Pitch (Musical Key) Pitch (Tom musical) - + 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 Trava de Tom - + CUP (Cue + Play) CUP (Cue + Play, ou seja Cue + Toca a faixa) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 - + Criar um loop rolado de batidas do tamanho selecionado - + Loop %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In Ir para Loop In - + Go to Loop In button Botão de Ir para o Fim do Loop - + Go To Loop Out Ir para o Fim do Loop - + Go to Loop Out button Botão de Ir para o Fim do Loop - + 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 - + Reduzir o loop pela metade - + Double the loop length - + Duplica o comprimento do loop - + Beat Jump / Loop Move - + Saltar Batidas / Mover Loop - + 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 - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 + Mover o foco para o 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 - + 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 Move o foco um painel à direita ou esquerda usando um botão, como se pressionasse TAB/SHIFT-TAB - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - - Deck %1 Quick Effect Enable Button + + Quick Effects Deck %1 - + + 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 + + + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button - + Enable or disable effect processing Ativar ou desativar processamento de efeitos - + 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 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 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 Ligar/Desligar Microfone - + Microphone on/off Microfone ligar/desligar - + 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 - + 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 Desencadear 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 secção sampler - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Transmite sua mixagem pela Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + Samplers - + Vinyl Control Show/Hide - + Mostrar/Ocultar Controle por Vinil - + Show/hide the vinyl control section Mostrar/ocultar a secção controlo vinilo - + Preview Deck Show/Hide - + Leitor de Antevisão Mostrar/Ocultar - + Show/hide the preview deck Mostrar/esconder o leitor anterior - + 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) - + Show/hide cover art in the main decks - + Vinyl Spinner Show/Hide Mostrar/Ocultar Vinil Giratório - + 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. - + Mostrar/esconder as ondas. - + Waveform zoom Aproximação das ondas - + Waveform Zoom Aproximação das Ondas - + Zoom waveform in - + Ampliar a forma de onda - + Waveform Zoom In Aproximar Ondas - + 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 @@ -3540,6 +3581,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3560,12 +3754,12 @@ trace - Above + Profiling messages Options - + Opções Action - + Ação @@ -3578,7 +3772,7 @@ trace - Above + Profiling messages Channel - + Canal @@ -3593,17 +3787,17 @@ trace - Above + Profiling messages On Value - + Valor On Off Value - + Valor Off Action - + Ação @@ -3613,7 +3807,7 @@ trace - Above + Profiling messages On Range Max - + Alcance Máximo para Ligado @@ -3642,32 +3836,32 @@ trace - Above + Profiling messages 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 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 ser corrigido. @@ -3675,27 +3869,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3713,7 +3907,7 @@ trace - Above + Profiling messages Remove - + Remover @@ -3724,11 +3918,11 @@ trace - Above + Profiling messages Rename - + Renomear - + Lock Bloquear @@ -3750,17 +3944,17 @@ trace - Above + Profiling messages Analyze entire Crate - + Analisar Toda a Caixa Auto DJ Track Source - + Fonte de Faixas do Auto DJ - + Enter new name for crate: - + Introduza um novo nome para a caixa: @@ -3775,22 +3969,22 @@ trace - Above + Profiling messages 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 @@ -3800,28 +3994,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + Renaming Crate Failed Falha AO renomear a 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 M3U (*.m3u);;Lista M3U8 (*.m3u8);;Lista PLS (*.pls);;Texto CSV (*.csv);;Texto (*.txt) - + M3U Playlist (*.m3u) Lista M3U (*.m3u) @@ -3842,17 +4036,17 @@ trace - Above + Profiling messages Caixas deixam você organizar a sua música, como você prefira! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3916,7 +4110,7 @@ trace - Above + Profiling messages Duplicating Crate Failed - + Falha ao duplicar a caixa @@ -3947,12 +4141,12 @@ trace - Above + Profiling messages Colaboradores antigos - + Official Website - + Donate @@ -4000,7 +4194,7 @@ trace - Above + Profiling messages License - + Licença @@ -4040,7 +4234,7 @@ trace - Above + Profiling messages Selects all tracks in the table below. - + Seleciona todas as faixas da tabela abaixo @@ -4050,7 +4244,7 @@ trace - Above + Profiling messages Runs beatgrid, key, and ReplayGain detection on the selected tracks. Does not generate waveforms for the selected tracks to save disk space. - + Executa a detecção da grade de batidas, do tom e do ReplayGain nas faixas selecionadas. Não gera ondas para as faixas selecionadas para salvar espaço no disco. @@ -4128,12 +4322,12 @@ Shortcut: Shift+F9 Determines the duration of the transition - + Determina a duração da transição. Seconds - + Segundos @@ -4199,7 +4393,7 @@ crossfader, so that the intro starts at full volume. Repeat - + Repetir @@ -4209,7 +4403,7 @@ crossfader, so that the intro starts at full volume. One deck must be stopped to enable Auto DJ mode. - + Um leitor deve ser parado para permitir o modo Auto DJ. @@ -4224,7 +4418,7 @@ crossfader, so that the intro starts at full volume. Displays the duration and number of selected tracks. - + Mostra a duração e número de faixas selecionadas. @@ -4243,7 +4437,8 @@ crossfader, so that the intro starts at full volume. 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. - + Adiciona uma faixa aleatoriamente das fontes de faixas (caixas) à fila Auto DJ. +Se não estão configuradas fontes de faixas, então a faixa é adicionada da biblioteca. @@ -4266,7 +4461,7 @@ If no track sources are configured, the track is added from the library instead. Beat Detection Preferences - + Preferências para a Detecção de Batida @@ -4286,7 +4481,9 @@ This can speed up beat detection on slower computers but may result in lower qua 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 batidas detectada pelo analisador em uma grade de batidas de tempo fixo. +Use esta configuração se suas faixas tem um tempo constante (como a maioria das músicas eletrônicas). +Frequentemente resulta em grades de batida de melhor qualidade, e não funciona direito em faixas que tem mudanças de tempo. @@ -4311,12 +4508,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Choose Analyzer - + Escolha o Analisador Analyzer Settings - + Configurações do Analisador @@ -4332,12 +4529,13 @@ Often results in higher quality beatgrids, but will not do well on tracks that h e.g. from 3rd-party programs or Mixxx versions before 1.11. (Not checked: Analyze only, if no beats exist.) - + ex. de programas de terceiros ou versões do Mixxx anteriores a 1.11 +(Não verificado: Analisar apenas, se não existirem batidas) Re-analyze beats when settings change or beat detection data is outdated - + Re-analisar batidas quando as configurações forem alteradas ou quando os dados de detecção de batida estiverem desatualizados @@ -4355,7 +4553,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Close - + Fechar @@ -4365,27 +4563,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 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. - + Dicas: Se você está mapeando um botão ou chave, apenas pressione ou vire uma vez. Para botões de girar e deslizantes, mova o controle em ambas as direções para melhores resultados. Toque apenas um controle de cada vez. Cancel - + Cancelar Advanced MIDI Options - + Opções MIDI Avançadas Switch mode interprets all messages for the control as button presses. - + Modo Switch interpreta todas as mensagens para o controlo como teclas de pressão. Switch Mode - + Modo Switch @@ -4395,27 +4593,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Soft Takeover - + Soft Takeover Reverses the direction of the control. - + Inverte a direção do controlo. Invert - + Inverter For jog wheels or infinite-scroll knobs. Interprets incoming messages in two's complement. - + Para jog wheels ou botões com rolagem infinita. Interpreta as mensagens em um complemento para dois. Jog Wheel / Select Knob - + Jog Wheel / Botão de Seleção @@ -4435,7 +4633,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Click anywhere in Mixxx or choose a control to learn - + Clique em qualquer lugar no Mixxx ou escolha um controle para aprender @@ -4450,22 +4648,22 @@ Often results in higher quality beatgrids, but will not do well on tracks that h If you manipulate the control, you should see the Mixxx user interface respond the way you expect. - + Se você manipular o controle, você deve ver a interface do Mixxx responder da maneira que você espera. Not quite right? - + Ainda não está perfeito? 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 o mapeamento não estiver a funcionar tente validar uma opção avançada abaixo e depois tente o controlo de novo. Ou clique repetir para redetetar o controlo midi. Didn't get any midi messages. Please try again. - + Não recebi nenhuma mensagem MIDI. Por favor tente de novo. @@ -4498,7 +4696,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 - + O controle que você clicou no Mixxx não pode ser mapeado. +Isso pode ser porque você está usando um tema antigo e esse controle não é mais suportado, ou você clicou em um controle que provê feedback visual e só pode ser mapeado em saídas como LEDs por meio de scripts. + +Você tentou mapear: %1,%2 @@ -4514,7 +4715,7 @@ You tried to learn: %1,%2 Developer Tools - + Ferramentas de Desenvolvedor @@ -4524,27 +4725,27 @@ You tried to learn: %1,%2 Dumps all ControlObject values to a csv-file saved in the settings path (e.g. ~/.mixxx) - + Despeja todos os valores ControlObject para um arquivo csv salvo na pasta de configurações (por exemplo ~/.mixxx) Dump to csv - + Descarga para csv Log - + Registo Search - + Pesquisa Stats - + Estatísticas @@ -4656,12 +4857,12 @@ You tried to learn: %1,%2 Minimum available tracks in Track Source - + Número mínimo de faixas disponíveis na Fonte de Faixas Auto DJ Preferences - + Preferências Auto DJ @@ -4676,13 +4877,13 @@ You tried to learn: %1,%2 % - + % Uncheck, to ignore all played tracks. - + Desmarque para ignorar todas as faixas tocadas. @@ -4692,7 +4893,7 @@ You tried to learn: %1,%2 Suspension period for track selection - + Período de suspensão para a seleção de faixas @@ -4702,7 +4903,7 @@ You tried to learn: %1,%2 Enable random track addition to queue - + Ativar adição de faixa aleatória à fila @@ -4712,7 +4913,7 @@ You tried to learn: %1,%2 Minimum allowed tracks before addition - + Mínimo de faixas permitidas antes da adição @@ -4738,124 +4939,141 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic - + Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Ação falhada - + You can't create more than %1 source connections. - + Não pode criar mais de %1 ligações fonte. - + Source connection %1 + Ligação fonte %1 + + + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder - + At least one source connection is required. - + É necessária pelo menos uma ligação fonte. - + Are you sure you want to disconnect every active source connection? - + Tem a certeza que quer desligar todas as ligações fonte ativas? - - + + Confirmation required - + Confirmação necessária - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Tem a certeza que quer apagar '%1'? - + Renaming '%1' Renomeando '%1' - + New name for '%1': - + Novo nome para '%1': - + Can't rename '%1' to '%2': name already in use - + Não pode renomear '%1' para '%2': nome já em uso @@ -4866,127 +5084,132 @@ Two source connections to the same server that have the same mountpoint can not Preferências da Transmissão Ao Vivo - + Mixxx Icecast Testing Teste de ligação do Mixxx ao IceCast - + Public stream Transmissão pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name - + Nome da transmissão - + 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. Devido à falhas em alguns clientes de reprodução, atualizar os metadados Ogg Vorbis dinamicamente pode causar pausas e desconexões nos ouvintes. Marque esta caixa para atualizar os metadados de qualquer jeito. Live Broadcasting source connections - + Ligações fonte Emissão em Direto Delete selected - + Apagar selecionadas Create new connection - + Criar nova ligação Rename selected - + Renomear selecionadas Disconnect all - + Desligar todas Turn on Live Broadcasting when applying these settings - + Ligar Emissão em Direto quando aplicar estas definições Settings for %1 + Definições para %1 + + + + Available fields: $artist, $title, $year, $album, $genre, $bpm - + Dynamically update Ogg Vorbis metadata. Atualizar dinamicamente os metadados Ogg Vorbis - + ICQ ICQ - + AIM AIM - + Website Página Web - + Live mix Mistura ao vivo - + IRC IRC - + Select a source connection above to edit its settings here - + Selecionar uma ligação fonte acima para editar as suas definições aqui - + Password storage Armazenamento Palavra Passe - + Plain text - + Texto simples - + Secure storage (OS keychain) - + Armazenamento seguro (Porta chaves do SO) - + Genre Gênero - + Use UTF-8 encoding for metadata. Use codificação UTF-8 para metadados - + Description Descrição @@ -5012,80 +5235,80 @@ Two source connections to the same server that have the same mountpoint can not Canais - + Server connection Ligação ao servidor - + Type Tipo - + Host Anfitrião (host) - + Login Iniciar Sessão - + Mount - + Montar - + Port Porto - + Password - + Palavra passe - + Stream info - + Informações do Fluxo Metadata - + Metadado - + Use static artist and title. - + Usar artista e título estáticos. - + Static title - + Título estático - + Static artist - + Artista estático Automatic reconnect - + Religar automático Time to wait before the first reconnection attempt is made. - + Tempo de espera antes da primeira tentativa de religação. seconds - + segundos @@ -5105,34 +5328,35 @@ Two source connections to the same server that have the same mountpoint can not Limit number of reconnection attempts - + Limitar número de tentativas de reconexão Maximum retries - + Máximo de tentativas Reconnect if the connection to the streaming server is lost. - + Religar se a ligação ao servidor de streaming estiver perdida. Enable automatic reconnect - + Ativar reconexão automática DlgPrefColors - - + + + By hotcue number - + Por número do hotcue - + Color @@ -5163,7 +5387,7 @@ Two source connections to the same server that have the same mountpoint can not Hotcue palette - + Paleta de hotcue @@ -5177,17 +5401,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5195,116 +5424,116 @@ associated with each key. DlgPrefController - + Apply device settings? Aplicar os parâmetros do dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Os seus parâmetros devem ser aplicados antes de iniciar o Assistente de Aprendizagem Aplicar os parâmetros e continuar? - + None Nenhum - + %1 by %2 %1 por %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Solução de Problemas - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Limpar Mapeamentos de Entrada - + Are you sure you want to clear all input mappings? - + Tem a certeza que deseja limpar todas os mapeamentos de entrada? - + Clear Output Mappings - + Limpar Mapeamentos de Saída - + Are you sure you want to clear all output mappings? - + Tem certeza de que deseja limpar todos os mapeamentos de saída? @@ -5320,102 +5549,107 @@ Aplicar os parâmetros e continuar? Activado - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descrição - + Support: Suporte: - + Screens preview - + Input Mappings Mapeamento de Entrada - - + + Search Pesquisa - - + + Add Adicionar - - + + Remove - + Remover @@ -5433,19 +5667,19 @@ Aplicar os parâmetros e continuar? - + Mapping Info - + Author: - + Autor: - + Name: - + Nome: @@ -5453,30 +5687,30 @@ Aplicar os parâmetros e continuar? Assistente de Aprendizagem (Só MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Limpar tudo - + Output Mappings - + Mapeamento de Saída @@ -5489,21 +5723,21 @@ Aplicar os parâmetros 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5523,7 +5757,7 @@ Aplicar os parâmetros e continuar? Mixxx did not detect any controllers. If you connected the controller while Mixxx was running you must restart Mixxx first. - + O Mixxx não detectou nenhum controlador. Se você conectou um controlador enquanto o Mixxx estava rodando, você precisa reiniciar o Mixxx primeiro. @@ -5543,12 +5777,12 @@ Aplicar os parâmetros e continuar? Resources - + Recursos 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. - + Controladores são dispositivos físicos que mandam sinais MIDI ou HID para o seu computador em uma conexão USB. Esses permitem que você controle o Mixxx de uma maneira mais tátil do que um teclado ou mouse. Controladores ligados que o Mixxx reconhece são mostrados na seção "Controladores" na barra lateral. @@ -5571,17 +5805,17 @@ Aplicar os parâmetros e continuar? 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 côr Locales determine country and language specific settings. - + A localização determina as configurações específicas de país e língua. @@ -5591,7 +5825,7 @@ Aplicar os parâmetros e continuar? Interface Preferences - + Preferências do Interface @@ -5606,7 +5840,7 @@ Aplicar os parâmetros e continuar? HiDPI / Retina scaling - + Escala HiDPI / Retina @@ -5633,6 +5867,16 @@ Aplicar os parâmetros e continuar? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5662,137 +5906,137 @@ Aplicar os parâmetros e continuar? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sem piscar) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semitom) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% - + 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -5802,7 +6046,7 @@ Aplicar os parâmetros e continuar? Deck Preferences - + Preferências Leitor @@ -5864,7 +6108,7 @@ Modo CUP: Elapsed - + Decorrido @@ -5879,7 +6123,7 @@ Modo CUP: Time Format - + Formato de tempo @@ -5893,7 +6137,11 @@ 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. - + Quando o analisador coloca automaticamente o ponto de início da introdução, +ele coloca-o no ponto de referência principal se o ponto de referência principal tiver sido definido anteriormente. +Isso pode ser útil para atualizar para o Mixxx 2.3 de versões anteriores. + +Se essa opção estiver desativada, o ponto de início da introdução é colocado automaticamente no primeiro som. @@ -5903,7 +6151,7 @@ If this option is disabled, the intro start point is automatically placed at the Track load point - + Ponto de carga de rastreamento @@ -5924,7 +6172,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Pressione Carregar duas vezes para clonar uma faixa que está tocando @@ -5957,7 +6205,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Current key - + Tom atual @@ -5967,12 +6215,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Permanent - + Permanente Temporary - + Temporário @@ -5987,17 +6235,17 @@ You can always drag-and-drop tracks on screen to clone a deck. Ramping sensitivity - + Sensibilidade da aceleração Pitch bend behavior - + Comportamento do pitch bend Original key - + Tom original @@ -6007,17 +6255,17 @@ You can always drag-and-drop tracks on screen to clone a deck. Speed/Tempo - + Velocidade/Tempo Key/Pitch - + Tom/Pitch Adjustment buttons: - + Ajustamento das teclas: @@ -6032,32 +6280,32 @@ You can always drag-and-drop tracks on screen to clone a deck. Coarse - + Grosso Fine - + Fino Make the speed sliders work like those on DJ turntables and CDJs where moving downward increases the speed - + Fazer os cursores de velocidade funcionar como os dos gira-discos e CDJs em que a movimentação para baixo aumenta a velocidade. Down increases speed - + Pra baixo aumenta a velocidade Slider range - + Extensão do cursor Adjusts the range of the speed (Vinyl "Pitch") slider. - + Ajusta a extensão do cursor de velocidade ("Pitch" do Vinil) @@ -6067,27 +6315,27 @@ You can always drag-and-drop tracks on screen to clone a deck. Smoothly adjusts deck speed when temporary change buttons are held down - + Suavemente ajusta a velocidade do deck quando os botões de mudança temporário são segurados Smooth ramping - + Rampa Keyunlock mode - + Modo desbloqueio de tecla Reset key - + Reiniciar tom Keep key - + Manter tecla @@ -6105,7 +6353,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Effects Preferences - + Preferências dos Efeitos @@ -6156,7 +6404,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Export - + Exportar @@ -6202,12 +6450,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Keep metaknob position - + Manter posição do metabotão Reset metaknob to effect default - + Reinicia metabotão para efeito padrão @@ -6217,7 +6465,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Version: - + Versão: @@ -6227,78 +6475,78 @@ You can always drag-and-drop tracks on screen to clone a deck. Author: - + Autor: Name: - + Nome: Type: - + Tipo: 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6308,7 +6556,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Key Notation Format Settings - + Configurações do Formato da Notação de Tom @@ -6319,7 +6567,7 @@ and allows you to pitch adjust them for harmonic mixing. Enable Key Detection - + Validar Deteção de Tom @@ -6329,7 +6577,7 @@ and allows you to pitch adjust them for harmonic mixing. Choose between different algorithms to detect keys. - + Escolher entre diferentes algoritmos para detetar os tons. @@ -6364,7 +6612,7 @@ and allows you to pitch adjust them for harmonic mixing. Key Notation - + Notação do Tom @@ -6389,17 +6637,17 @@ and allows you to pitch adjust them for harmonic mixing. Traditional - + Tradicional Custom - + Personalizado A - + @@ -6409,17 +6657,17 @@ and allows you to pitch adjust them for harmonic mixing. B - + Si C - + C Db - + Db @@ -6429,92 +6677,92 @@ and allows you to pitch adjust them for harmonic mixing. Eb - + Mib E - + E F - + F F# - + Fá# G - + Sol Ab - + Ab Am - + Lám Bbm - + Bbm Bm - + Bm Cm - + Dóm C#m - + C#m Dm - + Dm Ebm - + Ebm Em - + Em Fm - + Fám F#m - + F#m Gm - + Gm G#m - + Sol#m @@ -6525,67 +6773,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Examinar - + Item is not a directory or directory is missing - + 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. - + 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 Revincular o diretório de música para uma nova localização - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Selecionar a Fonte da Biblioteca @@ -6595,17 +6873,17 @@ and allows you to pitch adjust them for harmonic mixing. If removed, Mixxx will no longer watch this directory and its subdirectories for new tracks. - + Se removido, o Mixxx não vai mais poder procurar por novas faixas neste diretório e subdiretórios. Remove - + Remover Add a directory where your music is stored. Mixxx will watch this directory and its subdirectories for new tracks. - + Adicione um diretório onde sua música está guardada. O Mixxx vai procurar por novas faixas neste diretório e seus subdiretórios. @@ -6626,7 +6904,7 @@ and allows you to pitch adjust them for harmonic mixing. 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. - + Religar @@ -6634,264 +6912,269 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Formatos de ficheiro Audio - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History Histórico de Sessões - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: + Fonte da Biblioteca: + + + + Show scan summary dialog - + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px 500 px - + 250 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Altura da Linha da Biblioteca: - + Use relative paths for playlist export if possible usar o caminho relativo para exportação da lista de reprodução - + ... - + ... - + px - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Editar metadados após clicar faixa seleccionada - + Search-as-you-type timeout: - + Tempo limite de procura ao escrever: - + ms ms - + Load track to next available deck - + Carregar a faixa no próximo deck disponível - + External Libraries - + Bibliotecas Externas - + You will need to restart Mixxx for these settings to take effect. Você vai precisar reiniciar o Mixxx para que essas configurações tenham efeito. - + Show Rhythmbox Library Mostrar a biblioteca Rhythmbox - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Mostrar Biblioteca Banshee - + Show iTunes Library - + Mostrar a biblioteca iTunes - + Show Traktor Library Mostrar a biblioteca Traktor - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. - + Todas as bibliotecas externas mostradas são protegidas contra escrita. @@ -6899,7 +7182,7 @@ and allows you to pitch adjust them for harmonic mixing. Crossfader Preferences - + Preferências do Crossfader @@ -6909,7 +7192,7 @@ and allows you to pitch adjust them for harmonic mixing. Slow fade/Fast cut (additive) - + Atenuação lenta/Corte rápido (aditivo) @@ -6924,7 +7207,7 @@ and allows you to pitch adjust them for harmonic mixing. Scratching - + Scratching @@ -6939,7 +7222,7 @@ and allows you to pitch adjust them for harmonic mixing. Reverse crossfader (Hamster Style) - + Crossfader Invertido (Estilo Hamster) @@ -6949,12 +7232,12 @@ and allows you to pitch adjust them for harmonic mixing. Only allow EQ knobs to control EQ-specific effects - + Apenas deixar botões de EQ controlarem efeitos de EQ Uncheck to allow any effect to be loaded into the EQ knobs. - + Desmarque para deixar qualquer efeito ser carregado para os botões de EQ @@ -6964,7 +7247,7 @@ and allows you to pitch adjust them for harmonic mixing. Uncheck to allow different decks to use different EQ effects. - + Desmarque para deixar decks usarem diferentes efeitos de EQ @@ -6984,17 +7267,17 @@ and allows you to pitch adjust them for harmonic mixing. When checked, EQs are not processed, improving performance on slower computers. - + Quando marcado, os EQs não são processados, melhorando a performance em computadores lentos. Resets the equalizers to their default values when loading a track. - + Redefine os equalizadores para os seus valores padrão ao carregar uma faixa. Reset equalizers on track load - + Redefinir os equalizadores ao carregar uma faixa @@ -7025,13 +7308,13 @@ and allows you to pitch adjust them for harmonic mixing. 16 Hz - + 16 Hz 20.05 kHz - + 20.05 kHz @@ -7054,7 +7337,7 @@ and allows you to pitch adjust them for harmonic mixing. Modplug Preferences - + Preferências Modplug @@ -7064,7 +7347,7 @@ and allows you to pitch adjust them for harmonic mixing. Show Advanced Settings - + Mostrar Configurações Avançadas @@ -7093,12 +7376,12 @@ and allows you to pitch adjust them for harmonic mixing. Bass Expansion - + Expansão de Baixos Bass Range: - + Alcance dos Graves: @@ -7138,12 +7421,12 @@ and allows you to pitch adjust them for harmonic mixing. 10ms - + 10ms 256 - + 256 @@ -7153,12 +7436,12 @@ and allows you to pitch adjust them for harmonic mixing. 100Hz - + 100Hz 250ms - + 250ms @@ -7234,33 +7517,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Seleccione a pasta das gravações - - + + Recordings directory invalid - + Diretório de gravações inválido - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7278,43 +7561,55 @@ and allows you to pitch adjust them for harmonic mixing. Navegar... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Qualidade - + Tags Etiquetas - + Title Título - + Author Autor - + Album - + Album - + Output File Format Formato de Saída do Arquivo - + Compression Compressão - + Lossy Com perdas @@ -7329,12 +7624,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Nível de Compressão - + Lossless Sem perdas @@ -7465,172 +7760,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Padrão (atraso longo) - + Experimental (no delay) Experimental (sem atraso) - + Disabled (short delay) Desativada (atraso curto) - + Soundcard Clock Relógio da Placa de Som - + Network Clock - + Relógio da Rede - + Direct monitor (recording and broadcasting only) - + Monição direta (apenas gravação e emissão) - + Disabled Desativado - + Enabled Activado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) auto (<= 1024 quadros/período) - + 2048 frames/period 2048 quadros/período - + 4096 frames/period 4096 quadros/período - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. - + As entradas de microfone estão fora de tempo no sinal gravar e emitir comparado com o que ouve. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Medir a latência de ida e volta e introduza-a acima para Compensação da Latência do Microfone de maneira a alinhar o tempo do microfone. - + Refer to the Mixxx User Manual for details. - + Consulte o Manual do Utilizador do Mixxx para detalhes. - + Configured latency has changed. - + A latência configurada foi alterada. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Volta a medir a latência de ida e volta e introduza-a acima para Compensação da Latência do Microfone de maneira a alinhar o tempo do microfone. - + Realtime scheduling is enabled. O agendamento em tempo real está ativado. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Erro de configuração @@ -7650,7 +7950,7 @@ The loudness target is approximate and assumes track pregain and main output lev Sample Rate - + Frequência de Amostragem @@ -7660,12 +7960,12 @@ The loudness target is approximate and assumes track pregain and main output lev Engine Clock - + Relógio Motor Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Use o relógio da placa de som para montagens com audiência ao vivo e a menor latência.<br>Use o relógio de rede para emissões sem audiência ao vivo. @@ -7680,12 +7980,12 @@ The loudness target is approximate and assumes track pregain and main output lev Microphone Monitor Mode - + Modo Monição Microfone Microphone Latency Compensation - + Compensação da Latência do Microfone @@ -7694,22 +7994,27 @@ The loudness target is approximate and assumes track pregain and main output lev ms milliseconds + ms + + + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - + 20 ms 20 ms - + Buffer Underflow Count Contagem insuficiente no tampão - + 0 - + 0 @@ -7732,12 +8037,12 @@ The loudness target is approximate and assumes track pregain and main output lev Entrada - + System Reported Latency Latência Relatada pelo Sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente o buffer de áudio se o contador de esvaziamentos aumentar ou se você ouvir estouros na reprodução. @@ -7767,7 +8072,7 @@ The loudness target is approximate and assumes track pregain and main output lev Dicas e Diagnóstico - + Downsize your audio buffer to improve Mixxx's responsiveness. Diminua o buffer de áudio para melhorar a capacidade de resposta do Mixxx. @@ -7814,7 +8119,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configuração Vinilo - + Show Signal Quality in Skin Mostrar a qualidade do sinal no tema @@ -7841,7 +8146,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinyl Type - + Tipo do Vinil @@ -7850,46 +8155,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + Qualidade do Sinal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Alimentado por xwax - + Hints Dicas - + Select sound devices for Vinyl Control in the Sound Hardware pane. Selecione dispositivos de som para o Controle por Vinil no painel do Hardware de Som. @@ -7897,58 +8207,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrado - + HSV - + HSV - + RGB - + RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + 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. @@ -7966,24 +8276,19 @@ The loudness target is approximate and assumes track pregain and main output lev Número de imagens por segundo - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Mostra qual a versão OpenGL que é suportada pela plataforma actual. - - Normalize waveform overview - - - - + Average frame rate - + Taxa média de fotogramas @@ -7997,7 +8302,7 @@ The loudness target is approximate and assumes track pregain and main output lev Nível de zoom padrão - + Displays the actual frame rate. Mostra a velocidade de refrescamento corrente @@ -8009,7 +8314,7 @@ The loudness target is approximate and assumes track pregain and main output lev End of track warning - + Aviso de faixa acabando @@ -8019,12 +8324,12 @@ The loudness target is approximate and assumes track pregain and main output lev Highlight the waveforms when the last seconds of a track remains. - + Realçar as formas de onda quando faltam os últimos segundos da faixa. seconds - + segundos @@ -8032,7 +8337,7 @@ The loudness target is approximate and assumes track pregain and main output lev Baixa - + Show minute markers on waveform overview @@ -8049,7 +8354,7 @@ The loudness target is approximate and assumes track pregain and main output lev Middle - + Médios @@ -8077,10 +8382,11 @@ The loudness target is approximate and assumes track pregain and main output lev Ganho visual geral - + 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. - + A forma de onda mostra o envoltório da onda na faixa inteira. +Selecione entre tipos diferentes de visualizações da forma de onda, o que difere principalmente no nível de detalhe mostrado na forma de onda. @@ -8091,12 +8397,13 @@ Select from different types of displays for the waveform overview, which differ 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. - + A forma de onda mostra o envoltório da onda na faixa junto à posição corrente de leitura. +Selecione entre tipos diferentes de visualizações da forma de onda, o que difere principalmente no nível de detalhe mostrado na forma de onda. fps - + fps @@ -8144,29 +8451,29 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + Caching - + 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. O Mixxx coloca as ondas das suas faixas no disco na primeira vez que você carrega uma faixa. Isso reduz o uso da CPU quando você estiver tocando ao vivo, porém requer mais espaço no disco. - + Enable waveform caching - + Ativa o caching das Waveforms - + Generate waveforms when analyzing library Gerar formas de onda, ao analisar a biblioteca Beat grid opacity - + Opacidade da grelha de batidas @@ -8175,7 +8482,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8187,7 +8494,7 @@ Select from different types of displays for the waveform, which differ primarily Set amount of opacity on beat grid lines. - + Define a quantidade de opacidade das linhas da grelha de batida. @@ -8197,23 +8504,69 @@ Select from different types of displays for the waveform, which differ primarily Play marker position - + Marcador da posição de reprodução Moves the play marker position on the waveforms to the left, right or center (default). + Move o marcador da posição de reprodução nas formas de onda para a esquerda, direita ou centro (padrão). + + + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted - + Overview Waveforms - - Clear Cached Waveforms + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + Clear Cached Waveforms + Limpar Ondas no Cache + DlgPreferences @@ -8225,7 +8578,7 @@ Select from different types of displays for the waveform, which differ primarily Controllers - + Controladores @@ -8240,7 +8593,7 @@ Select from different types of displays for the waveform, which differ primarily Waveforms - + Formas de Onda @@ -8250,12 +8603,12 @@ Select from different types of displays for the waveform, which differ primarily Auto DJ - + Auto DJ Decks - + Leitores @@ -8290,7 +8643,7 @@ Select from different types of displays for the waveform, which differ primarily &Ok Preferences standard buttons: consider the other buttons to choose a unique Alt hotkey (&) - + &Ok @@ -8310,7 +8663,7 @@ Select from different types of displays for the waveform, which differ primarily Key Detection - + Detecção de Tom @@ -8335,7 +8688,7 @@ Select from different types of displays for the waveform, which differ primarily Modplug Decoder - + Decodificador do Modplug @@ -8418,7 +8771,7 @@ Select from different types of displays for the waveform, which differ primarily Current cue color - + Cor da pista atual @@ -8466,7 +8819,7 @@ Select from different types of displays for the waveform, which differ primarily MusicBrainz - + MusicBrainz @@ -8477,13 +8830,13 @@ Select from different types of displays for the waveform, which differ primarily Track - + Faixa Year - + Ano @@ -8516,13 +8869,13 @@ Select from different types of displays for the waveform, which differ primarily 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. - + Enviar @@ -8537,7 +8890,7 @@ Select from different types of displays for the waveform, which differ primarily Current Cover Art - + Capa de Álbum Atual @@ -8552,7 +8905,7 @@ Select from different types of displays for the waveform, which differ primarily Retry - + Tentar de novo @@ -8562,7 +8915,7 @@ Select from different types of displays for the waveform, which differ primarily &Next - + Segui&nte @@ -8582,12 +8935,12 @@ Select from different types of displays for the waveform, which differ primarily &Close - + &Fechar Original tags - + Etiquetas originais @@ -8602,7 +8955,7 @@ Select from different types of displays for the waveform, which differ primarily Suggested tags - + Etiquetas sugeridas @@ -8658,12 +9011,12 @@ This can not be undone! Export Tracks - + Exportar Faixas Exporting Tracks - + Exportando Faixas @@ -8699,7 +9052,7 @@ This can not be undone! BPM: - + Location: Localização: @@ -8711,32 +9064,32 @@ This can not be undone! Comments - + Comentários - + BPM BPM - + Sets the BPM to 75% of the current value. - + Define o BPM para 75% do valor presente. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. - + Define o BPM para 50% do valor atual. - + Displays the BPM of the selected track. - + Exibe o BPM da faixa selecionada. @@ -8751,7 +9104,7 @@ This can not be undone! Composer - + Compositor @@ -8789,49 +9142,49 @@ This can not be undone! Gênero - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. - + Define o BPM para 200% do valor atual. - + Double BPM Duplicar o BPM - + Halve BPM Reduzir o BPM a metade - + Clear BPM and Beatgrid Limpar o Tempo (BPM) e a grelha rítmica - + Move to the previous item. "Previous" button Mover para o item anterior. - + &Previous &Anterior - + Move to the next item. "Next" button - + Move para o próximo item. - + &Next Segui&nte @@ -8843,7 +9196,7 @@ This can not be undone! Import Metadata from MusicBrainz - + Importar Metadados de MusicBrainz @@ -8856,12 +9209,12 @@ This can not be undone! cor - + Date added: - + Open in File Browser Abrir no Navegador de Ficheiros @@ -8871,102 +9224,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: Faixa BPM: - + 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. - + Assume constant tempo - + Assumir tempo constante - + Sets the BPM to 66% of the current value. - + Define o BPM para 66% do valor atual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + Define o BPM para 150% do valor atual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. - + Define o BPM para 133% do valor atual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Pressione de acordo com a batida para definir o BPM para velocidade que você está tocando. - + Tap to Beat Bata o ritmo - + Hint: Use the Library Analyze view to run BPM detection. Sugestão: Utilize a vista de Análise da Biblioteca para executar a detecção do BPM. - + Save changes and close the window. "OK" button Salva as alterações e fechar a janela. - + &OK &OK - + Discard changes and close the window. "Cancel" button - + Rejeita as alterações e fecha a janela. - + Save changes and keep the window open. "Apply" button - + Salvar as alterações e deixar a janela aberta. - + &Apply - + &Aplicar - + &Cancel &Cancelar - + (no color) @@ -9123,7 +9481,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9325,27 +9683,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9375,7 +9733,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Question - + Questão @@ -9383,7 +9741,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist - + Artista @@ -9431,7 +9789,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Album - Álbum + Album @@ -9560,15 +9918,15 @@ 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 @@ -9580,57 +9938,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9638,62 +9996,62 @@ para OpenGL. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9703,22 +10061,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9834,7 +10192,7 @@ Do you really want to overwrite it? Your mixxxdb.sqlite file was created by a newer version of Mixxx and is incompatible. - + O seu arquivo mixxxdb.sqlite foi criado por uma versão nova do Mixxx e é incompatível. @@ -9855,50 +10213,50 @@ Do you really want to overwrite it? Faixas escondidas - + Export to Engine DJ - + Tracks - + Faixas 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 @@ -9908,209 +10266,211 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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>Tentar novamente</b> depois de corrigir um problema - + 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. - + 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 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 auxiliary. Do you want to select an input device? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10126,13 +10486,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Bloquear - - + + Playlists Listas de reprodução @@ -10142,58 +10502,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 @@ -10292,58 +10657,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 - + Depois - + 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 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 @@ -10379,7 +10745,7 @@ Do you want to scan your library for cover files now? Unknown (0x%1) - + Desconhecido (0x%1) @@ -10389,12 +10755,12 @@ Do you want to scan your library for cover files now? Invert - + Inverter Rot64 - + Rot64 @@ -10419,7 +10785,7 @@ Do you want to scan your library for cover files now? Switch - + Comutador @@ -10434,7 +10800,7 @@ Do you want to scan your library for cover files now? SelectKnob - + SelectKnob @@ -10444,7 +10810,7 @@ Do you want to scan your library for cover files now? Script - + Script @@ -10457,69 +10823,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier - + Booth - + Audio path indetifier + Cabine - + Headphones + Audio path indetifier Auscultadores - + Left Bus - + Audio path indetifier + Barramento Esquerdo - + Center Bus + Audio path indetifier Barramento Central - + Right Bus + Audio path indetifier Barramento Direito - + Invalid Bus - + Audio path indetifier + Barramento Inválido - + Deck + Audio path indetifier Leitor - + Record/Broadcast - + Audio path indetifier + Gravar/Emitir - + Vinyl Control + Audio path indetifier Controlo Vinilo - + Microphone + Audio path indetifier Microfone - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Caminho desconhecido tipo %1 @@ -10535,7 +10914,7 @@ Do you want to scan your library for cover files now? Mixxx Needs Access to: %1 - + Mixxx Precisa Acessar: %1 @@ -10569,7 +10948,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Bit Depth - + Profundidade de Bit @@ -10580,17 +10959,17 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Adds noise by the reducing the bit depth and sample rate - + Adiciona ruído pela redução da Profundidade de Bit e taxa de amostragem The bit depth of the samples - + A profundidade de bit das amostras Downsampling - + Decimação @@ -10600,13 +10979,13 @@ 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 - + A taxa de amostragem para a qual este sinal será reduzida Echo - + Eco @@ -10614,13 +10993,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Time - + Tempo Ping Pong - + Pingue Pongue @@ -10628,12 +11007,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Send - + Enviar How much of the signal to send into the delay buffer - + Quantidade de sinal a enviar para o buffer de atraso @@ -10641,12 +11020,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Feedback - + Retorno Stores the input signal in a temporary buffer and outputs it after a short time - + Guarda o sinal de entrada num buffer temporário e fá-lo sair após um pequeno tempo. @@ -10654,17 +11033,19 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Delay time 1/8 - 2 beats if tempo is detected 1/8 - 2 seconds if no tempo is detected - + Tempo de atraso +1/8 - 2 batidas se o BPM tiver sido detetado +1/8 - 2 segundos se o BPM não tiver sido detetado Amount the echo fades each time it loops - + Quantidade de eco que desaparece cada vez que loopa How much the echoed sound bounces between the left and right sides of the stereo field - + Quanto do sinal ecoado ressalta entre os os lados esquerdo e direito do campo estéreo @@ -10679,7 +11060,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. - + Arredonda o parâmetro Tempo para o 1/4 de batida mais próxima. @@ -10692,28 +11073,28 @@ 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. - + Quando o parâmetro Quantização está ativo, divide o parâmetro Tempo arredondado a 1/4 de batida, por 3. Filter - + Filtro Allows only high or low frequencies to play. - + Permite tocar apenas as altas ou baixas frequências. Low Pass Filter Cutoff - + Corte Filtro Passa Baixo @@ -10725,7 +11106,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Corner frequency ratio of the low pass filter - + Frequência de corte do filtro passa baixo @@ -10736,12 +11117,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Resonance of the filters Default: flat top - + Ressonancia dos filtros +Padrão: Topo plano High Pass Filter Cutoff - + Corte Filtro Passa Alto @@ -10753,7 +11135,7 @@ Default: flat top Corner frequency ratio of the high pass filter - + Frequência de corte do filtro passa alto @@ -10761,7 +11143,7 @@ Default: flat top Depth - + Profundidade @@ -10773,7 +11155,7 @@ Default: flat top Speed - + Velocidade @@ -10784,58 +11166,61 @@ Default: flat top Mixes the input with a delayed, pitch modulated copy of itself to create comb filtering - + Mistura a entrada com uma cópia de si mesma, atrasada e modulada em tonalidade para criar uma filtragem pente 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 - + Velocidade do LFO (oscilador de baixa frequência) +32 - 1/4 batidas arredondadas para 1/2 batida por ciclo LFO se o BPM tiver sido detetado +1/32 - 4 Hz se o BPM não tiver sido detetado Delay amplitude of the LFO (low frequency oscillator) - + Amplitude do atraso do LFO (oscilador de baixa frequência). Delay offset of the LFO (low frequency oscillator). With width at zero, this allows for manually sweeping over the entire delay range. - + Alinhamento do atraso do LFO (oscilador de baixa frequência). +Com a largura a zero, permite o varrimento manual ao longo de toda a extensão do atraso. Regeneration - + Regeneração Regen - + Regerar How much of the delay output is feed back into the input - + Quantidade da saída atrasada que é retornada para a entrada Intensity of the effect - + Intensidade do efeito Divide rounded 1/2 beats of the Period parameter by 3. - + Divide o parâmetro Período, arredondado a 1/2 batidas, por 3. Mix - + Mistura @@ -10845,50 +11230,52 @@ With width at zero, this allows for manually sweeping over the entire delay rang Width - + Largura - + Metronome - + Metrónomo - + + The Mixxx Team - + Adds a metronome click sound to the stream - + Adiciona o som dum clique de metrónomo à stream - + BPM BPM - + Set the beats per minute value of the click sound - + Define o valor do bpm do som do clique - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved - + Sincroniza o BPM com a faixa, se este puder ser obtido - + + Gain - + Set the gain of metronome click sound @@ -10898,7 +11285,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Period - + Período @@ -10909,34 +11296,36 @@ With width at zero, this allows for manually sweeping over the entire delay rang Bounce the sound left and right across the stereo field - + Balança o som entre a esquerda e direita ao longo do campo estéreo 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 - + Velocidade com que o sinal vai dum lado para o outro +1/4 - 4 batidas arredondado para 1/2 batidas se o BPM tiver sido detetado +1/4 - 4 segundos se o BPM não tiver sido detetado Smoothing - + Suavização Smooth - + Suave How smoothly the signal goes from one side to the other - + Suavidade com que o sinal vai de um lado para o outro How far the signal goes to each side - + Até onde o sinal vai em cada lado @@ -10946,34 +11335,35 @@ 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 - + Simula o som do sinal sendo refletido nas paredes duma sala Decay - + Declínio Lower decay values cause reverberations to fade out more quickly. - + Valores de declínio baixos causam o desvanecimento das reverberações mais rápido. Bandwidth of the low pass filter at the input. Higher values result in less attenuation of high frequencies. - + Largura de banda do filtro passa baixo na entrada. +Valores mais altos resultam em menos atenuação das altas frequências. How much of the signal to send in to the effect - + Quantidade do sinal a enviar para o efeito Bandwidth - + Largura de Banda @@ -10984,12 +11374,12 @@ Higher values result in less attenuation of high frequencies. Damping - + Amortecimento Higher damping values cause high frequencies to decay more quickly than low frequencies. - + Valores maiores de amortecimento fazem com que frequências altas morram mais rápido do que frequências baixas. @@ -11018,7 +11408,7 @@ Higher values result in less attenuation of high frequencies. Mid - + Médios @@ -11038,7 +11428,7 @@ Higher values result in less attenuation of high frequencies. Gain for Mid Filter - + Ganho para Filtro Médio @@ -11069,7 +11459,7 @@ Higher values result in less attenuation of high frequencies. Kill the High Filter - + Matar o Filtro Agudo @@ -11084,32 +11474,32 @@ Higher values result in less attenuation of high frequencies. Graphic EQ - + EQ Gráfico An 8-band graphic equalizer based on biquad filters - + Um equalizador gráfico de 8 bandas baseado em filtros biquad Gain for Band Filter %1 - + Ganho para o Filtro de Banda %1 Moog Ladder 4 Filter - + Filtro Moog Ladder 4 Moog Filter - + Filtro Moog A 4-pole Moog ladder filter, based on Antti Houvilainen's non linear digital implementation - + Um filtro Moog ladder de 4 polos, baseado na implementação digital não linear de Antti Houvilainen @@ -11120,17 +11510,17 @@ Higher values result in less attenuation of high frequencies. Resonance - + Ressonância Resonance of the filters. 4 = self oscillating - + Ressonância dos filtros. 4 = auto oscilante Gain for Low Filter (neutral at 1.0) - + Ganho para Filtro de Baixos (neutro a 1.0) @@ -11153,24 +11543,26 @@ Higher values result in less attenuation of high frequencies. Stages - + Estágios Mixes the input signal with a copy passed through a series of all-pass filters to create comb filtering - + Mistura o sinal de entrada com uma cópia passada através de uma série de filtros para criar uma filtragem em pente 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 - + Período do LFO (oscilador de baixa frequência) +1/4 - 4 batidas arrendondadas a 1/2 batida se o BPM tiver sido detetado +1/4 - 4 segundos se o BPM não tiver sido detetado Controls how much of the output signal is looped - + Controla o quanto do sinal da saída é repetido @@ -11178,27 +11570,27 @@ Higher values result in less attenuation of high frequencies. Range - + Extensão Controls the frequency range across which the notches sweep. - + Controla a faixa de frequências que o filtro elimina banda vai atuar. Number of stages - + Número de estágios Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others - + Define os LFOs (osciladores de baixa frequência) para os canais esquerdo e direito, desfasados uns com os outros %1 minutes - + %1 minutos @@ -11218,12 +11610,12 @@ Higher values result in less attenuation of high frequencies. Ctrl+u - + Ctrl+u Ctrl+i - + Ctrl+i @@ -11233,7 +11625,7 @@ Higher values result in less attenuation of high frequencies. Ctrl+Shift+O - + Ctrl+Shift+O @@ -11258,12 +11650,12 @@ Higher values result in less attenuation of high frequencies. A Bessel 8th-order filter isolator with Lipshitz and Vanderkooy mix (bit perfect unity, roll-off -48 dB/octave). - + Um filtro isolador Bessel de 8ª ordem com mixagem Lipshitz e Vanderkooy (unidade perfeita bit a bit, com roll-off de -48db/oitava). LinkwitzRiley8 Isolator - + LinkwitzRiley8 Isolator @@ -11273,7 +11665,7 @@ Higher values result in less attenuation of high frequencies. A Linkwitz-Riley 8th-order filter isolator (optimized crossover, constant phase shift, roll-off -48 dB/octave). - + Um filtro isolador Linkwitz-Riley de 8ª order (crossover otimizado, mudança de fase constante, com roll-off de -48 dB/oitava). @@ -11283,7 +11675,7 @@ Higher values result in less attenuation of high frequencies. BQ EQ - + BQ EQ @@ -11293,7 +11685,7 @@ Higher values result in less attenuation of high frequencies. Device not found - + Dispositivo não encontrado @@ -11303,7 +11695,7 @@ Higher values result in less attenuation of high frequencies. BQ EQ/ISO - + BQ EQ/ISO @@ -11313,7 +11705,7 @@ Higher values result in less attenuation of high frequencies. Loudness Contour - + Curva de Loudness @@ -11325,33 +11717,33 @@ Higher values result in less attenuation of high frequencies. Amplifies low and high frequencies at low volumes to compensate for reduced sensitivity of the human ear. - + Amplifica frequências altas e baixas em volumes baixos para compensar pela sensitividade reduzida do ouvido humano. Set the gain of the applied loudness contour - + Define o ganho da curva de loudness aplicada Use Gain - + Usar Ganho Follow Gain Knob - + Seguir Botão de Ganho This stream is online for testing purposes! - + Esta stream está online para teste! Live Mix - + Mixagem Ao Vivo @@ -11369,18 +11761,18 @@ Higher values result in less attenuation of high frequencies. Bit depth - + Profundidade de bit Bitrate Mode - + Modo da Taxa de Bits 32 bits float - + 32 bits flutuante @@ -11392,33 +11784,33 @@ Higher values result in less attenuation of high frequencies. Adjust the left/right balance and stereo width - + Ajusta o balanço esquerda/direita e a largura estéreo Adjust balance between left and right channels - + Ajusta o balanço entre os canais esquerdo e direito Mid/Side - + Centro/Lado Bypass Fr. - + Ignorar Fr. Bypass Frequency - + Ignorar Frequência Stereo Balance - + Balanço Estéreo @@ -11426,22 +11818,25 @@ Higher values result in less attenuation of high frequencies. Fully left: mono Fully right: only side ambiance Center: does not change the original signal. - + Ajusta a amplitude estéreo alterando o balanço do sinal entre centro e lado. +Tudo esquerda: mono +Tudo direita: apenas o lado ambiente +Centro: não altera o sinal original. Frequencies below this cutoff are not adjusted in the stereo field - + As frequências abaixo deste ponto de corte não são ajustadas no campo estéreo Parametric Equalizer - + Equalizador Paramétrico Param EQ - + EQ Param @@ -11453,71 +11848,75 @@ It is designed as a complement to the steep mixing equalizers. Gain 1 - + Ganho 1 Gain for Filter 1 - + Ganho para o 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. - + Controla a largura de banda do Filtro 1. +Um Q mais baixo afecta uma banda mais larga de frequências, +um Q mais alto afecta uma banda mais estreita de frequências. Center 1 - + Centro 1 Center frequency for Filter 1, from 100 Hz to 14 kHz - + Frequência central para o Filtro 1, de 100 Hz a 14 kHz Gain 2 - + Ganho 2 Gain for Filter 2 - + Ganho para o 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. - + Controla a largura de banda do Filtro 2. +Um Q mais baixo afecta uma banda mais larga de frequências, +um Q mais alto afecta uma banda mais estreita de frequências. Center 2 - + Centro 2 Center frequency for Filter 2, from 100 Hz to 14 kHz - + Frequência central para o Filtro 2, de 100 Hz a 14 kHz @@ -11528,72 +11927,79 @@ a higher Q affects a narrower band of frequencies. Cycles the volume up and down - + Sobe e desce o volume num ciclo How much the effect changes the volume - + Até que ponto o efeito altera o volume Rate - + Taxa Rate of the volume changes 4 beats - 1/8 beat if tempo is detected 1/4 Hz - 8 Hz if no tempo is detected - + Taxa das alterações do volume +4 batidas - 1/8 batida se o BPM tiver sido detetado +1/4 Hz - 8 Hz se o BPM não tiver sido detetado Width of the volume peak 10% - 90% of the effect period - + Largura do pico de volume +10% - 90% do período do efeito Shape of the volume modulation wave Fully left: Square wave Fully right: Sine wave - + Forma da onda de modulação do volume +Tudo esquerda: Onda quadrada +Tudo direita: Onda sinusoidal When the Quantize parameter is enabled, divide the effect period by 3. - + Quando o parâmetro Quantização está ativo, divide o período do efeito por 3. Waveform - + Forma de Onda 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 - + Desloca a posição do pico de volume dentro do período +Tudo esquerda: início do período do efeito +Tudo direita: fim do período do efeito Round the Rate parameter to the nearest whole division of a beat. - + Aproxima o parâmetro Taxa à divisão inteira mais próxima de uma batida. Triplet - + Terceto @@ -11672,14 +12078,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11817,7 +12223,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Passagem @@ -11885,15 +12291,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11922,6 +12399,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11932,11 +12410,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11948,11 +12428,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11981,12 +12463,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12021,42 +12503,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12074,7 +12556,7 @@ may introduce a 'pumping' effect and/or distortion. Low Disk Space Warning - + Aviso de Pouco Espaço em Disco @@ -12089,17 +12571,17 @@ may introduce a 'pumping' effect and/or distortion. Could not create audio file for recording! - + Não foi possível criar o arquivo de áudio para a gravação! Ensure there is enough free disk space and you have write permission for the Recordings folder. - + Certifique-se de que há espaço livre suficiente em disco e que você tem permissão para salvar arquivos na sua pasta de gravações. You can change the location of the Recordings folder in Preferences -> Recording. - + Pode alterar o local da pasta Gravações em Preferências -> Gravação. @@ -12158,7 +12640,7 @@ may introduce a 'pumping' effect and/or distortion. Memory cues - + Cues de memória @@ -12317,193 +12799,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem O Mixxx encontrou um problema - + Could not allocate shout_t Não pode alocar shout_t - + Could not allocate shout_metadata_t Não pode alocar shout_metadata_t - + Error setting non-blocking mode: Erro na configuração do modo não-blocante - + Error setting tls mode: - + Error setting hostname! Erro na definição do nome do anfitrião! - + Error setting port! Erro na configuração da porta! - + Error setting password! Erro na definição da palavra chave! - + Error setting mount! Erro na configuração do montar! - + Error setting username! Erro na definição do nome de utilizador! - + Error setting stream name! Erro na definição do nome de "stream"! - + Error setting stream description! Erro na definição da descrição de "stream"! - + Error setting stream genre! Erro na definição do género do "stream"! - + Error setting stream url! Erro na definição da URL do "stream"! - + Error setting stream IRC! - + Erro a definir a stream IRC! - + Error setting stream AIM! - + Erro a definir a stream AIM! - + Error setting stream ICQ! - + Erro a definir a stream ICQ! - + Error setting stream public! - + Erro ao tornar a stream pública! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Erro na definição do débito - + Error: unknown server protocol! Erro: protocolo do servidor desconhecido! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Erro na configuração do protocolo! - + Network cache overflow - + Overflow do cache da rede - + Connection error - + Erro de ligação - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Uma das ligações de Emissão em Direto apresentou este erro:<br><b>Erro com a ligação '%1':</b><br> - + Connection message - + Mensagem da ligação - + <b>Message from Live Broadcasting connection '%1':</b><br> - + <b>Mensagem da ligação Emissão em Direto '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. A conexão com o servidor de streaming foi perdida e %1 tentativas de reconectar falharam. - + Lost connection to streaming server. - + A conexão com o servidor de streaming foi perdida. - + Please check your connection to the Internet. - + Por favor, verifique a sua conecção à internet. - + Can't connect to streaming server - + Não se consegue ligar ao servidor de streaming. - + Please check your connection to the Internet and verify that your username and password are correct. Queira verificar a sua ligação à Internet e que a sua identificação e palavra passe estão correctas. @@ -12511,33 +12993,33 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered - + Filtrado SoundManager - - + + a device um dispositivo - + An unknown error occurred Ocorreu um erro desconhecido - + Two outputs cannot share channels on "%1" - + Duas saídas não podem compartilhar o canal "%1" - + Error opening "%1" - + Erro abrindo "%1" @@ -12550,7 +13032,7 @@ may introduce a 'pumping' effect and/or distortion. Count - + Contagem @@ -12565,7 +13047,7 @@ may introduce a 'pumping' effect and/or distortion. Sum - + Soma @@ -12590,7 +13072,7 @@ may introduce a 'pumping' effect and/or distortion. Standard Deviation - + Desvio Padrão @@ -12661,7 +13143,7 @@ may introduce a 'pumping' effect and/or distortion. loop active - + loop ativo @@ -12671,7 +13153,7 @@ may introduce a 'pumping' effect and/or distortion. Effects within the chain must be enabled to hear them. - + Os efeitos dentro da cadeia devem estar ativados para serem ouvidos. @@ -12701,12 +13183,12 @@ may introduce a 'pumping' effect and/or distortion. Scroll to change the waveform zoom level. - + Role para modificar o zoom das ondas. Waveform Zoom Out - + Reduzir Forma de Onda @@ -12720,7 +13202,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vinilo em rotação @@ -12732,7 +13214,7 @@ may introduce a 'pumping' effect and/or distortion. Right click to show cover art of loaded track. - + Clique direito para mostrar a capa do disco da faixa carregada. @@ -12747,7 +13229,7 @@ may introduce a 'pumping' effect and/or distortion. (too loud for the hardware and is being distorted). - + (Muito forte para o hardware e a ser distorcido) @@ -12792,7 +13274,7 @@ may introduce a 'pumping' effect and/or distortion. Indicates when the signal on the auxiliary is clipping, - + Indica quando o sinal auxiliar está clipando. @@ -12802,22 +13284,22 @@ may introduce a 'pumping' effect and/or distortion. Adjusts the volume of the selected channel. - + Ajusta o volume do canal seleccionado. Booth Gain - + Ganho Cabine Adjusts the booth output gain. - + Ajusta o ganho de saída para a cabine. Crossfader - + Crossfader @@ -12837,12 +13319,12 @@ may introduce a 'pumping' effect and/or distortion. Headphone Gain - + Ganho do Fone Adjusts the headphone output gain. - + Ajusta o ganho da saída do fone. @@ -12857,12 +13339,12 @@ may introduce a 'pumping' effect and/or distortion. Adjust the Headphone Mix so in the left channel is not the pure cueing signal. - + Ajusta a Mistura do Auscultador de maneira que no canal esquerdo não está só o sinal puro de escuta. Microphone - + Microfone @@ -12882,7 +13364,7 @@ may introduce a 'pumping' effect and/or distortion. Vinyl Control - + Controlo Vinilo @@ -12902,19 +13384,19 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Capa Show/hide Cover Art. - + Mostrar/ocultar Capa de Disco Toggle 4 Decks - + Ligar/Desligar 4 Decks @@ -12924,32 +13406,32 @@ may introduce a 'pumping' effect and/or distortion. Show Library - + Mostrar Biblioteca Show or hide the track library. - + Mostra ou oculta a biblioteca da faixa. Show Effects - + Mostrar Efeitos Show or hide the effects. - + Mostra ou oculta os efeitos. Toggle Mixer - + Alternar Misturador Show or hide the mixer. - + Mostra ou oculta o misturador. @@ -12974,7 +13456,7 @@ may introduce a 'pumping' effect and/or distortion. Adjusts the pre-fader microphone gain. - + Ajusta o ganho do microfone antes do controlador de transições. @@ -12999,27 +13481,27 @@ may introduce a 'pumping' effect and/or distortion. Microphone Talkover Mode - + Microfone Modo Talkover Off: Do not reduce music volume - + Desligado: Não reduza o volume da música Manual: Reduce music volume by a fixed amount set by the Strength knob. - + Manual: Reduz o volume de música de um valor fixo definido pelo botão Strenght. Behavior depends on Microphone Talkover Mode: - + O comportamento depende do Modo Talkover Microfone: Off: Does nothing - + Desligado: Faz nada @@ -13092,245 +13574,245 @@ may introduce a 'pumping' effect and/or distortion. Força o ganho do equalizador de graves a zero enquanto activo. - + Displays the tempo of the loaded track in BPM (beats per minute). Mostra o tempo da faixa carregada em BPM (batidas por minuto) - + Tempo - + Tempo - + Key The musical key of a track Nota - + BPM Tap Bater BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Quando batido repetidamente, ajusta o BPM para corresponder ao BPM batido. - + Adjust BPM Down Ajustar o BPM Abaixo - + When tapped, adjusts the average BPM down by a small amount. - + Quando pressionado, diminui um pouco o BPM médio. - + Adjust BPM Up Ajustar o BPM Acima - + When tapped, adjusts the average BPM up by a small amount. - + Quando pressionado, aumenta um pouco o BPM médio. - + Adjust Beats Earlier - + Ajustar Batidas Cedo - + When tapped, moves the beatgrid left by a small amount. Quando pressionado, move a grade de batidas um pouco para a esquerda. - + Adjust Beats Later - + Adiantar Grade de Batidas - + When tapped, moves the beatgrid right by a small amount. - + Quando batido, move a grelha de batidas para a direita, uma pequena quantidade. - + Tempo and BPM Tap Batimento de Tempo e BPM - + Show/hide the spinning vinyl section. - + Mostrar/ocultar a secção do Vinilo em Rotação - + Keylock Trava de Tom - + Toggling keylock during playback may result in a momentary audio glitch. Ligar/Desligar a trava de tom enquanto tocando pode resultar em um glitch de áudio momentâneo - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Alterna a visibilidade do Controlo da Taxa - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. Coloca um ponto de sinalização na posição atual na forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Pára a faixa no CUE Point, OU vai para o CUE Point e reproduz a faixa após soltar o botão (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Define o CUE point (em modo Pioneer/Mixxx/Numark), define o CUE point e toca após largar a tecla (modo CUP) OU escuta o preview (modo Denon). - + Is latching the playing state. - + Seeks the track to the cue point and stops. Avança a faixa até ao Cue Point e para. - + Play Tocar - + Plays track from the cue point. - + Toca a faixa a partir do ponto de marcação. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Altera a velocidade da faixa (afeta o tempo e o pitch). Se o keylock estiver ativo, apenas o tempo é alterado. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Mostra o alcance atual do deslizante de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration - + Duração da Gravação @@ -13478,7 +13960,7 @@ may introduce a 'pumping' effect and/or distortion. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Define o quanto reduzir o volume da música quando o volume de microfones ativos passa de um determinado limite. @@ -13551,954 +14033,991 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. - + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Mostra a duração da gravação em andamento. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Define o marcador Início Loop da faixa para a atual posição de reprodução. - + Press and hold to move Loop-In Marker. - + Pressione e mantenha para mover o marcador Início Loop. - + Jump to Loop-In Marker. - + Saltar para o marcador Início Loop. - + Sets the track Loop-Out Marker to the current play position. - + Define o marcador Fim Loop para a atual posição de reprodução. - + Press and hold to move Loop-Out Marker. - + Pressione e mantenha para mover o marcador Fim Loop. - + Jump to Loop-Out Marker. - + Saltar para o marcador Fim Loop. - + If the track has no beats the unit is seconds. - + Beatloop Size - + Tamanho do Loop de Batidas - + Select the size of the loop in beats to set with the Beatloop button. - + Escolher o tamanho do loop em batidas estabelecer com o botão Loop. - + Changing this resizes the loop if the loop already matches this size. - + Alterando isto redimensiona o loop se o loop já coincide com este tamanho. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. - + Reduz a metade o tamanho dum loop existente, ou reduz a metade o tamanho do próximo loop definido com o botão Loop. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. - + Duplica o tamanho dum loop existente, ou duplica o tamanho do próximo loop definido com o botão Loop. - + Start a loop over the set number of beats. - + Iniciar um loop com o número de batidas prédefinidas. - + Temporarily enable a rolling loop over the set number of beats. - + Ativa temporariamente um loop de rolamento sobre o número de batidas selecionado. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Beatjump/Loop Tamanho Movimento - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Selecione o número de batidas a saltar ou a deslocar o loop com os botões Beatjump Frente/Atrás. - + Beatjump Forward - + Beatjump Frente - + Jump forward by the set number of beats. - + Salta para a frente o número de batidas predefinidas. - + Move the loop forward by the set number of beats. - + Move o loop para a frente o número de batidas prédefinidas. - + Jump forward by 1 beat. - + Salta para a frente 1 batida. - + Move the loop forward by 1 beat. - + Move o loop para a frente 1 batida. - + Beatjump Backward - + Beatjump Atrás - + Jump backward by the set number of beats. - + Salta para trás o número de batidas prédefinidas. - + Move the loop backward by the set number of beats. - + Move o loop para trás o número de batidas prédefinidas. - + Jump backward by 1 beat. - + Salta para trás 1 batida. - + Move the loop backward by 1 beat. - + Move o loop para trás 1 batida. - + Reloop - + Reloop - + If the loop is ahead of the current position, looping will start when the loop is reached. - + Se o loop estiver à frente da posição atual de reprodução, o ciclo de looping começará quando o loop for atingido. - + Works only if Loop-In and Loop-Out Marker are set. - + Funciona apenas se os marcadores de Início Loop e Fim Loop estiverem definidos. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Ativar loop, saltar para o marcador Início Loop, e parar a reprodução. - + Displays the elapsed and/or remaining time of the track loaded. - + Mostra o tempo executado e/ou restante da faixa carregada. - + Click to toggle between time elapsed/remaining time/both. Clique para alternar entre tempo executado/restante tempo/ambos. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + Mistura - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit - + Ajustar a mistura do sinal seco (entrada) com o molhado (saída) da unidade de efeito - + D/W mode: Crossfade between dry and wet - + Modo S/M: crossfade entre seco e molhado - + D+W mode: Add wet to dry - + Modo S/M: adicionar molhado ao seco - + Mix Mode - + Modo Mistura - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit - + Ajustar a mistura do sinal seco (entrada) com o sinal molhado (saída) da unidade de efeito - + 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 Seco/Molhado (linhas cruzadas): o botão de Mistura faz a transição entre seco e molhado. +Usar isto para alterar o som da faixa com EQ e filtros de efeitos. - + 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 Seco+Molhado (linha seca plana): o botão de Mistura adiciona o molhado ao seco. +Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtros de efeitos. - + Route the main mix through this effect unit. - + Route the left crossfader bus through this effect unit. - + Envia o bus esquerdo do crossfader através desta unidade de efeito. - + Route the right crossfader bus through this effect unit. - + Envia o bus direito do crossfader através desta unidade de efeito. - + Right side active: parameter moves with right half of Meta Knob turn - + Lado direito ativo: o parâmetro muda com meia volta para a direita do Botão Meta - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Menu Definições Skin - + Show/hide skin settings menu - + Mostra/Oculta menu de definições. - + Save Sampler Bank - + Guardar o Banco do Sampler - + Save the collection of samples loaded in the samplers. - + Guarda a colecção de samples carregadas nos samplers. - + Load Sampler Bank Carregar o Banco do Sampler - + Load a previously saved collection of samples into the samplers. - + Carrega uma colecção de samples guardada previamente nos samplers. - + Show Effect Parameters Mostrar Parâmetros do Efeito - + Enable Effect - + Ativar Efeito - + Meta Knob Link - + Ligação Botão Meta - + Set how this parameter is linked to the effect's Meta Knob. - + Definir como este parâmetro está ligado ao botão de efeitos Meta. - + Meta Knob Link Inversion - + Vínculo inverso do Botão Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Inverte a direção que este parâmetro se move quando rodando o efeito do Botão Meta - + Super Knob - + Super Botão - + Next Chain Próxima Corrente - + Previous Chain - + Cadeia Anterior - + Next/Previous Chain - + Corrente Seguinte/Anterior - + Clear - + Limpar - + Clear the current effect. - + Limpa o efeito atual. - + Toggle - + Ligar/Desligar - + Toggle the current effect. - + Liga/Desliga o efeito atual. - + Next Seguinte - + Clear Unit - + Limpar Unidade - + Clear effect unit. Limpa a unidade de efeito. - + Show/hide parameters for effects in this unit. - + Mostra/Oculta parâmetros para efeitos nesta unidade. - + Toggle Unit - + Ligar/Desligar Unidade - + Enable or disable this whole effect unit. - + Ativa ou desativa esta unidade completa de efeito. - + Controls the Meta Knob of all effects in this unit together. - + Controla o Meta Botão de todos os efeitos conjuntamente nesta unidade. - + Load next effect chain preset into this effect unit. - + Carrega a próxima cadeia de efeitos prédefinida nesta unidade de efeito. - + Load previous effect chain preset into this effect unit. - + Carrega a anterior cadeia de efeitos prédefinida nesta unidade de efeito. - + Load next or previous effect chain preset into this effect unit. - + Carrega a próxima ou anterior cadeia de efeitos prédefinida nesta unidade de efeito. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Atribuir Unidade de Efeito - + Assign this effect unit to the channel output. - + Atribuir esta unidade de efeito ao canal de saída. - + Route the headphone channel through this effect unit. - + Encaminha o canal de auscultadores através desta unidade de efeito. - + Route this deck through the indicated effect unit. - + Encaminha este deck através da unidade de efeito indicada. - + Route this sampler through the indicated effect unit. - + Encaminha este sampler através da unidade de efeito indicada. - + Route this microphone through the indicated effect unit. - + Encaminha este microfone através da unidade de efeito indicada. - + Route this auxiliary input through the indicated effect unit. - + Encaminha esta entrada auxiliar através da unidade de efeito indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. - + Esta unidade de efeito deve também ser atribuída a um leitor ou a outra fonte sonora para ouvir o efeito. - + Switch to the next effect. - + Troca para o próximo efeito. - + Previous Anterior - + Switch to the previous effect. Troca para o efeito anterior. - + Next or Previous - + Próximo ou Anterior - + Switch to either the next or previous effect. - + Troca para o efeito seguinte ou anterior. - + Meta Knob - + Botão Meta - + Controls linked parameters of this effect - + Controla os parâmetros deste efeito aqui ligado. - + Effect Focus Button - + Botão de Foco do Efeito - + Focuses this effect. Se foca no efeito. - + Unfocuses this effect. - + Anula o realce deste efeito. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Acesse a página web do seu controlador na wiki do Mixxx para mais informações. - + Effect Parameter - + Parâmetro Efeito - + Adjusts a parameter of the effect. - + Ajusta um parâmetro do efeito. - + Inactive: parameter not linked - + Inativo: parâmetro não ligado - + Active: parameter moves with Meta Knob - + Activo: o parâmetro move-se com o Botão Meta - + Left side active: parameter moves with left half of Meta Knob turn - + Lado esquerdo ativo: o parâmetro move-se com meia volta para a esquerda do Botão Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half - + Lado esquerdo e direito ativo: o parâmetro desloca-se ao longo da sua extensão com meia volta do Botão Meta e para trás com a outra meia volta. - - + + Equalizer Parameter Kill Matar Parâmetro do Equalizador - - + + Holds the gain of the EQ to zero while active. - + Mantem o ganho do equalizador em zero quanto ativo. - + Quick Effect Super Knob Super Botão de Efeito Rápido - + Quick Effect Super Knob (control linked effect parameters). - + Super Botão de Efeito Rápido (controla parâmetros de efeitos conectados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Sugestão: Alterar o modo Efeito Rápido padrão em Preferências -> Equalizadores. - + Equalizer Parameter - + Parâmetro do Equalizador - + Adjusts the gain of the EQ filter. - + Ajusta o ganho do filtro EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Dica: Mude o modo padrão do equalizador em Preferências -> Equalizadores. - - + + Adjust Beatgrid Ajustar a grelha ritmica - + Adjust beatgrid so the closest beat is aligned with the current play position. - + Ajustar a grelha ritmica para que o tempo mais próximo seja alinhado com a posição corrente do cursor. - - + + Adjust beatgrid to match another playing deck. - + Ajusta a grade de batidas para combinar com outro deck tocando. - + If quantize is enabled, snaps to the nearest beat. Quando a quantificação está activada, ajusta-se ao tempo mais próximo. - + Quantize Quantificação - + Toggles quantization. Activa/desactiva a quantificação. - + Loops and cues snap to the nearest beat when quantization is enabled. Os loops e as marcas ajustam-se ao tempo mais próximo quando a quantificação está activada. - + Reverse Inverter - + Reverses track playback during regular playback. Inverte o sentido da leitura da faixa durante a reprodução normal. - + Puts a track into reverse while being held (Censor). Coloca a faixa em reprodução invertida enquanto pressionado (Censurar). - + Playback continues where the track would have been if it had not been temporarily reversed. - + A reprodução continua onde a faixa estaria se ela não estivesse sido temporariamente invertida. - - - + + + Play/Pause - + Leitura/Pausa - + Jumps to the beginning of the track. - + Salta para o início da faixa - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza o tempo (BPM) e a fase para a da outra faixa, ou BPM se detectado nos dois. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sincroniza o tempo (BPM) com o da outra faixa, se o BPM for detetado em ambas. - + Sync and Reset Key - + Sincronizar e Reiniciar Tom - + Increases the pitch by one semitone. - + Aumenta a tonalidade de um meio tom. - + Decreases the pitch by one semitone. Diminui o pitch por um semitom. - + Enable Vinyl Control - + Ativar Controle por Vini - + When disabled, the track is controlled by Mixxx playback controls. - + Quando desativado, a faixa é controlada pelos controles de reprodução do Mixxx. - + When enabled, the track responds to external vinyl control. Quando ativado, a faixa responde ao controle por vinil externo - + Enable Passthrough - + Ativar Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Indica que o buffer de áudio é muito pequeno para fazer todo o processamento de aúdio. - + Displays cover artwork of the loaded track. - + Mostra a arte da capa da faixa carregada. - + Displays options for editing cover artwork. - + Mostra as opções para edição da capa do disco. - + Star Rating - + Classificação de Estrela - + Assign ratings to individual tracks by clicking the stars. - + Atribui classificações a faixas individuais clicando nas estrelas. Channel Peak Indicator - + Indicador de Pico de Canal @@ -14538,7 +15057,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Channel R Peak Indicator - + Indicador de Pico do Canal D @@ -14548,12 +15067,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Channel L Volume Meter - + Volume do Canal E Shows the current channel volume for the left channel. - + Mostra o volume atual do canal para o lado esquerdo. @@ -14568,7 +15087,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Microphone Peak Indicator - + Indicador de Pico do Microfone @@ -14608,7 +15127,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Preview Deck Peak Indicator - + Indicador de Pico do Leitor de Antevisão @@ -14618,41 +15137,41 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Maximize Library - + Maximizar Biblioteca Microphone Talkover Ducking Strength - + Amplitude da Redução no Talkover - + Prevents the pitch from changing when the rate changes. - + Previne que o tom mude com as mudanças na taxa do pitch. - + Changes the number of hotcue buttons displayed in the deck - + Altera o número de botões hotcue mostrados no leitor - + Starts playing from the beginning of the track. Começa a tocar do começo da faixa. - + Jumps to the beginning of the track and stops. Pula para o começo da faixa e para. - - + + Plays or pauses the track. Lê ou suspende a leitura da faixa. - + (while playing) (durante a leitura) @@ -14672,217 +15191,217 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (enquanto parado) - + Cue Marca de início - + Headphone Auscultador - + Mute Mutar - + Old Synchronize - + Sincronização Antiga - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincroniza com o primeiro Deck (em ordem numérica) que está tocar uma faixa e que tem um BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Se nenhum Deck estiver a tocar, sincroniza com o primeiro Deck que tenha BPM - + 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 - + Hold for at least a second to enable sync lock for this deck. - + Manter premido, por pelo menos um segundo, para ativar o bloqueio de sincronização para este leitor. - + 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 com trava de sincronização vão tocar no mesmo tempo, e os decks que também tem quantização ativada vão sempre ter suas batidas alinhadas. - + Resets the key to the original track key. - + Reinicia o tom, para o tom original da faixa. - + Speed Control - + Controle de Velocidade - - - + + + Changes the track pitch independent of the tempo. - + Muda o pitch da faixa independentemente do tempo. - + Increases the pitch by 10 cents. - + Aumenta o pitch por 10 cents. - + Decreases the pitch by 10 cents. - + Diminui o pitch por 10 cents. - + Pitch Adjust Ajustar o Pitch - + Adjust the pitch in addition to the speed slider pitch. - + Ajusta o pitch junto com o deslizante de velocidade pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Gravar Mixagem - + Toggle mix recording. - + Ativa/Desativa gravação da mixagem. - + Enable Live Broadcasting - + Ativar Emissão em Direto - + Stream your mix over the Internet. - + Transmite sua mixagem pela Internet. - + Provides visual feedback for Live Broadcasting status: Provê retorno visual para o estado de Transmissão Ao Vivo: - + disabled, connecting, connected, failure. desativado, conectando, conectado, falha. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Quando ativada, o leitor toca o audio que chega diretamente à entrada do vinil. - + Playback will resume where the track would have been if it had not entered the loop. O Playback vai retornar ao ponto onde a faixa teria ficado se não tivesse entrado no loop. - + Loop Exit Sair do Loop - + Turns the current loop off. Desliga o loop - + Slip Mode Modo de deslizamento - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Quando activo, o playback continua abafado em segundo plano durante o loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. Uma vez desactivado, o playback audível será retomado onde a faixa estaria. - + Track Key The musical key of a track Tom da Faixa - + Displays the musical key of the loaded track. - + Mostra o tom musical da faixa carregada. - + Clock Relógio - + Displays the current time. Afixa a hora actual - + Audio Latency Usage Meter - + Uso da Latência de Áudio - + Displays the fraction of latency used for audio processing. - + Mostra a fração da latência usada no processamento de audio. - + A high value indicates that audible glitches are likely. - + Um valor alto indica que ruídos no áudio são prováveis. - + Do not enable keylock, effects or additional decks in this situation. - + Não ative a trava de tom, efeitos ou decks adicionais nessa situação. - + Audio Latency Overload Indicator - + Indicador de Sobrecarga de Latência Audio @@ -14892,7 +15411,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Drop tracks from library, external file manager, or other decks/samplers here. - + Largar faixas da biblioteca, gestor de ficheiros exterior, ou outros leitores/samplers aqui. @@ -14902,17 +15421,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Crossfader Orientation - + Orientação Crossfader Set the channel's crossfader orientation. - + Define a orientação do crossfader entre canais. Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) - + Quer para o lado esquerdo do crossfader, ou para o lado direito, ou para o centro (não afetada pelo crossfader) @@ -14920,259 +15439,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Active o Controlo Vinilo a partir do Menu -> Opções. - + Displays the current musical key of the loaded track after pitch shifting. - + Mostra o tom musical corrente da faixa carregada, após movimentação do cursor de velocidade/tom. - + Fast Rewind Retorno Rápido - + Fast rewind through the track. Retorno rápido percorrendo a faixa. - + Fast Forward Avanço Rápido - + Fast forward through the track. Avanço rápido percorrendo a faixa. - + Jumps to the end of the track. Salta para o fim da faixa. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - + Define a tonalidade para um tom que permita uma transição harmónica para outra faixa. Requer ter sido detetado um tom em ambos os leitores envolvidos. - - - + + + Pitch Control Controlo da Velocidade - + Pitch Rate Variador de Altura - + Displays the current playback rate of the track. Mostra a velocidade corrente da faixa. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Quando activo, a faixa será repetida se for para além do fim, ou em reverso para além do início. - + Eject Ejectar - + Ejects track from the player. Ejecta a faixa do leitor. - + Hotcue Marcação - + If hotcue is set, jumps to the hotcue. Se o ponto de marcação estiver definido, salta para o ponto de marcação. - + If hotcue is not set, sets the hotcue to the current play position. Se o ponto de marcação não estiver definido, define o ponto de marcação no local de leitura corrente. - + Vinyl Control Mode Modo de Controlo Vinilo - + Absolute mode - track position equals needle position and speed. Modo Absoluto - a posição na faixa é igual à posição e velocidade da agulha. - + Relative mode - track speed equals needle speed regardless of needle position. Modo Relativo - a velocidade da faixa é igual à velocidade da agulha independentemente da posição da agulha. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - a velocidade da faixa é igual à última velocidade instantânea conhecida independentemente da posição da agulha. - + Vinyl Status Estado do Vinilo - + Provides visual feedback for vinyl control status: Fornece um sinal visual para o estado do controlo vinilo: - + Green for control enabled. Verde para controlo activado. - + Blinking yellow for when the needle reaches the end of the record. Amarelo a piscar quando a agulha chega ao fin do disco. - + Loop-In Marker Marcador de Entrada de Loop - + Loop-Out Marker Marcador de Saída de Loop - + Loop Halve Reduz o loop a metade - + Halves the current loop's length by moving the end marker. Reduz a metade o comprimento do loop corrente, movendo o marcador de fim. - + Deck immediately loops if past the new endpoint. O leitor faz loop imdiatamente, se o novo marcador de saída for ultrapassado. - + Loop Double Duplicação do loop - + Doubles the current loop's length by moving the end marker. Duplica o comprimento corrente do loop movendo o marcador de fim. - + Beatloop Loop de Tempos - + Toggles the current loop on or off. Activa ou desactiva o loop corrente. - + Works only if Loop-In and Loop-Out marker are set. Funciona apenas se as marcas de entrada e de saída do loop estiverem definidas. - + Vinyl Cueing Mode Modo de Marcação Vinilo - + Determines how cue points are treated in vinyl control Relative mode: Determina a forma como os pontos de marcação são tratados no modo de controlo vinilo Relativo. - + Off - Cue points ignored. Inactivo - os pontos de marcação são ignorados. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Uma Marca – Se a agulha é largada após o ponto de marcação, a faixa posiciona-se nesse ponto de marcação. - + Track Time Duração da faixa - + Track Duration Duração da Faixa - + Displays the duration of the loaded track. Mostra a duração da faixa carregada. - + Information is loaded from the track's metadata tags. A informação é carregada a partir das etiquetas de metadados da faixa. - + Track Artist Artista da Faixa - + Displays the artist of the loaded track. Mostra o artista da faixa carregada. - + Track Title Título da Faixa - + Displays the title of the loaded track. Mostra o título da faixa. - + Track Album Album da faixa - + Displays the album name of the loaded track. Mostra o nome do album da faixa carregada. - + Track Artist/Title Artista/título da faixa - + Displays the artist and title of the loaded track. Mostra o artista e o título da faixa carregada. @@ -15182,12 +15701,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Hiding tracks - + Ocultar faixas The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? - + As faixas selecionadas estão na seguintes playlists: %1 Ocultando-as serão removidas destas playlists. Continuar? @@ -15195,7 +15714,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export finished - + Exportação terminada @@ -15225,12 +15744,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. &Skip - + P&ular Export Error - + Erro de Exportação @@ -15238,7 +15757,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Export Track Files To - + Exportar Faixas Para @@ -15252,17 +15771,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Error removing file %1: %2. Stopping. - + Erro na remoção do ficheiro %1: %2. Paragem. Error exporting track %1 to %2: %3. Stopping. - + Erro ao exportar faixa %1 para %2: %3. Parando. Error exporting tracks - + Erro ao exportar as faixas @@ -15294,7 +15813,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Timer (Fallback) - + Cronômetro (Retirada) @@ -15304,12 +15823,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Wait for Video sync - + Aguardar pela sincronização Video Sync Control - + Controle de Sincronização @@ -15327,7 +15846,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Time until charged: %1 - + Tempo até carregada: %1 @@ -15337,7 +15856,7 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Battery fully charged. - + Bateria carregada completamente. @@ -15359,29 +15878,29 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Choose new cover change cover art location - + Escolher nova capa Clear cover clears the set cover art -- does not touch files on disk - + Limpar capa do disco Reload from file/folder reload cover art from file metadata or folder - + Recarregar do arquivo/pasta Image Files - + Arquivos de Imagem Change Cover Art - + Mudar Arte da Capa @@ -15400,47 +15919,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. - - Left-click: Use the old size or the current beatloop size as the loop size + + Turn this cue into a saved backward jump (one shot loop). - - Right-click: Use the current play position as loop end if it is after the cue + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 @@ -15565,323 +16112,363 @@ This can not be undone! - Create &New Playlist + Search in Current View... - Create a new playlist + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F - + + Create &New Playlist + Criar &Playlist Nova + + + + Create a new playlist + Criar uma nova playlist + + + Ctrl+n Ctrl+n - + Create New &Crate - + Criar Nova &Caixa - + Create a new crate Criar uma Caixa nova - + Ctrl+Shift+N - + Ctrl+Shift+N - - + + &View &Ver - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Pode não ser compatível com todos os temas - + Show Skin Settings Menu - + Mostrar Menu de Configurações do Tema - + Show the Skin Settings Menu of the currently selected Skin - + Mostra o menu das configurações do tema do tema atualmente selecionado - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar a Secção do Microfone - + Show the microphone section of the Mixxx interface. Mostrar a secção microfone do interface Mixxx - + Ctrl+2 Menubar|View|Show Microphone Section - + Ctrl+2 - + Show Vinyl Control Section Mostrar a Secção de Controle de Vinyl - + Show the vinyl control section of the Mixxx interface. Mostrar a secção Controlo Vinilo do interface Mixxx - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Ctrl+3 - + Show Preview Deck Mostrar o Deck de Pré-visualização - + Show the preview deck in the Mixxx interface. Mostrar o Deck de Pré-visualização no interface do Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck - + Ctrl+4 - + Show Cover Art Mostrar Arte da Capa - + Show cover art in the Mixxx interface. - + Mostrar as capas dos discos no interface Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art - + Ctrl+6 - + Maximize Library Maximizar 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ã. - + Space Menubar|View|Maximize Library Espaço - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Ecrã completo - + Display Mixxx using the full screen Mostrar o Mixxx em ecrã completo - + &Options &Opções - + &Vinyl Control Controlo Vinilo - + Use timecoded vinyls on external turntables to control Mixxx Utilizar discos de vinilo codificados num leitor externo para controlar o Mixxx - + Enable Vinyl Control &%1 - + Ativar Controle por Vinil &%1 - + &Record Mix Gravar a mistura - + Record your mix to a file Gravar a sua mistura num ficheiro - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activar a difusão em directo - + Stream your mixes to a shoutcast or icecast server Difunda as suas misturas via um servidor de "shoutcast" ou "icecast" - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activar atalhos de teclado - + Toggles keyboard shortcuts on or off Activar/desactivar atalhos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferências - + Change Mixxx settings (e.g. playback, MIDI, controls) Modificar os parâmetros do Mixxx (ex. difusão, MIDI, controladores) - + &Developer &Desenvolvedor - + &Reload Skin &Recarregar Skin - + Reload the skin Recarregar a skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools - + &Ferramentas do Desenvolvedor - + Opens the developer tools dialog Abre o diálogo das ferramentas de desenvolvedor - + Ctrl+Shift+T - + Ctrl+Shift+T - + Stats: &Experiment Bucket Dados: Balde de &Experimento - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ativa o modo Experiências. Coleta estatísticas no balde de rastreio EXPERIÊNCIAS. - + Ctrl+Shift+E - + Ctrl+Shift+E - + Stats: &Base Bucket - + Estatísticas: &Balde Base - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ativa o modo base. Coleta dados no balde de localização BASE. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled - + Deb&ugger Ativado - + Enables the debugger during skin parsing - + Ativa o debugger enquanto a skin estiver sendo analisada - + Ctrl+Shift+D - + Ctrl+Shift+D - + &Help &Ajuda - + Show Keywheel menu title @@ -15898,74 +16485,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + F12 - + &Community Support Suporte da comunidade - + Get help with Mixxx Obter ajuda sobre o Mixxx - + &User Manual Manual do utilizador - + Read the Mixxx user manual. Ler o manual de utilizador do Mixxx - + &Keyboard Shortcuts - + &Atalhos de Teclado - + Speed up your workflow with keyboard shortcuts. Acelere seu fluxo de trabalho com atalhos de teclado. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Traduzir esta Aplicação - + Help translate this application into your language. Ajude a traduzir esta aplicação na sua linguagem - + &About &Sobre - + About the application Sobre a aplicação @@ -15973,25 +16560,25 @@ This can not be undone! WOverview - + Passthrough 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 @@ -16000,25 +16587,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Limpar entrada - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Pesquisa - + Clear input Limpar a entrada @@ -16029,92 +16604,86 @@ This can not be undone! Procurar... - + Clear the search bar input field - - Enter a string to search for - + + Return + Enter - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Atalho + See User Manual > Mixxx Library for more information. + - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return - Enter + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history @@ -16178,7 +16747,7 @@ This can not be undone! Year - + Ano @@ -16199,625 +16768,640 @@ This can not be undone! WTrackMenu - + Load to Carregar para - + Deck Leitor - + Sampler Amostrador - + Add to Playlist Adicionar à Lista de reprodução - + Crates Caixas - + Metadata Metadado - + Update external collections - + Cover Art Capa - + Adjust BPM - + Ajustar BPM - + Select Color - - + + Analyze Analisar - - + + Delete Track Files - + 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) - + Adicionar à Fila Auto DJ (Substituir) - + Preview Deck Deck de Prá-visualização - + Remove - + Remover - + Remove from Playlist - + Remover da Playlist - + Remove from Crate - + Remover da Caixa - + Hide from Library Ocultar na Biblioteca - + Unhide from Library Reexibir na Biblioteca - + Purge from Library Limpar da Biblioteca - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Propriedades - + Open in File Browser Abrir no Navegador de Ficheiros - + Select in Library - + Import From File Tags Importar Das Tags Ficheiros - + Import From MusicBrainz - + Importar do MusicBrainz - + Export To File Tags - + Exportar Para Tags Ficheiros - + BPM and Beatgrid - + BPM e Grelha de Batidas - + Play Count - + Contador de Leitura - + Rating classificação - + Cue Point - + Ponto de Marcação - - + + Hotcues Marcações - + Intro - + Outro - + Key Nota - + ReplayGain ReplayGain - + Waveform - + Forma de Onda - + Comment Comentário - + All Tudo - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Bloquear o Tempo (BPM) - + Unlock BPM Desbloquear o Tempo (BPM) - + Double BPM Duplicar o BPM - + Halve BPM Reduzir o BPM a metade - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Leitor %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Locking BPM of %n track(s)Locking BPM of %n track(s)Bloqueando o BPM de %n faixa(s) - + Unlocking BPM of %n track(s) Unlocking BPM of %n track(s)Unlocking BPM of %n track(s)Desbloqueando o BPM de %n faixa(s) - + Setting rating of %n track(s) - + Setting color of %n track(s) Setting color of %n track(s)Setting color of %n track(s)Mudando a cor de %n faixa(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Cancelar - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Fechar - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16871,37 +17455,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16909,12 +17493,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Mostrar/ocultar colunas - + Shuffle Tracks @@ -16952,22 +17536,22 @@ This can not be undone! - + 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. @@ -17003,7 +17587,7 @@ Clique em OK para sair. Browse - + Procurar @@ -17023,7 +17607,7 @@ Clique em OK para sair. Cancel - + Cancelar @@ -17062,12 +17646,12 @@ Clique em OK para sair. Export Modified Track Metadata - + Exportar Metadados Modificados da Faixa 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. - + O Mixxx poderá esperar para modificar ficheiros até que não estejam carregados em quaisquer leitores ou samplers. Se não vir os metadados alterados noutros programas imediatamente, ejecte a faixa de todos os leitores e samplers ou encerre o Mixxx. @@ -17116,7 +17700,7 @@ Clique em OK para sair. No network access - + Sem acesso a rede @@ -17124,6 +17708,24 @@ Clique em OK para sair. A requisição de Rede não foi iniciada + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17132,4 +17734,27 @@ Clique em OK para sair. Nenhum efeito carregado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_pt_BR.qm b/res/translations/mixxx_pt_BR.qm index 936019ee300d..23926ca8d605 100644 Binary files a/res/translations/mixxx_pt_BR.qm and b/res/translations/mixxx_pt_BR.qm differ diff --git a/res/translations/mixxx_pt_BR.ts b/res/translations/mixxx_pt_BR.ts index 3c57eab380d0..4f6015b531f7 100644 --- a/res/translations/mixxx_pt_BR.ts +++ b/res/translations/mixxx_pt_BR.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Caixas - + Enable Auto DJ Habilitar Auto DJ - + Disable Auto DJ Desativar Auto DJ - + Clear Auto DJ Queue Limpar fila do Auto DJ - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ Auto DJ - + Confirmation Clear Confirmar limpeza - + Do you really want to remove all tracks from the Auto DJ queue? Você tem certeza que quer remover todas as faixas da fila do Auto DJ? - + This can not be undone. Esta ação não pode ser desfeita. - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -223,7 +231,7 @@ - + Export Playlist Exportar Playlist @@ -237,7 +245,7 @@ Export to Engine DJ "Engine DJ" is a product name and must not be translated. - + Exportar para mecanismo DJ @@ -277,13 +285,13 @@ - + 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 lista de reprodução: @@ -298,12 +306,12 @@ Você realmente deseja excluir a lista de reprodução <b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # - + Timestamp Data/Hora @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Não conseguiu carregar a faixa. @@ -362,7 +370,7 @@ Canais - + Color Cor @@ -377,7 +385,7 @@ Compositor - + Cover Art Arte de Capa @@ -387,7 +395,7 @@ Data Adicionada - + Last Played Última Execução @@ -417,17 +425,17 @@ Tom - + Location Localização Overview - + Visão geral - + Preview Pré-Visualizar @@ -467,7 +475,7 @@ Ano - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Buscando imagem ... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Não é possível usar o armazenamento seguro de senha: o acesso ao keychain falhou. - + Secure password retrieval unsuccessful: keychain access failed. A recuperação segura da senha não foi bem-sucedida: o acesso ao keychain falhou. - + Settings error Erro de configurações - + <b>Error with settings for '%1':</b><br> <b>Erro com configurações para '%1':</b><br> @@ -592,14 +600,14 @@ - + Computer Computador Music Directory Added - + Pasta de Música Adicionada @@ -609,22 +617,22 @@ Scan - + 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + Ele mostra os dados das tags do arquivo, não os dados da faixa da sua biblioteca Mixxx como outras visualizações de faixa. - + If you load a track file from here, it will be added to your library. - + Se você carregar um arquivo de faixa daqui, ele será adicionado à sua biblioteca. @@ -692,7 +700,7 @@ Key - + Nota @@ -727,20 +735,20 @@ File Modified - + Ficheiro Modificado File Created - + 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 arquivo porque ele está em uso pelo Mixxx ou por outro programa. @@ -750,108 +758,113 @@ The file '%1' could not be found. - + O arquivo '%1' não pôde ser encontrado. The file '%1' could not be loaded. - + O arquivo '%1' não pôde ser carregado. The file '%1' could not be loaded because it contains %2 channels, and only 1 to %3 are supported. - + O arquivo '%1' não pôde ser carregado porque contém %2 canais, e somente 1 a %3 são suportados. The file '%1' is empty and could not be loaded. - + O arquivo '%1' não pôde ser carregado. CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: - + Mixxx é um software de DJ de código aberto. Para mais informações, consulte: - + Starts Mixxx in full-screen mode Começa o Mixxx em tela cheia - + Use a custom locale for loading translations. (e.g 'fr') - + Use um idioma personalizado para carregar traduções. (por exemplo, 'fr') - + 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 - + Caminho onde a linha do tempo das estatísticas de depuração é escrita - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads - + Faz com que o Mixxx exiba/registre todos os dados do controlador que ele recebe e as funções de script que ele carrega - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + O mapeamento do controlador emitirá avisos e erros mais agressivos ao detectar o uso indevido das APIs do controlador. Novos mapeamentos de controlador devem ser desenvolvidos com esta opção habilitada! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Habilita o modo de desenvolvedor. Inclui informações extras de log, estatísticas de desempenho e um menu de ferramentas para desenvolvedores. - + Top-level directory where Mixxx should look for settings. Default is: - + Diretório de nível superior onde o Mixxx deve procurar as configurações. O padrão é: - + Starts Auto DJ when Mixxx is launched. - + Inicia o Auto DJ quando o Mixxx é iniciado. - + Rescans the library when Mixxx is launched. - + Verifica novamente a biblioteca quando o Mixxx é iniciado. - + Use legacy vu meter - + Use o medidor VU legado - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. - + + Force Mixxx to load an unstable version with an existing user profile from a stable version + + + + 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 @@ -861,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -912,7 +925,7 @@ trace - Above + Profiling messages Remove Palette - + Remover Paleta @@ -940,7 +953,7 @@ trace - Above + Profiling messages No control chosen. - + Nenhum controlo escolhido. @@ -979,2557 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Saída Auscultador - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Deck de Pré-Visualização %1 - + Microphone %1 Microfone %1 - + Auxiliary %1 - + Auxiliar %1 - + Reset to default Redefinir para o padrão - + Effect Rack %1 - + Rack de Efeitos %1 - + Parameter %1 Parâmetro %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mixagem do fone (pré/principal) - + Toggle headphone split cueing Ligar/Desligar o cueing dividido no fone - + Headphone delay - + Atraso Auscultador - + Transport Transporte - + Strip-search through track Busca através da faixa - + Play button Botão de tocar - - + + Set to full volume - + Volume Máximo - - + + Set to zero volume - + Ajustar para o volume zero - + Stop button Botão Parar - + Jump to start of track and play Pular para o início da faixa e tocar - + Jump to end of track Pular para o fim da faixa - + Reverse roll (Censor) button Botão de rolagem reversa (Censurar) - + Headphone listen button Tecla de escuta no auscultador - - + + Mute button - + Tecla de Silêncio - + Toggle repeat mode Ligar/Desligar modo de repetição - - + + Mix orientation (e.g. left, right, center) - + Orientação da mistura (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 - + Toggle slip mode Ligar/Desligar modo de deslizamento - - + + BPM BPM - + Increase BPM by 1 - + Aumentar BPM em 1 - + Decrease BPM by 1 - + Diminuir BPM em 1 - + Increase BPM by 0.1 Aumentar 0,1 BPM - + Decrease BPM by 0.1 Diminuir 0,1 BPM - + BPM tap button Botão de toque do BPM - + Toggle quantize mode Ligar/Desligar modo de quantização - + One-time beat sync (tempo only) - + Sincronização pontual da batida (só tempo) - + One-time beat sync (phase only) - + Sincronização pontual da batida (só fase) - + Toggle keylock mode - + Activar/desactivar o modo de bloqueio - + Equalizers Equalizadores - + Vinyl Control - + Controlo Vinilo - + 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 - + Pontos de marcação - + Cue button Botão de marca - + 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 - + Antevisão a partir do ponto de marcação - + Cue button (CDJ mode) Botão Cue (modo CDJ) - + Stutter cue - + Marcação Stutter - + 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 a Hot Cue %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 - + Antevisão a partir da Hot Cue %1 - - + + Hotcue %1 - + Hot Cue %1 - + Looping Looping - + Loop In button Botão de entrada em Loop - + Loop Out button - + Tecla de Final de Loop - + Loop Exit button - + Botão de saída de ciclo - + 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 um loop de %1-batidas - + Create temporary %1-beat loop roll Criar loop temporário de %1 batidas - + Library Biblioteca - + Slot %1 - + Compartimento %1 - + Headphone Mix - + Mistura do auscultador - + Headphone Split Cue - + Escuta Dividida no Auscultador - + Headphone Delay - + Atraso Auscultador - + Play - + Tocar - + Fast Rewind Retrocesso Rápido - + Fast Rewind button Botão de Retrocesso Rápido - + Fast Forward Avanço Rápido - + Fast Forward button Botão de Avanço Rápido - + Strip Search Busca pela Faixa - + Play Reverse Tocar ao Contrário - + Play Reverse button Botão de Tocar ao Contrário - + Reverse Roll (Censor) Rolagem inversa (Censurar) - + Jump To Start Pular para o Início - + Jumps to start of track Pula para o início da faixa - + Play From Start Tocar do Início - + Stop Parar - + Stop And Jump To Start Parar e Pular para o Início - + Stop playback and jump to start of track Parar a reprodução e pular para o início da faixa - + Jump To End Pular para o Final - + Volume Volume - - - + + + Volume Fader Fader de Volume - - + + Full Volume Volume Máximo - - + + Zero Volume - + Volume Zero - + Track Gain - + Ganho da Faixa - + Track Gain knob Botão de Ganho da Faixa - - + + Mute - + Mutar - + Eject Ejetar - - + + Headphone Listen - + Escuta de Auscultador - + Headphone listen (pfl) button - + Botão de escuta de auscultador (PFL) - + Repeat Mode - + Modo Repetir - + Slip Mode - + Modo Escorregar - - + + Orientation Orientação - - + + Orient Left - + Orientar Esquerda - - + + Orient Center - + Orientar Centro - - + + Orient Right - + Orientação à Direita - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 +0,1 BPM - + BPM -0.1 -0,1 BPM - + BPM Tap - + Bater BPM - + Adjust Beatgrid Faster +.01 - + Ajustar Grelha de Batidas Mais Rápido +.01 - + Increase track's average BPM by 0.01 Aumentar o BPM médio da faixa por 0,01 - + Adjust Beatgrid Slower -.01 Expandir Grade de Batidas por -,01 - + Decrease track's average BPM by 0.01 Diminuir o BPM médio da faixa por 0,01 - + Move Beatgrid Earlier - + Mover Grelha de Batidas Cedo - + Adjust the beatgrid to the left Move a grade de batidas à esquerda - + Move Beatgrid Later - + Mover Grelha de Batidas Tarde - + Adjust the beatgrid to the right Move a grade de batidas à direita - + Adjust Beatgrid - + Ajustar a grelha ritmica - + Align beatgrid to current position Alinhar a grade de batidas à posição atual - + Adjust Beatgrid - Match Alignment Ajustar a Grade de Batidas - Combinar Alinhamento - + Adjust beatgrid to match another playing deck. - + Ajusta a grelha de batidas para corresponder um outro leitor em reprodução. - + Quantize Mode - + Modo Quantização - + Sync - + Sincronizar - + Beat Sync One-Shot Sincronizar a Batida De Uma Vez - + Sync Tempo One-Shot Sincronizar o Tempo De Uma Vez - + Sync Phase One-Shot 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 - + High EQ EQ de Agudos - + Mid EQ EQ de Médios - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 - + Marcação Stutter - + 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 - + Saída 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 - + Coloca a faixa selecionada no final da fila 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 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 - + 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 mixer. - + 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 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 - + Headphone Gain Ganho do Fone - + Headphone gain Ganho do fone - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Toque para sincronizar o tempo (e fase com a quantização ativada), segure para ativar a sincronização permanente - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Ajustar %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin - + Skin - + Controller Controladora - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Fone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Matar %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Velocidade - + Decrease Speed (Fine) Diminuir velocidade (Fino) - + Pitch (Musical Key) Pitch (Tom musical) - + 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 Trava de Tom - + CUP (Cue + Play) CUP (Cue + Play, ou seja Cue + Toca a faixa) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In Ir para Loop In - + Go to Loop In button Botão de Ir para o Início do Loop - + Go To Loop Out Ir para o Fim do Loop - + Go to Loop Out button Botão de Ir para o Fim do Loop - + 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 Parar - + 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 - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - - Deck %1 Quick Effect Enable Button + + Quick Effects Deck %1 - + + 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 + + + + Deck %1 Stem %2 Quick Effect Super Knob - + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing Ativar ou desativar processamento de efeitos - + 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 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 - + 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 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 - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Transmite sua mixagem pela Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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) - + 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) - + Show/Hide all spinnies - + Toggle Waveforms - + Show/hide the scrolling waveforms. - + Mostrar/esconder as ondas. - + 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 - + 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 @@ -3542,12 +3583,165 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel Channel - + Canal @@ -3644,32 +3838,32 @@ trace - Above + Profiling messages 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 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 ser corrigido. @@ -3677,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3730,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Travar @@ -3760,7 +3954,7 @@ trace - Above + Profiling messages Fonte de Faixas do Auto DJ - + Enter new name for crate: Digite um novo nome para a caixa: @@ -3777,22 +3971,22 @@ trace - Above + Profiling messages 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 @@ -3802,28 +3996,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) Lista de Reprodução M3U (*.m3u) @@ -3844,17 +4038,17 @@ trace - Above + Profiling messages Este recurso de caixas permite que você organize sua música do jeito que preferir! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3949,12 +4143,12 @@ trace - Above + Profiling messages Contribuidores Anteriores - + Official Website - + Donate @@ -4002,7 +4196,7 @@ trace - Above + Profiling messages License - + Licença @@ -4130,7 +4324,7 @@ Shortcut: Shift+F9 Determines the duration of the transition - + Determina a duração da transição. @@ -4226,7 +4420,7 @@ crossfader, so that the intro starts at full volume. Displays the duration and number of selected tracks. - + Mostra a duração e número de faixas selecionadas. @@ -4245,7 +4439,8 @@ crossfader, so that the intro starts at full volume. 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. - + Adiciona uma faixa aleatoriamente das fontes de faixas (caixas) à fila Auto DJ. +Se não estão configuradas fontes de faixas, então a faixa é adicionada da biblioteca. @@ -4288,7 +4483,9 @@ This can speed up beat detection on slower computers but may result in lower qua 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 batidas detectada pelo analisador em uma grade de batidas de tempo fixo. +Use esta configuração se suas faixas tem um tempo constante (como a maioria das músicas eletrônicas). +Frequentemente resulta em grades de batida de melhor qualidade, e não funciona direito em faixas que tem mudanças de tempo. @@ -4501,7 +4698,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 - + O controle que você clicou no Mixxx não pode ser mapeado. +Isso pode ser porque você está usando um tema antigo e esse controle não é mais suportado, ou você clicou em um controle que provê feedback visual e só pode ser mapeado em saídas como LEDs por meio de scripts. + +Você tentou mapear: %1,%2 @@ -4741,124 +4941,141 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Ação falhou - + You can't create more than %1 source connections. - + Não pode criar mais de %1 ligações fonte. - + Source connection %1 + Ligação fonte %1 + + + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder - + At least one source connection is required. - + É necessária pelo menos uma ligação fonte. - + Are you sure you want to disconnect every active source connection? - + Tem a certeza que quer desligar todas as ligações fonte ativas? - - + + Confirmation required - + Confirmação necessária - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Tem a certeza que quer apagar '%1'? - + Renaming '%1' Renomeando '%1' - + New name for '%1': - + Novo nome para '%1': - + Can't rename '%1' to '%2': name already in use - + Não pode renomear '%1' para '%2': nome já em uso @@ -4869,127 +5086,132 @@ Two source connections to the same server that have the same mountpoint can not Preferências da Transmissão Ao Vivo - + Mixxx Icecast Testing Teste do Icecast no Mixxx - + Public stream Stream pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nome da 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. Devido à falhas em alguns clientes de reprodução, atualizar os metadados Ogg Vorbis dinamicamente pode causar pausas e desconexões nos ouvintes. Marque esta caixa para atualizar os metadados de qualquer jeito. Live Broadcasting source connections - + Conexões para Transmissão Ao Vivo Delete selected - + Apagar selecionadas Create new connection - + Criar nova ligação Rename selected - + Renomear selecionadas Disconnect all - + Desligar todas Turn on Live Broadcasting when applying these settings - + Iniciar transmissão ao vivo quando aplicar estas configurações Settings for %1 + Definições para %1 + + + + Available fields: $artist, $title, $year, $album, $genre, $bpm - + Dynamically update Ogg Vorbis metadata. Atualizar os metadados Ogg Vorbis dinamicamente. - + ICQ ICQ - + AIM - + AIM - + Website Site - + Live mix Mixagem ao vivo - + IRC IRC - + Select a source connection above to edit its settings here - + Selecionar uma ligação fonte acima para editar as suas definições aqui - + Password storage - + Armazenamento Palavra Passe - + Plain text Texto puro - + Secure storage (OS keychain) - + Armazenamento seguro (Porta chaves do SO) - + Genre Gênero - + Use UTF-8 encoding for metadata. Utlizar codificação UTF-8 para os metadados. - + Description Descrição @@ -5015,42 +5237,42 @@ Two source connections to the same server that have the same mountpoint can not Canais - + Server connection Conexão do servidor - + Type Tipo - + Host - Anfitrião (host) + Host - + Login - + Login - + Mount Montagem - + Port Porta - + Password Senha - + Stream info Informações do Fluxo @@ -5060,17 +5282,17 @@ Two source connections to the same server that have the same mountpoint can not Metadado - + Use static artist and title. Usar artista e título estáticos. - + Static title Título estático - + Static artist Artista estático @@ -5129,13 +5351,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Por número do hotcue - + Color @@ -5166,7 +5389,7 @@ Two source connections to the same server that have the same mountpoint can not Hotcue palette - + Paleta de hotcue @@ -5180,17 +5403,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5198,114 +5426,114 @@ associated with each key. DlgPrefController - + Apply device settings? Aplicar configurações dos dispositivos? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Suas configurações devem ser aplicadas antes de começar o assistente de configuração. Aplicar as configurações e continuar? - + None Nenhuma - + %1 by %2 %1 por %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Solução de Problemas - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Limpar Mapeamentos de Entrada - + Are you sure you want to clear all input mappings? Tem certeza de que deseja limpar todos os mapeamentos de entrada? - + Clear Output Mappings Limpar Mapeamentos de Saída - + Are you sure you want to clear all output mappings? Tem certeza de que deseja limpar todos os mapeamentos de saída? @@ -5323,100 +5551,105 @@ Aplicar as configurações e continuar? Ativada - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descrição: - + Support: Compatível: - + Screens preview - + Input Mappings Mapeamento de Entrada - - + + Search Pesquisa - - + + Add Adicionar - - + + Remove Remover @@ -5436,17 +5669,17 @@ Aplicar as configurações e continuar? - + Mapping Info - + Author: - + Autor: - + Name: Nome: @@ -5456,28 +5689,28 @@ Aplicar as configurações e continuar? Assistente de Configuração (Somente MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Limpar Tudo - + Output Mappings Mapeamento de Saída @@ -5492,21 +5725,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5564,7 +5797,7 @@ Aplicar as configurações e continuar? Skin - + Skin @@ -5636,6 +5869,16 @@ Aplicar as configurações e continuar? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5665,137 +5908,137 @@ Aplicar as configurações e continuar? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sem piscar) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semitom) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -5805,7 +6048,7 @@ Aplicar as configurações e continuar? Deck Preferences - + Preferências Leitor @@ -5882,7 +6125,7 @@ Modo CUP: Time Format - + Formato de tempo @@ -5896,7 +6139,11 @@ 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. - + Quando o analisador coloca automaticamente o ponto de início da introdução, +ele coloca-o no ponto de referência principal se o ponto de referência principal tiver sido definido anteriormente. +Isso pode ser útil para atualizar para o Mixxx 2.3 de versões anteriores. + +Se essa opção estiver desativada, o ponto de início da introdução é colocado automaticamente no primeiro som. @@ -5906,7 +6153,7 @@ If this option is disabled, the intro start point is automatically placed at the Track load point - + Ponto de carga de rastreamento @@ -5927,7 +6174,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Pressione Carregar duas vezes para clonar uma faixa que está tocando @@ -6205,12 +6452,12 @@ You can always drag-and-drop tracks on screen to clone a deck. Keep metaknob position - + Manter posição do metabotão Reset metaknob to effect default - + Reinicia metabotão para efeito padrão @@ -6246,62 +6493,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6382,7 +6629,7 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey - + OpenKey @@ -6528,67 +6775,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Selecionar a Fonte da Biblioteca @@ -6637,262 +6914,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Arquivos de Áudio - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History Histórico de Sessões - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Fonte da Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px 500 px - + 250 px 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Altura da Linha da Biblioteca: - + Use relative paths for playlist export if possible Usar pastas relativas ao exportar a lista de reprodução se possível - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Editar metadados após clicar faixa seleccionada - + Search-as-you-type timeout: - + Tempo limite de procura ao escrever: - + ms ms - + Load track to next available deck Carregar a faixa no próximo deck disponível - + External Libraries Bibliotecas Externas - + You will need to restart Mixxx for these settings to take effect. Você vai precisar reiniciar o Mixxx para que essas configurações tenham efeito. - + Show Rhythmbox Library Mostrar Biblioteca do Rhythmbox - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Mostrar Biblioteca do Banshee - + Show iTunes Library Mostrar Biblioteca do iTunes - + Show Traktor Library Mostrar Biblioteca do Traktor - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. Todas as bibliotecas externas mostradas estão protegidas contra gravação. @@ -6927,7 +7209,7 @@ and allows you to pitch adjust them for harmonic mixing. Scratching - + Scratching @@ -7237,33 +7519,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Escolher diretório de gravações - - + + Recordings directory invalid - + Diretório de gravações inválido - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7281,43 +7563,55 @@ and allows you to pitch adjust them for harmonic mixing. Buscar... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Qualidade - + Tags Etiquetas - + Title Título - + Author Autor - + Album Álbum - + Output File Format Formato de Saída do Arquivo - + Compression Compressão - + Lossy Com perdas @@ -7332,12 +7626,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Nível de Compressão - + Lossless Sem Perdas @@ -7468,172 +7762,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Padrão (atraso longo) - + Experimental (no delay) Experimental (sem atraso) - + Disabled (short delay) Desativada (atraso curto) - + Soundcard Clock Relógio da Placa de Som - + Network Clock - + Relógio da Rede - + Direct monitor (recording and broadcasting only) - + Monição direta (apenas gravação e emissão) - + Disabled Desativado - + Enabled Ativada - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Information + + Find details in the Mixxx user manual - + + Information + + + + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) auto (<= 1024 quadros/período) - + 2048 frames/period 2048 quadros/período - + 4096 frames/period 4096 quadros/período - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. - + As entradas de microfone estão fora de tempo no sinal gravar e emitir comparado com o que ouve. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Medir a latência de ida e volta e introduza-a acima para Compensação da Latência do Microfone de maneira a alinhar o tempo do microfone. - + Refer to the Mixxx User Manual for details. - + Consulte o Manual do Utilizador do Mixxx para detalhes. - + Configured latency has changed. - + A latência configurada foi alterada. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Volta a medir a latência de ida e volta e introduza-a acima para Compensação da Latência do Microfone de maneira a alinhar o tempo do microfone. - + Realtime scheduling is enabled. O agendamento em tempo real está ativado. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Erro de configuração @@ -7663,12 +7962,12 @@ The loudness target is approximate and assumes track pregain and main output lev Engine Clock - + Relógio Motor Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Use o relógio da placa de som para montagens com audiência ao vivo e a menor latência.<br>Use o relógio de rede para emissões sem audiência ao vivo. @@ -7683,12 +7982,12 @@ The loudness target is approximate and assumes track pregain and main output lev Microphone Monitor Mode - + Modo Monição Microfone Microphone Latency Compensation - + Compensação da Latência do Microfone @@ -7700,17 +7999,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contagem de Esvaziamentos do Buffer - + 0 0 @@ -7735,12 +8039,12 @@ The loudness target is approximate and assumes track pregain and main output lev Entrada - + System Reported Latency Latência Relatada pelo Sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente o buffer de áudio se o contador de esvaziamentos aumentar ou se você ouvir estouros na reprodução. @@ -7770,7 +8074,7 @@ The loudness target is approximate and assumes track pregain and main output lev Dicas e Diagnóstico - + Downsize your audio buffer to improve Mixxx's responsiveness. Diminua o buffer de áudio para melhorar a capacidade de resposta do Mixxx. @@ -7817,7 +8121,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configuração do Vinil - + Show Signal Quality in Skin Mostrar Qualidade do Sinal na Skin @@ -7844,7 +8148,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinyl Type - + Tipo do Vinil @@ -7853,46 +8157,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Qualidade do Sinal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Distribuído por xwax - + Hints Dicas - + Select sound devices for Vinyl Control in the Sound Hardware pane. Selecione dispositivos de som para o Controle por Vinil no painel do Hardware de Som. @@ -7900,58 +8209,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + 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. @@ -7969,22 +8278,17 @@ The loudness target is approximate and assumes track pregain and main output lev Taxa de quadros - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Mostra qual versão do OpenGL é suportada pela plataforma atual. - - Normalize waveform overview - Normalizar a visão geral das ondas - - - + Average frame rate Taxa de quadros média @@ -8000,7 +8304,7 @@ The loudness target is approximate and assumes track pregain and main output lev Nível de zoom padrão - + Displays the actual frame rate. Mostra o a taxa de quadros atual. @@ -8035,7 +8339,7 @@ The loudness target is approximate and assumes track pregain and main output lev Graves - + Show minute markers on waveform overview @@ -8080,10 +8384,11 @@ The loudness target is approximate and assumes track pregain and main output lev Visão global de ganho - + 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. - + A forma de onda mostra o envoltório da onda na faixa inteira. +Selecione entre tipos diferentes de visualizações da forma de onda, o que difere principalmente no nível de detalhe mostrado na forma de onda. @@ -8094,12 +8399,13 @@ Select from different types of displays for the waveform overview, which differ 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. - + A forma de onda mostra o envoltório da onda na faixa junto à posição corrente de leitura. +Selecione entre tipos diferentes de visualizações da forma de onda, o que difere principalmente no nível de detalhe mostrado na forma de onda. fps - + fps @@ -8147,29 +8453,29 @@ Select from different types of displays for the waveform, which differ primarily - + Caching Caching - + 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. O Mixxx coloca as ondas das suas faixas no disco na primeira vez que você carrega uma faixa. Isso reduz o uso da CPU quando você estiver tocando ao vivo, porém requer mais espaço no disco. - + Enable waveform caching Ativa o caching das Waveforms - + Generate waveforms when analyzing library Gerar formas de onda, ao analisar a biblioteca Beat grid opacity - + Opacidade da grelha de batidas @@ -8178,7 +8484,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8190,7 +8496,7 @@ Select from different types of displays for the waveform, which differ primarily Set amount of opacity on beat grid lines. - + Define a quantidade de opacidade das linhas da grelha de batida. @@ -8200,20 +8506,66 @@ Select from different types of displays for the waveform, which differ primarily Play marker position - + Marcador da posição de reprodução Moves the play marker position on the waveforms to the left, right or center (default). + Move o marcador da posição de reprodução nas formas de onda para a esquerda, direita ou centro (padrão). + + + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted - + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Limpar Ondas no Cache @@ -8223,7 +8575,7 @@ Select from different types of displays for the waveform, which differ primarily Sound Hardware - + Hardware de Som @@ -8248,17 +8600,17 @@ Select from different types of displays for the waveform, which differ primarily Mixer - + Mixer Auto DJ - + Auto DJ Decks - + Leitores @@ -8293,7 +8645,7 @@ Select from different types of displays for the waveform, which differ primarily &Ok Preferences standard buttons: consider the other buttons to choose a unique Alt hotkey (&) - + &Ok @@ -8357,7 +8709,7 @@ Select from different types of displays for the waveform, which differ primarily TextLabel - + TextLabel @@ -8421,7 +8773,7 @@ Select from different types of displays for the waveform, which differ primarily Current cue color - + Cor da pista atual @@ -8702,7 +9054,7 @@ This can not be undone! BPM: - + Location: Localização: @@ -8717,27 +9069,27 @@ This can not be undone! Comentários - + BPM BPM - + Sets the BPM to 75% of the current value. Define o BPM para 75% do valor atual. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Define o BPM para 50% do valor atual. - + Displays the BPM of the selected track. Exibe o BPM da faixa selecionada. @@ -8792,49 +9144,49 @@ This can not be undone! Gênero - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Define o BPM para 200% do valor atual. - + Double BPM Dobrar o BPM - + Halve BPM Diminuir o BPM pela metade - + Clear BPM and Beatgrid Limpar BPM e Grade de Batidas - + Move to the previous item. "Previous" button Mover para o item anterior. - + &Previous &Anterior - + Move to the next item. "Next" button Move para o próximo item. - + &Next &Próximo @@ -8846,7 +9198,7 @@ This can not be undone! Import Metadata from MusicBrainz - + Importar Metadados de MusicBrainz @@ -8859,12 +9211,12 @@ This can not be undone! cor - + Date added: - + Open in File Browser Abrir no Navegador de Arquivos @@ -8874,102 +9226,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: BPM da Faixa: - + 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. - + Assume constant tempo Assumir tempo constante - + Sets the BPM to 66% of the current value. Define o BPM para 66% do valor atual. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Define o BPM para 150% do valor atual. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Define o BPM para 133% do valor atual. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Pressione de acordo com a batida para definir o BPM para velocidade que você está tocando. - + Tap to Beat Toque a Batida - + Hint: Use the Library Analyze view to run BPM detection. Dica: Use a seção Analise a Biblioteca para executar a detecção de BPM. - + Save changes and close the window. "OK" button Salva as alterações e fechar a janela. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descartar as alterações e fechar a janela. - + Save changes and keep the window open. "Apply" button Salvar as alterações e deixar a janela aberta. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) @@ -9126,7 +9483,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9328,27 +9685,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9563,15 +9920,15 @@ 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 @@ -9579,60 +9936,61 @@ support. ---------- Shown when VuMeter can not be displayed. Please keep unchanged - + Sem suporte +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 @@ -9640,62 +9998,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9705,22 +10063,22 @@ Aborting the operation to avoid library inconsistencies 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? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -9854,15 +10212,15 @@ Do you really want to overwrite it? Hidden Tracks - + Músicas Ocultadas - + Export to Engine DJ - + Tracks Faixas @@ -9870,37 +10228,37 @@ 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 @@ -9910,211 +10268,211 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 auxiliary. Do you want to select an input device? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. - - - + + + Confirm Exit Confirmar a 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á 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? @@ -10130,13 +10488,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Travar - - + + Playlists Listas de Reprodução @@ -10146,58 +10504,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Destravar - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 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 @@ -10296,59 +10659,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 @@ -10424,7 +10787,7 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Switch - + Comutador @@ -10449,7 +10812,7 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora? Script - + Script @@ -10462,69 +10825,82 @@ Você quer examinar a sua biblioteca procurando por arquivos de capa agora?14-bit (MSB) - + Main + Audio path indetifier - + Booth - + Audio path indetifier + Cabine - + Headphones - + Audio path indetifier + Fones - + Left Bus + Audio path indetifier Barramento Esquerdo - + Center Bus + Audio path indetifier Barramento Central - + Right Bus + Audio path indetifier Barramento Direito - + Invalid Bus + Audio path indetifier Barramento Inválido - + Deck - + Audio path indetifier + Leitor - + Record/Broadcast - + Audio path indetifier + Gravar/Emitir - + Vinyl Control - + Audio path indetifier + Controlo Vinilo - + Microphone + Audio path indetifier Microfone - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tipo de caminho desconhecido %1 @@ -10585,12 +10961,12 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Adds noise by the reducing the bit depth and sample rate - + Adiciona ruído pela redução da Profundidade de Bit e taxa de amostragem The bit depth of the samples - + A profundidade de bit das amostras @@ -10605,7 +10981,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 - + A taxa de amostragem para a qual este sinal será reduzida @@ -10619,13 +10995,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Time - + Tempo Ping Pong - + Pingue Pongue @@ -10651,7 +11027,7 @@ 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 - + Guarda o sinal de entrada num buffer temporário e fá-lo sair após um pequeno tempo. @@ -10659,7 +11035,9 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Delay time 1/8 - 2 beats if tempo is detected 1/8 - 2 seconds if no tempo is detected - + Tempo de atraso +1/8 - 2 batidas se o BPM tiver sido detetado +1/8 - 2 segundos se o BPM não tiver sido detetado @@ -10669,7 +11047,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 - + Quanto do sinal ecoado ressalta entre os os lados esquerdo e direito do campo estéreo @@ -10684,7 +11062,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. - + Arredonda o parâmetro Tempo para o 1/4 de batida mais próxima. @@ -10697,12 +11075,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. - + Quando o parâmetro Quantização está ativo, divide o parâmetro Tempo arredondado a 1/4 de batida, por 3. @@ -10713,12 +11091,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. - + Permite tocar apenas as altas ou baixas frequências. Low Pass Filter Cutoff - + Corte Filtro Passa Baixo @@ -10741,12 +11119,13 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Resonance of the filters Default: flat top - + Ressonancia dos filtros +Padrão: Topo plano High Pass Filter Cutoff - + Corte Filtro Passa Alto @@ -10778,7 +11157,7 @@ Default: flat top Speed - + Velocidade @@ -10789,58 +11168,61 @@ Default: flat top Mixes the input with a delayed, pitch modulated copy of itself to create comb filtering - + Mistura a entrada com uma cópia de si mesma, atrasada e modulada em tonalidade para criar uma filtragem pente 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 - + Velocidade do LFO (oscilador de baixa frequência) +32 - 1/4 batidas arredondadas para 1/2 batida por ciclo LFO se o BPM tiver sido detetado +1/32 - 4 Hz se o BPM não tiver sido detetado Delay amplitude of the LFO (low frequency oscillator) - + Amplitude do atraso do LFO (oscilador de baixa frequência). Delay offset of the LFO (low frequency oscillator). With width at zero, this allows for manually sweeping over the entire delay range. - + Alinhamento do atraso do LFO (oscilador de baixa frequência). +Com a largura a zero, permite o varrimento manual ao longo de toda a extensão do atraso. Regeneration - + Regeneração Regen - + Regen How much of the delay output is feed back into the input - + Quantidade da saída atrasada que é retornada para a entrada Intensity of the effect - + Intensidade do efeito Divide rounded 1/2 beats of the Period parameter by 3. - + Divide o parâmetro Período, arredondado a 1/2 batidas, por 3. Mix - + Mistura @@ -10853,47 +11235,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Largura - + Metronome - + Metrónomo - + + The Mixxx Team - + Adds a metronome click sound to the stream - + Adiciona o som dum clique de metrónomo à stream - + BPM BPM - + Set the beats per minute value of the click sound - + Define o valor do bpm do som do clique - + Sync Sincronizar - + Synchronizes the BPM with the track if it can be retrieved - + Sincroniza o BPM com a faixa, se este puder ser obtido - + + Gain - + Set the gain of metronome click sound @@ -10914,14 +11298,16 @@ With width at zero, this allows for manually sweeping over the entire delay rang Bounce the sound left and right across the stereo field - + Balança o som entre a esquerda e direita ao longo do campo estéreo 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 - + Velocidade com que o sinal vai dum lado para o outro +1/4 - 4 batidas arredondado para 1/2 batidas se o BPM tiver sido detetado +1/4 - 4 segundos se o BPM não tiver sido detetado @@ -10936,12 +11322,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 - + Suavidade com que o sinal vai de um lado para o outro How far the signal goes to each side - + Até onde o sinal vai em cada lado @@ -10951,7 +11337,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 - + Simula o som do sinal sendo refletido nas paredes duma sala @@ -10962,18 +11348,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. - + Valores de declínio baixos causam o desvanecimento das reverberações mais rápido. Bandwidth of the low pass filter at the input. Higher values result in less attenuation of high frequencies. - + Largura de banda do filtro passa baixo na entrada. +Valores mais altos resultam em menos atenuação das altas frequências. How much of the signal to send in to the effect - + Quantidade do sinal a enviar para o efeito @@ -11163,14 +11550,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 - + Mistura o sinal de entrada com uma cópia passada através de uma série de filtros para criar uma filtragem em pente 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 - + Período do LFO (oscilador de baixa frequência) +1/4 - 4 batidas arrendondadas a 1/2 batida se o BPM tiver sido detetado +1/4 - 4 segundos se o BPM não tiver sido detetado @@ -11193,12 +11582,12 @@ Higher values result in less attenuation of high frequencies. Number of stages - + Número de estágios Sets the LFOs (low frequency oscillators) for the left and right channels out of phase with each others - + Define os LFOs (osciladores de baixa frequência) para os canais esquerdo e direito, desfasados uns com os outros @@ -11268,7 +11657,7 @@ Higher values result in less attenuation of high frequencies. LinkwitzRiley8 Isolator - + Isolador LinkwitzRiley8 @@ -11283,12 +11672,12 @@ Higher values result in less attenuation of high frequencies. Biquad Equalizer - + Equalizador Biquad BQ EQ - + EQ BQ @@ -11303,12 +11692,12 @@ Higher values result in less attenuation of high frequencies. Biquad Full Kill Equalizer - + Equalizador Biquado Full Kill BQ EQ/ISO - + EQ/ISO BQ @@ -11397,33 +11786,33 @@ Higher values result in less attenuation of high frequencies. Adjust the left/right balance and stereo width - + Ajusta o balanço esquerdo/direito e a largura estéreo Adjust balance between left and right channels - + Ajusta o balanço entre os canais esquerdo e direito Mid/Side - + Centro/Lado Bypass Fr. - + Ignorar Fr. Bypass Frequency - + Ignorar Frequência Stereo Balance - + Balanço Estéreo @@ -11431,22 +11820,25 @@ Higher values result in less attenuation of high frequencies. Fully left: mono Fully right: only side ambiance Center: does not change the original signal. - + Ajusta a largura estéreo mudando o balanço entre o meio e o lado do canal. +Totalmente à esquerda: mono +Totalmente à direita: apenas ambiente do lado +Centro: não muda o sinal original. Frequencies below this cutoff are not adjusted in the stereo field - + As frequências abaixo deste ponto de corte não são ajustadas no campo estéreo Parametric Equalizer - + Equalizador Paramétrico Param EQ - + EQ Param @@ -11458,71 +11850,75 @@ It is designed as a complement to the steep mixing equalizers. Gain 1 - + Ganho 1 Gain for Filter 1 - + Ganho para o 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. - + Controla a largura de banda do Filtro 1. +Um Q mais baixo afecta uma banda mais larga de frequências, +um Q mais alto afecta uma banda mais estreita de frequências. Center 1 - + Centro 1 Center frequency for Filter 1, from 100 Hz to 14 kHz - + Frequência central para o Filtro 1, de 100 Hz a 14 kHz Gain 2 - + Ganho 2 Gain for Filter 2 - + Ganho para o 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. - + Controla a largura de banda do Filtro 2. +Um Q mais baixo afecta uma banda mais larga de frequências, +um Q mais alto afecta uma banda mais estreita de frequências. Center 2 - + Centro 2 Center frequency for Filter 2, from 100 Hz to 14 kHz - + Frequência central para o Filtro 2, de 100 Hz a 14 kHz @@ -11533,12 +11929,12 @@ a higher Q affects a narrower band of frequencies. Cycles the volume up and down - + Sobe e desce o volume num ciclo How much the effect changes the volume - + Até que ponto o efeito altera o volume @@ -11551,54 +11947,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 - + Taxa das alterações do volume +4 batidas - 1/8 batida se o BPM tiver sido detetado +1/4 Hz - 8 Hz se o BPM não tiver sido detetado Width of the volume peak 10% - 90% of the effect period - + Largura do pico de volume +10% - 90% do período do efeito Shape of the volume modulation wave Fully left: Square wave Fully right: Sine wave - + Forma da onda de modulação do volume +Tudo esquerda: Onda quadrada +Tudo direita: Onda sinusoidal When the Quantize parameter is enabled, divide the effect period by 3. - + Quando o parâmetro Quantização está ativo, divide o período do efeito por 3. Waveform - + Forma de Onda 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 - + Desloca a posição do pico de volume dentro do período +Tudo esquerda: início do período do efeito +Tudo direita: fim do período do efeito Round the Rate parameter to the nearest whole division of a beat. - + Aproxima o parâmetro Taxa à divisão inteira mais próxima de uma batida. Triplet - + Terceto @@ -11677,14 +12080,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11822,7 +12225,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Transpassar @@ -11890,15 +12293,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11927,6 +12401,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11937,11 +12412,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11953,11 +12430,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11986,12 +12465,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12026,42 +12505,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12079,7 +12558,7 @@ may introduce a 'pumping' effect and/or distortion. Low Disk Space Warning - + Aviso de Pouco Espaço em Disco @@ -12104,7 +12583,7 @@ may introduce a 'pumping' effect and/or distortion. You can change the location of the Recordings folder in Preferences -> Recording. - + Pode alterar o local da pasta Gravações em Preferências -> Gravação. @@ -12163,7 +12642,7 @@ may introduce a 'pumping' effect and/or distortion. Memory cues - + Cues de memória @@ -12322,193 +12801,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx encontrou um problema - + Could not allocate shout_t Não foi possível alocar shout_t - + Could not allocate shout_metadata_t Não foi possível alocar shout_metadata_t - + Error setting non-blocking mode: Erro ao ajustar modo não-travado: - + Error setting tls mode: - + Error setting hostname! Erro ao configurar o nome do host! - + Error setting port! Erro ao configurar a porta! - + Error setting password! Erro ao configurar a senha! - + Error setting mount! Erro ao configurar o montagem! - + Error setting username! Erro ao configurar o nome de usuário! - + Error setting stream name! Erro ao configurar o nome da stream! - + Error setting stream description! Erro ao configurar a descrição da stream! - + Error setting stream genre! Erro ao configurar o gênero da stream! - + Error setting stream url! Erro ao configurar o endereço da stream! - + Error setting stream IRC! - + Erro a definir a stream IRC! - + Error setting stream AIM! - + Erro a definir a stream AIM! - + Error setting stream ICQ! - + Erro a definir a stream ICQ! - + Error setting stream public! Erro ao tornar a stream pública! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Erro ao configurar a taxa de bits - + Error: unknown server protocol! Erro: protoloco do servidor desconhecido! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Erros ao configurar o protocolo! - + Network cache overflow Overflow do cache da rede - + Connection error - + Erro de ligação - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Uma das ligações de Emissão em Direto apresentou este erro:<br><b>Erro com a ligação '%1':</b><br> - + Connection message - + Mensagem da ligação - + <b>Message from Live Broadcasting connection '%1':</b><br> - + <b>Mensagem da ligação Emissão em Direto '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. A conexão com o servidor de streaming foi perdida e %1 tentativas de reconectar falharam. - + Lost connection to streaming server. A conexão com o servidor de streaming foi perdida. - + Please check your connection to the Internet. Por favor verifique a sua conexão com a internet. - + Can't connect to streaming server A conexão com o servidor de streaming não foi possível. - + Please check your connection to the Internet and verify that your username and password are correct. Por favor verifique a sua conexão com a internet e verifique se o seu usuário e senha estão corretos. @@ -12516,7 +12995,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrado @@ -12524,23 +13003,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device o dispositivo - + An unknown error occurred Ocorreu um erro desconhecido - + Two outputs cannot share channels on "%1" Duas saídas não podem compartilhar o canal "%1" - + Error opening "%1" Erro abrindo "%1" @@ -12676,7 +13155,7 @@ may introduce a 'pumping' effect and/or distortion. Effects within the chain must be enabled to hear them. - + Os efeitos dentro da cadeia devem estar ativados para serem ouvidos. @@ -12691,7 +13170,7 @@ may introduce a 'pumping' effect and/or distortion. Waveform Display - + Formato da onda de exibição @@ -12725,7 +13204,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vinil Giratório @@ -12737,7 +13216,7 @@ may introduce a 'pumping' effect and/or distortion. Right click to show cover art of loaded track. - + Clique direito para mostrar a capa do disco da faixa carregada. @@ -12797,7 +13276,7 @@ may introduce a 'pumping' effect and/or distortion. Indicates when the signal on the auxiliary is clipping, - + Indica quando o sinal auxiliar está clipando. @@ -12812,22 +13291,22 @@ may introduce a 'pumping' effect and/or distortion. Booth Gain - + Ganho Cabine Adjusts the booth output gain. - + Ajusta o ganho de saída para a cabine. Crossfader - + Crossfader Balance - + Balanço @@ -12897,7 +13376,7 @@ may introduce a 'pumping' effect and/or distortion. Preview Deck - + Deck de Prá-visualização @@ -12907,7 +13386,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Arte da Capa @@ -13004,7 +13483,7 @@ may introduce a 'pumping' effect and/or distortion. Microphone Talkover Mode - + Microfone Modo Talkover @@ -13014,12 +13493,12 @@ may introduce a 'pumping' effect and/or distortion. Manual: Reduce music volume by a fixed amount set by the Strength knob. - + Manual: Reduz o volume de música de um valor fixo definido pelo botão Strenght. Behavior depends on Microphone Talkover Mode: - + O comportamento depende do Modo Talkover Microfone: @@ -13097,243 +13576,243 @@ may introduce a 'pumping' effect and/or distortion. Zera o ganho do EQ de graves enquanto ativo. - + Displays the tempo of the loaded track in BPM (beats per minute). Mostra o tempo da faixa carregada em BPM (batidas por minuto). - + Tempo - + Tempo - + Key The musical key of a track Tom - + BPM Tap Toque o BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. O BPM vai ser ajustado de acordo com a velocidade das batidas neste botão. - + Adjust BPM Down Ajustar o BPM Abaixo - + When tapped, adjusts the average BPM down by a small amount. Quando pressionado, diminui um pouco o BPM médio. - + Adjust BPM Up Ajustar o BPM Acima - + When tapped, adjusts the average BPM up by a small amount. Quando pressionado, aumenta um pouco o BPM médio. - + Adjust Beats Earlier Atrasar Grade de Batidas - + When tapped, moves the beatgrid left by a small amount. Quando pressionado, move a grade de batidas um pouco para a esquerda. - + Adjust Beats Later Adiantar Grade de Batidas - + When tapped, moves the beatgrid right by a small amount. Quando pressionado, move a grade de batidas um pouco para a direta. - + Tempo and BPM Tap Toque de Tempo e BPM - + Show/hide the spinning vinyl section. Mostra/Oculta a seção do vinil giratório - + Keylock Trava de Tom - + Toggling keylock during playback may result in a momentary audio glitch. Ligar/Desligar a trava de tom enquanto tocando pode resultar em um glitch de áudio momentâneo - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Alterna a visibilidade do Controlo da Taxa - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. Coloca um ponto de sinalização na posição atual na forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Pára a faixa no CUE Point, OU vai para o CUE Point e reproduz a faixa após soltar o botão (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Define o CUE point (em modo Pioneer/Mixxx/Numark), define o CUE point e toca após largar a tecla (modo CUP) OU escuta o preview (modo Denon). - + Is latching the playing state. - + Seeks the track to the cue point and stops. Avança a faixa até ao Cue Point e para. - + Play Tocar - + Plays track from the cue point. - + Toca a faixa a partir do ponto de marcação. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Altera a velocidade da faixa (afeta o tempo e o pitch). Se o keylock estiver ativo, apenas o tempo é alterado. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Mostra o alcance atual do deslizante de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration Duração da Gravação @@ -13483,7 +13962,7 @@ may introduce a 'pumping' effect and/or distortion. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Define o quanto reduzir o volume da música quando o volume de microfones ativos passa de um determinado limite. @@ -13556,947 +14035,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Mostra a duração da gravação em andamento. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Define o marcador Início Loop da faixa para a atual posição de reprodução. - + Press and hold to move Loop-In Marker. - + Pressione e mantenha para mover o marcador Início Loop. - + Jump to Loop-In Marker. - + Saltar para o marcador Início Loop. - + Sets the track Loop-Out Marker to the current play position. - + Define o marcador Fim Loop para a atual posição de reprodução. - + Press and hold to move Loop-Out Marker. - + Pressione e segure para mover o Marcador de Fim de Loop - + Jump to Loop-Out Marker. - + Saltar para o marcador Fim Loop. - + If the track has no beats the unit is seconds. - + Beatloop Size Tamanho do Loop de Batidas - + Select the size of the loop in beats to set with the Beatloop button. - + Escolher o tamanho do loop em batidas estabelecer com o botão Loop. - + Changing this resizes the loop if the loop already matches this size. - + Alterando isto redimensiona o loop se o loop já coincide com este tamanho. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. - + Reduz a metade o tamanho dum loop existente, ou reduz a metade o tamanho do próximo loop definido com o botão Loop. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. - + Duplica o tamanho dum loop existente, ou duplica o tamanho do próximo loop definido com o botão Loop. - + Start a loop over the set number of beats. Cria um loop sobre o número de batidas selecionado - + Temporarily enable a rolling loop over the set number of beats. Ativa temporariamente um loop de rolamento sobre o número de batidas selecionado. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Beatjump/Loop Tamanho Movimento - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Selecione o número de batidas a saltar ou a deslocar o loop com os botões Beatjump Frente/Atrás. - + Beatjump Forward - + Beatjump Frente - + Jump forward by the set number of beats. - + Salta para a frente o número de batidas predefinidas. - + Move the loop forward by the set number of beats. - + Move o loop para a frente o número de batidas prédefinidas. - + Jump forward by 1 beat. - + Salta para a frente 1 batida. - + Move the loop forward by 1 beat. - + Move o loop para a frente 1 batida. - + Beatjump Backward - + Beatjump Atrás - + Jump backward by the set number of beats. - + Salta para trás o número de batidas prédefinidas. - + Move the loop backward by the set number of beats. - + Move o loop para trás o número de batidas prédefinidas. - + Jump backward by 1 beat. - + Salta para trás 1 batida. - + Move the loop backward by 1 beat. - + Move o loop para trás 1 batida. - + Reloop - + Reloop - + If the loop is ahead of the current position, looping will start when the loop is reached. - + Se o loop estiver à frente da posição atual de reprodução, o ciclo de looping começará quando o loop for atingido. - + Works only if Loop-In and Loop-Out Marker are set. - + Funciona apenas se os marcadores de Início Loop e Fim Loop estiverem definidos. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Ativar loop, saltar para o marcador Início Loop, e parar a reprodução. - + Displays the elapsed and/or remaining time of the track loaded. Mostra o tempo executado e/ou restante da faixa carregada. - + Click to toggle between time elapsed/remaining time/both. Clique para alternar entre tempo executado/restante tempo/ambos. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + Mistura - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit - + Ajustar a mistura do sinal seco (entrada) com o molhado (saída) da unidade de efeito - + D/W mode: Crossfade between dry and wet - + Modo S/M: crossfade entre seco e molhado - + D+W mode: Add wet to dry - + Modo S/M: adicionar molhado ao seco - + Mix Mode - + Modo Mistura - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit - + Ajustar a mistura do sinal seco (entrada) com o sinal molhado (saída) da unidade de efeito - + 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 Seco/Molhado (linhas cruzadas): o botão de Mistura faz a transição entre seco e molhado. +Usar isto para alterar o som da faixa com EQ e filtros de efeitos. - + 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 Seco+Molhado (linha seca plana): o botão de Mistura adiciona o molhado ao seco. +Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtros de efeitos. - + Route the main mix through this effect unit. - + Route the left crossfader bus through this effect unit. - + Envia o bus esquerdo do crossfader através desta unidade de efeito. - + Route the right crossfader bus through this effect unit. - + Envia o bus direito do crossfader através desta unidade de efeito. - + Right side active: parameter moves with right half of Meta Knob turn - + Lado direito ativo: o parâmetro muda com meia volta para a direita do Botão Meta - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Menu Definições Skin - + Show/hide skin settings menu - + Mostra/Oculta menu de definições. - + Save Sampler Bank Salvar Banco do Sampler - + Save the collection of samples loaded in the samplers. - + Guarda a colecção de samples carregadas nos samplers. - + Load Sampler Bank Carregar Banco do Sampler - + Load a previously saved collection of samples into the samplers. - + Carrega uma colecção de samples guardada previamente nos samplers. - + Show Effect Parameters Mostrar Parâmetros do Efeito - + Enable Effect Ativar Efeito - + Meta Knob Link Vínculo do Botão Meta - + Set how this parameter is linked to the effect's Meta Knob. Defina como este parâmetro está vinculado aos efeitos do Botão Meta. - + Meta Knob Link Inversion Vínculo inverso do Botão Meta - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Inverte a direção que este parâmetro se move quando rodando o efeito do Botão Meta - + Super Knob Super Botão - + Next Chain Próxima Corrente - + Previous Chain Corrente Anterior - + Next/Previous Chain Corrente Seguinte/Anterior - + Clear Limpar - + Clear the current effect. Limpa o efeito atual. - + Toggle Ligar/Desligar - + Toggle the current effect. Liga/Desliga o efeito atual. - + Next Próximo - + Clear Unit Limpar Unidade - + Clear effect unit. Limpa a unidade de efeito. - + Show/hide parameters for effects in this unit. - + Mostra/Oculta parâmetros para efeitos nesta unidade. - + Toggle Unit Ligar/Desligar Unidade - + Enable or disable this whole effect unit. - + Ativa ou desativa esta unidade completa de efeito. - + Controls the Meta Knob of all effects in this unit together. - + Controla o Meta Botão de todos os efeitos conjuntamente nesta unidade. - + Load next effect chain preset into this effect unit. - + Carrega a próxima cadeia de efeitos prédefinida nesta unidade de efeito. - + Load previous effect chain preset into this effect unit. - + Carrega a anterior cadeia de efeitos prédefinida nesta unidade de efeito. - + Load next or previous effect chain preset into this effect unit. - + Carrega a próxima ou anterior cadeia de efeitos prédefinida nesta unidade de efeito. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Atribuir Unidade de Efeito - + Assign this effect unit to the channel output. - + Atribuir esta unidade de efeito ao canal de saída. - + Route the headphone channel through this effect unit. - + Encaminha o canal de auscultadores através desta unidade de efeito. - + Route this deck through the indicated effect unit. - + Encaminha este leitor através da unidade de efeito indicada. - + Route this sampler through the indicated effect unit. - + Encaminha este sampler através da unidade de efeito indicada. - + Route this microphone through the indicated effect unit. - + Encaminha este microfone através da unidade de efeito indicada. - + Route this auxiliary input through the indicated effect unit. - + Encaminha esta entrada auxiliar através da unidade de efeito indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. - + Esta unidade de efeito deve também ser atribuída a um leitor ou a outra fonte sonora para ouvir o efeito. - + Switch to the next effect. Troca para o próximo efeito. - + Previous Anterior - + Switch to the previous effect. Troca para o efeito anterior. - + Next or Previous Próximo ou Anterior - + Switch to either the next or previous effect. Troca para o efeito seguinte ou anterior. - + Meta Knob Botão Meta - + Controls linked parameters of this effect Controla os parâmetros vinculados deste efeito - + Effect Focus Button Botão de Foco do Efeito - + Focuses this effect. Se foca no efeito. - + Unfocuses this effect. Desfoca este efeito. - + Refer to the web page on the Mixxx wiki for your controller for more information. Acesse a página web do seu controlador na wiki do Mixxx para mais informações. - + Effect Parameter Parâmetro do Efeito - + Adjusts a parameter of the effect. Ajusta um parâmetro do efeito. - + Inactive: parameter not linked - + Inativo: parâmetro não ligado - + Active: parameter moves with Meta Knob - + Activo: o parâmetro move-se com o Botão Meta - + Left side active: parameter moves with left half of Meta Knob turn - + Lado esquerdo ativo: o parâmetro move-se com meia volta para a esquerda do Botão Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half - + Lado esquerdo e direito ativo: o parâmetro desloca-se ao longo da sua extensão com meia volta do Botão Meta e para trás com a outra meia volta. - - + + Equalizer Parameter Kill Matar Parâmetro do Equalizador - - + + Holds the gain of the EQ to zero while active. Mantem o ganho do equalizador em zero quanto ativo. - + Quick Effect Super Knob Super Botão de Efeito Rápido - + Quick Effect Super Knob (control linked effect parameters). Super Botão de Efeito Rápido (controla parâmetros de efeitos conectados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Dica: Mude o modo padrão de Efeito Rápido em Preferências -> Equalizadores. - + Equalizer Parameter Parâmetro do Equalizador - + Adjusts the gain of the EQ filter. Ajusta o ganho do filtro de equalização. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Dica: Mude o modo padrão do equalizador em Preferências -> Equalizadores. - - + + Adjust Beatgrid Ajustar a Grade de Batidas - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta a grade de batidas de forma que a batida mais próxima é alinhada com a posição atual. - - + + Adjust beatgrid to match another playing deck. Ajusta a grade de batidas para combinar com outro deck tocando. - + If quantize is enabled, snaps to the nearest beat. Se a quantização estiver ativada, vai para a batida mais próxima. - + Quantize Quantizar - + Toggles quantization. Liga/Desliga a quantização. - + Loops and cues snap to the nearest beat when quantization is enabled. Enquanto a quantização estiver ativada, os loops e os hotcues sempre entrarão na batida mais próxima. - + Reverse - + Inverter - + Reverses track playback during regular playback. Inverte a reprodução da faixa. - + Puts a track into reverse while being held (Censor). Coloca a faixa em reprodução invertida enquanto pressionado (Censurar). - + Playback continues where the track would have been if it had not been temporarily reversed. A reprodução continua onde a faixa estaria se ela não estivesse sido temporariamente invertida. - - - + + + Play/Pause Tocar/Pausar - + Jumps to the beginning of the track. Pula para o início da faixa. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza o tempo (BPM) e a fase para a da outra faixa, ou BPM se detectado nos dois. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza o tempo (BPM) para o da outra faixa, ou o BPM se detectado nos dois. - + Sync and Reset Key Sincronizar e Redefinir o Tom - + Increases the pitch by one semitone. Aumenta o pitch por um semitom. - + Decreases the pitch by one semitone. Diminui o pitch por um semitom. - + Enable Vinyl Control Ativar Controle por Vini - + When disabled, the track is controlled by Mixxx playback controls. Quando desativado, a faixa é controlada pelos controles de reprodução do Mixxx. - + When enabled, the track responds to external vinyl control. Quando ativado, a faixa responde ao controle por vinil externo - + Enable Passthrough Ativar Repasse - + Indicates that the audio buffer is too small to do all audio processing. - + Indica que o buffer de áudio é muito pequeno para fazer todo o processamento de aúdio. - + Displays cover artwork of the loaded track. Mostra a arte da capa da faixa carregada. - + Displays options for editing cover artwork. Mostra opções para editar a arte da capa. - + Star Rating Classificação de Estrela - + Assign ratings to individual tracks by clicking the stars. Defina uma classificação para faixas individuais clicando nas estrelas. @@ -14628,36 +15144,36 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Microphone Talkover Ducking Strength - + Amplitude da Redução no Talkover - + Prevents the pitch from changing when the rate changes. Previne que o tom mude com as mudanças na taxa do pitch. - + Changes the number of hotcue buttons displayed in the deck - + Altera o número de botões hotcue mostrados no leitor - + Starts playing from the beginning of the track. Começa a tocar do começo da faixa. - + Jumps to the beginning of the track and stops. Pula para o começo da faixa e para. - - + + Plays or pauses the track. Toca ou pausa uma música. - + (while playing) (enquanto estiver tocando) @@ -14677,215 +15193,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (enquanto parada) - + Cue Cue - + Headphone Fone - + Mute Silenciar - + Old Synchronize Sincronização Antiga - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincroniza com o primeiro deck (em ordem numérica) que estiver tocando uma faixa e tem BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Se nenhum deck estiver tocando, sincroniza com o primeiro deck que tiver BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Segure por pelo menos um segundo para ativar a trava de sincronização para este 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 com trava de sincronização vão tocar no mesmo tempo, e os decks que também tem quantização ativada vão sempre ter suas batidas alinhadas. - + Resets the key to the original track key. Redefine o tom para o tom original da faixa. - + Speed Control Controle de Velocidade - - - + + + Changes the track pitch independent of the tempo. Muda o pitch da faixa independentemente do tempo. - + Increases the pitch by 10 cents. Aumenta o pitch por 10 cents. - + Decreases the pitch by 10 cents. Diminui o pitch por 10 cents. - + Pitch Adjust Ajustar o Pitch - + Adjust the pitch in addition to the speed slider pitch. Ajusta o pitch junto com o deslizante de velocidade pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Gravar Mixagem - + Toggle mix recording. Ativa/Desativa gravação da mixagem. - + Enable Live Broadcasting Ativar Transmissão Ao Vivo - + Stream your mix over the Internet. Transmite sua mixagem pela Internet. - + Provides visual feedback for Live Broadcasting status: Provê retorno visual para o estado de Transmissão Ao Vivo: - + disabled, connecting, connected, failure. desativado, conectando, conectado, falha. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Quando ativado, o deck toca diretamente o áudio chegando na entrada de vinil. - + Playback will resume where the track would have been if it had not entered the loop. A execução vai continuar como se a faixa não estivesse entrado no loop. - + Loop Exit Sair do Loop - + Turns the current loop off. Desliga o loop atual. - + Slip Mode Modo de Deslizamento - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Quando ativo, a execução continua silenciosa no fundo durante um loop, reprodução invertida, um scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Uma vez desativado, a execução audível continuará onde a música estaria. - + Track Key The musical key of a track Tom da Faixa - + Displays the musical key of the loaded track. Mostra o tom musical da faixa carregada. - + Clock Relógio - + Displays the current time. Mostra a hora atual. - + Audio Latency Usage Meter Uso da Latência de Áudio - + Displays the fraction of latency used for audio processing. Mostra uma fração da latência usada para o processamento de áudio. - + A high value indicates that audible glitches are likely. Um valor alto indica que ruídos no áudio são prováveis. - + Do not enable keylock, effects or additional decks in this situation. Não ative a trava de tom, efeitos ou decks adicionais nessa situação. - + Audio Latency Overload Indicator Indicador de Sobrecarga na Latência do Áudio @@ -14907,17 +15423,17 @@ Use this to change only the effected (wet) signal with EQ and filter effects. Crossfader Orientation - + Orientação do Crossfader Set the channel's crossfader orientation. - + Define a orientação do crossfader entre canais. Either to the left side of crossfader, to the right side or to the center (unaffected by crossfader) - + Quer para o lado esquerdo do crossfader, ou para o lado direito, ou para o centro (não afetada pelo crossfader) @@ -14925,259 +15441,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Ative o Controle por Vinil no Menu -> Opções. - + Displays the current musical key of the loaded track after pitch shifting. Mostra o tom musical atual da faixa carregada depois do pitch alterado. - + Fast Rewind Retrocesso Rápido - + Fast rewind through the track. Rebobina a música rapidamente. - + Fast Forward Avanço Rápido - + Fast forward through the track. Avança rápido pela faixa. - + Jumps to the end of the track. Pula para o fim da faixa. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Define o pitch para um tom que permite uma transição harmônica da outra faixa. Requer um tom detectado nos dois decks envolvidos, - - - + + + Pitch Control Controle do Pitch - + Pitch Rate Taxa de Pitch - + Displays the current playback rate of the track. Mostra a taxa de reprodução da música em execução. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Quando ativo, a música vai repetir se você passar do final ou inverter a reprodução antes do início. - + Eject Ejetar - + Ejects track from the player. Ejeta a música do deck. - + Hotcue - + Marcação - + If hotcue is set, jumps to the hotcue. Se o hotcue estiver definido, pula para o ele. - + If hotcue is not set, sets the hotcue to the current play position. Se o hotcue não estiver definido, faz um hotcue na posição atual. - + Vinyl Control Mode Modo de Controle por Vinil - + Absolute mode - track position equals needle position and speed. Modo absoluto - a posição da faixa é igual à posição e velocidade da agulha. - + Relative mode - track speed equals needle speed regardless of needle position. Modo relativo - a velocidade da faixa é igual à da agulha, independente da posição. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo constante - a velocidade da faixa é igual à última velocidade conhecida, independente da agulha. - + Vinyl Status Estado do Vinil - + Provides visual feedback for vinyl control status: Provê retorno visual para o estado do controle por vinil: - + Green for control enabled. Verde quando o controle estiver ativado. - + Blinking yellow for when the needle reaches the end of the record. Amarelo piscante quando a agulha estiver no fim do disco. - + Loop-In Marker Marca de Entrada do Loop - + Loop-Out Marker Marca de Saída do Loop - + Loop Halve Divide o Loop pela Metade - + Halves the current loop's length by moving the end marker. Diminui o comprimento atual do loop pela metade movendo a marca de saída. - + Deck immediately loops if past the new endpoint. O deck vai loopar imediatamente se passar do novo ponto de saída. - + Loop Double Dobrar o Loop - + Doubles the current loop's length by moving the end marker. Dobra o comprimento do loop atual movendo a marca de saída. - + Beatloop Loop de Batidas - + Toggles the current loop on or off. Alterna o loop atual entre ligado ou desligado. - + Works only if Loop-In and Loop-Out marker are set. Funciona somente se existirem marcas de entrada e saída do loop. - + Vinyl Cueing Mode Modo de Cue do Vinil - + Determines how cue points are treated in vinyl control Relative mode: Determina como os pontos cue são tratados com o controle por vinil em modo relativo: - + Off - Cue points ignored. Desligado - Pontos cue ignorados. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Único - Se a agulha for solta depois doponto cue, a faixa vai até aquele ponto cue. - + Track Time Tempo da Música - + Track Duration Duração da Faixa - + Displays the duration of the loaded track. Mostra a duração da faixa carregada. - + Information is loaded from the track's metadata tags. A informação é carregada a partir das etiquetas de metadados. - + Track Artist Artista da Faixa - + Displays the artist of the loaded track. Mostra o artista da faixa carregada. - + Track Title Título da Faixa - + Displays the title of the loaded track. Exibe o título da faixa carregada. - + Track Album Álbum da Faixa - + Displays the album name of the loaded track. Exibe o nome do álbum da faixa carregada. - + Track Artist/Title Artista/Título da Faixa - + Displays the artist and title of the loaded track. Mostra o artista e título da faixa carregada. @@ -15370,7 +15886,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 - + Limpar capa do disco @@ -15405,47 +15921,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue - - Left-click: Use the old size or the current beatloop size as the loop size + + Turn this cue into a saved loop - - Right-click: Use the current play position as loop end if it is after the cue + + Left-click: Use the old size if known or the current beatloop size as the loop size - + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 @@ -15570,323 +16114,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Criar &Nova Lista de Reprodução - + Create a new playlist Criar uma nova lista de reprodução - + Ctrl+n Ctrl+n - + Create New &Crate Criar Nova &Caixa - + Create a new crate Criar uma nova caixa - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Exibir - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Pode não ser suportado em todas as skins. - + Show Skin Settings Menu - + Mostrar Menu de Configurações do Tema - + Show the Skin Settings Menu of the currently selected Skin - + Mostra o menu das configurações do tema do tema atualmente selecionado - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar Seção do Microfone - + Show the microphone section of the Mixxx interface. Mostra a seção do microfone na interface do Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Mostrar Seção do Controle por Vinil - + Show the vinyl control section of the Mixxx interface. Mostra a seção do controle por vinil na interface do Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Mostrar Deck de Pré-escuta - + Show the preview deck in the Mixxx interface. Mostra o deck de pré-escuta na interface do Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Mostrar Arte da Capa - + Show cover art in the Mixxx interface. Mostra a arte da capa na interface do Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximizar 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. - + Space Menubar|View|Maximize Library Espaço - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen Te&la cheia - + Display Mixxx using the full screen Exibir o Mixxx usando Tela Cheia - + &Options &Opções - + &Vinyl Control Controle por &Vinil - + Use timecoded vinyls on external turntables to control Mixxx Use vinils com timecode em toca-discos externos para controlar o Mixxx - + Enable Vinyl Control &%1 Ativar Controle por Vinil &%1 - + &Record Mix &Gravar Mixagem - + Record your mix to a file Grave sua mixagem para um arquivo - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Ativar Transmissão Ao &Vivo - + Stream your mixes to a shoutcast or icecast server Transmita suas mixagens para um servidor shoutcast ou icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Ativar Atalhos de &Teclado - + Toggles keyboard shortcuts on or off Ativa/Desativa atalhos de teclado - + Ctrl+` Ctrl+` - + &Preferences &Preferências - + Change Mixxx settings (e.g. playback, MIDI, controls) Muda as configurações do Mixxx (ex.: reprodução, MIDI, controles) - + &Developer &Desenvolvedor - + &Reload Skin &Recarregar Skin - + Reload the skin Recarregar a skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Ferramen&tas de Desenvolvedor - + Opens the developer tools dialog Abre o diálogo das ferramentas de desenvolvedor - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Dados: Balde de &Experimento - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Ativa o modo de experimento. Coleta dados no balde de localização EXPERIMENT. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Dados: Balde &Base - + Enables base mode. Collects stats in the BASE tracking bucket. Ativa o modo base. Coleta dados no balde de localização BASE. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Deb&ugger Ativado - + Enables the debugger during skin parsing - + Ativa o debugger enquanto a skin estiver sendo analisada - + Ctrl+Shift+D Ctrl+Shift+D - + &Help A&juda - + Show Keywheel menu title @@ -15903,74 +16487,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel F12 - + &Community Support &Suporte da Comunidade - + Get help with Mixxx Obtenha ajuda com o Mixxx - + &User Manual Manual do &Usuário - + Read the Mixxx user manual. Leia o manual do usuário do Mixxx. - + &Keyboard Shortcuts Atalhos de &Teclado - + Speed up your workflow with keyboard shortcuts. Acelere seu fluxo de trabalho com atalhos de teclado. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Traduzir Este Programa - + Help translate this application into your language. Ajude a traduzir este aplicativo para o seu idioma. - + &About So&bre - + About the application Sobre a aplicação @@ -15978,25 +16562,25 @@ This can not be undone! WOverview - + Passthrough Transpassar - + 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 @@ -16005,25 +16589,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Limpar entrada - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Pesquisa - + Clear input Limpar entrada @@ -16034,93 +16606,87 @@ This can not be undone! Pesquisar... - + Clear the search bar input field - - Enter a string to search for - Insira uma palavra para pesquisar + + Return + Enter - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Atalho + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Foco + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return - Enter + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Sair da pesquisa + + Delete query from history + @@ -16204,625 +16770,640 @@ This can not be undone! WTrackMenu - + Load to - + Carregar no - + Deck - + Deck - + Sampler Sampler - + Add to Playlist Adicionar à Lista de Reprodução - + Crates Caixas - + Metadata Metadado - + Update external collections - + Cover Art Arte da Capa - + Adjust BPM - + Ajustar BPM - + Select Color - - + + Analyze Analisar - - + + Delete Track Files - + 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) - + Adicionar à Fila Auto DJ (Substituir) - + Preview Deck Deck de Pré-escuta - + Remove Remover - + Remove from Playlist - + Remover da Playlist - + Remove from Crate - + Remover da Caixa - + Hide from Library Ocultar da Biblioteca - + Unhide from Library Desocultar da Biblioteca - + Purge from Library Eliminar da Biblioteca - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Propriedades - + Open in File Browser Abrir no Navegador de Arquivos - + Select in Library - + Import From File Tags Importar das Etiquetas do Arquivo - + Import From MusicBrainz - + Importar do MusicBrainz - + Export To File Tags - + Exportar Para Tags Ficheiros - + BPM and Beatgrid - + BPM e Grelha de Batidas - + Play Count - + Contador de Leitura - + Rating Classificação - + Cue Point - + Ponto de Marcação - - + + Hotcues Hotcues - + Intro - + Outro - + Key Tom - + ReplayGain ReplayGain - + Waveform - + Forma de Onda - + Comment Comentário - + All Todos - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Travar o BPM - + Unlock BPM Destravar o BPM - + Double BPM Dobrar o BPM - + Halve BPM Diminuir o BPM pela metade - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Deck %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: 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 - + Scaling BPM of %n track(s) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Locking BPM of %n track(s)Locking BPM of %n track(s)Bloqueando o BPM de %n faixa(s) - + Unlocking BPM of %n track(s) Unlocking BPM of %n track(s)Unlocking BPM of %n track(s)Desbloqueando BPM de %n faixa(s) - + Setting rating of %n track(s) - + Setting color of %n track(s) Setting color of %n track(s)Setting color of %n track(s)Mudando a cor de %n faixa(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Cancelar - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Fechar - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16876,37 +17457,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16914,12 +17495,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Mostrar ou ocultar colunas. - + Shuffle Tracks @@ -16957,22 +17538,22 @@ This can not be undone! - + Choose music library directory Escolha o diretório da biblioteca de música - + 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. @@ -17067,12 +17648,12 @@ Clique OK para sair. Export Modified Track Metadata - + Exportar Metadados Modificados da Faixa 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. - + O Mixxx poderá esperar para modificar ficheiros até que não estejam carregados em quaisquer leitores ou samplers. Se não vir os metadados alterados noutros programas imediatamente, ejecte a faixa de todos os leitores e samplers ou encerre o Mixxx. @@ -17121,7 +17702,7 @@ Clique OK para sair. No network access - + Sem acesso a rede @@ -17129,6 +17710,24 @@ Clique OK para sair. A requisição de Rede não foi iniciada + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17137,4 +17736,27 @@ Clique OK para sair. Nenhum efeito carregado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_pt_PT.qm b/res/translations/mixxx_pt_PT.qm index f81985100433..16a5dd9eb5e0 100644 Binary files a/res/translations/mixxx_pt_PT.qm and b/res/translations/mixxx_pt_PT.qm differ diff --git a/res/translations/mixxx_pt_PT.ts b/res/translations/mixxx_pt_PT.ts index 267c8ef558dd..074828c714a7 100644 --- a/res/translations/mixxx_pt_PT.ts +++ b/res/translations/mixxx_pt_PT.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Caixas - + Enable Auto DJ Habilitar Auto DJ - + Disable Auto DJ Desativar Auto DJ - + Clear Auto DJ Queue Limpar fila do Auto DJ - + Remove Crate as Track Source Remover Caixa como Fonte de Faixas - + Auto DJ - + Auto DJ - + Confirmation Clear Confirmar limpeza - + Do you really want to remove all tracks from the Auto DJ queue? Você tem certeza que quer remover todas as faixas da fila do Auto DJ? - + This can not be undone. Esta ação não pode ser desfeita. - + Add Crate as Track Source Adicionar Caixa como Fonte de Faixas @@ -222,7 +230,7 @@ - + Export Playlist Exportar Playlist @@ -236,7 +244,7 @@ Export to Engine DJ "Engine DJ" is a product name and must not be translated. - + Exportar para mecanismo DJ @@ -276,13 +284,13 @@ - + Playlist Creation Failed Criação da Playlist Falhou - + An unknown error occurred while creating playlist: Ocorreu um erro desconhecido ao criar a playlist: @@ -297,12 +305,12 @@ Você realmente deseja excluir a lista de reprodução <b>%1</b>? - + 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) @@ -310,12 +318,12 @@ BaseSqlTableModel - + # - + # - + Timestamp Data e Hora @@ -323,7 +331,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Não conseguiu carregar a faixa. @@ -353,7 +361,7 @@ BPM - + BPM @@ -361,7 +369,7 @@ Canais - + Color Cor @@ -376,7 +384,7 @@ Compositor - + Cover Art Capa do Disco @@ -386,7 +394,7 @@ Data Adicionada - + Last Played Última Execução @@ -416,17 +424,17 @@ Tom - + Location Localização Overview - + Visão geral - + Preview Antevisão @@ -466,7 +474,7 @@ Ano - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Buscando imagem ... @@ -488,22 +496,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Não é possível usar o armazenamento seguro de senha: o acesso ao keychain falhou. - + Secure password retrieval unsuccessful: keychain access failed. Recuperação da palavra passe segura sem sucesso: o acesso ao porta chaves falhou. - + Settings error Erro nas definições - + <b>Error with settings for '%1':</b><br> <b>Erro com configurações para '%1':</b><br> @@ -591,7 +599,7 @@ - + Computer Computador @@ -611,19 +619,19 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + Ele mostra os dados das tags do arquivo, não os dados da faixa da sua biblioteca Mixxx como outras visualizações de faixa. - + If you load a track file from here, it will be added to your library. - + Se você carregar um arquivo de faixa daqui, ele será adicionado à sua biblioteca. @@ -706,7 +714,7 @@ ReplayGain - + ReplayGain @@ -734,12 +742,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. @@ -749,108 +757,113 @@ The file '%1' could not be found. - + O arquivo '%1' não pôde ser encontrado. The file '%1' could not be loaded. - + O arquivo '%1' não pôde ser carregado. The file '%1' could not be loaded because it contains %2 channels, and only 1 to %3 are supported. - + O arquivo '%1' não pôde ser carregado porque contém %2 canais, e somente 1 a %3 são suportados. The file '%1' is empty and could not be loaded. - + O arquivo '%1' não pôde ser carregado. CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: - + Mixxx é um software de DJ de código aberto. Para mais informações, consulte: - + Starts Mixxx in full-screen mode Começa o Mixxx em tela cheia - + Use a custom locale for loading translations. (e.g 'fr') - + Use um idioma personalizado para carregar traduções. (por exemplo, 'fr') - + 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 - + Caminho onde a linha do tempo das estatísticas de depuração é escrita - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads - + Faz com que o Mixxx exiba/registre todos os dados do controlador que ele recebe e as funções de script que ele carrega - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + O mapeamento do controlador emitirá avisos e erros mais agressivos ao detectar o uso indevido das APIs do controlador. Novos mapeamentos de controlador devem ser desenvolvidos com esta opção habilitada! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Habilita o modo de desenvolvedor. Inclui informações extras de log, estatísticas de desempenho e um menu de ferramentas para desenvolvedores. - + Top-level directory where Mixxx should look for settings. Default is: - + Diretório de nível superior onde o Mixxx deve procurar as configurações. O padrão é: - + Starts Auto DJ when Mixxx is launched. - + Inicia o Auto DJ quando o Mixxx é iniciado. - + Rescans the library when Mixxx is launched. - + Verifica novamente a biblioteca quando o Mixxx é iniciado. - + Use legacy vu meter - + Use o medidor VU legado - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -860,32 +873,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -911,7 +924,7 @@ trace - Above + Profiling messages Remove Palette - + Remover Paleta @@ -978,2557 +991,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Saída Auscultador - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Leitor %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Deck de Pré-Visualização %1 - + Microphone %1 Microfone %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Redefinir para o padrão - + Effect Rack %1 Rack de Efeitos %1 - + Parameter %1 Parâmetro %1 - + Mixer Misturador - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mistura Auscultadores (pré/principal) - + Toggle headphone split cueing Ligar/Desligar o cueing dividido no fone - + Headphone delay Atraso Auscultador - + Transport Transporte - + Strip-search through track Procura dentro da faixa - + Play button Tecla Tocar - - + + Set to full volume Ajustar para o volume máximo - - + + Set to zero volume Ajustar para o volume zero - + Stop button Tecla parar - + Jump to start of track and play Saltar para o início da faixa e tocar - + Jump to end of track Saltar para o final da faixa - + Reverse roll (Censor) button Botão de rolagem reversa (Censurar) - + Headphone listen button Tecla de escuta no auscultador - - + + Mute button Tecla de Silêncio - + Toggle repeat mode Alternar modo de repetição - - + + 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 mixagem para o centro - - + + Set mix orientation to right Definir orientação da mistura à direita - + Toggle slip mode Ligar/Desligar modo de deslizamento - - + + BPM BPM - + Increase BPM by 1 Aumentar BPM de 1 - + Decrease BPM by 1 Diminuir BPM de 1 - + Increase BPM by 0.1 Aumentar 0,1 BPM - + Decrease BPM by 0.1 Diminuir 0,1 BPM - + BPM tap button Botão de toque do BPM - + Toggle quantize mode Alternar modo de quantização - + One-time beat sync (tempo only) Sincronização pontual da batida (só tempo) - + One-time beat sync (phase only) Sincronização pontual da batida (só fase) - + Toggle keylock mode Alternar modo bloqueio de tom - + Equalizers 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 controle por vinil (CONST/ABS/REL) - + 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 Cue (modo CDJ) - + Stutter cue Marcação Stutter - + Hotcues - + Hot Cues - + Set, preview from or jump to hotcue %1 Definir, escutar de ou pular ao hotcue %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 Pular para hotcue %1 e jogar - + 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 Botão de saída de ciclo - + 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 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 - + Slot %1 Compartimento %1 - + Headphone Mix Mistura nos Auscultadores - + Headphone Split Cue Escuta Dividida no Auscultador - + Headphone Delay Atraso Auscultador - + Play Tocar - + Fast Rewind Retrocesso Rápido - + Fast Rewind button Tecla de Retrocesso Rápido - + Fast Forward Avanço Rápido - + Fast Forward button Botão de Avanço Rápido - + Strip Search Busca pela Faixa - + Play Reverse Tocar ao Contrário - + Play Reverse button Botão de Tocar ao Contrário - + Reverse Roll (Censor) Rolagem inversa (Censurar) - + Jump To Start Saltar para o Início - + Jumps to start of track Pula para o início da faixa - + Play From Start Tocar do Início - + Stop Parar - + Stop And Jump To Start Parar e Ir Para Início - + Stop playback and jump to start of track Parar a reprodução e pular para o início da faixa - + Jump To End Pular para o Final - + Volume Volume - - - + + + Volume Fader Cursor de Volume - - + + Full Volume Volume Máximo - - + + Zero Volume Volume Zero - + Track Gain Ganho da Faixa - + Track Gain knob Botão de Ganho da Faixa - - + + Mute Silênciar - + Eject Ejetar - - + + Headphone Listen Escuta de Auscultador - + Headphone listen (pfl) button Botão de escuta de auscultador (PFL) - + Repeat Mode Modo Repetir - + Slip Mode Modo Escorregar - - + + Orientation Orientação - - + + Orient Left Orientar Esquerda - - + + Orient Center Orientar Centro - - + + Orient Right Orientar Direita - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 - + BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap Bate BPM - + Adjust Beatgrid Faster +.01 Ajustar Grelha de Batidas Mais Rápido +.01 - + Increase track's average BPM by 0.01 Aumentar o BPM médio da faixa por 0,01 - + Adjust Beatgrid Slower -.01 Expandir Grade de Batidas por -,01 - + Decrease track's average BPM by 0.01 Atrasa o BPM médio da faixa de 0.01 - + Move Beatgrid Earlier Mover Grelha de Batidas Cedo - + Adjust the beatgrid to the left Move a grade de batidas à esquerda - + Move Beatgrid Later Mover Grelha de Batidas Tarde - + Adjust the beatgrid to the right Move a grade de batidas à direita - + Adjust Beatgrid Ajustar Grelha de Batidas - + Align beatgrid to current position Alinhar a grelha de batidas para a posição corrente - + Adjust Beatgrid - Match Alignment Ajustar Grelha de Batidas - Igualar Alinhamento - + Adjust beatgrid to match another playing deck. Ajusta a grelha de batidas para corresponder um outro leitor em reprodução. - + Quantize Mode Modo Quantização - + Sync Sincronização - + Beat Sync One-Shot Sincronizar a Batida De Uma Vez - + Sync Tempo One-Shot Sincronizar Tempo - One-Shot - + Sync Phase One-Shot Sincronizar a Fase De Uma Vez - + 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 - + High EQ EQ Agudos - + Mid EQ EQ de Médios - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ EQ Baixos - + Toggle Vinyl Control Alternar Controlo do Vinil - + Toggle Vinyl Control (ON/OFF) Alternar o Controle por Vinil (Ligado/Desligado) - + 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 Cue - + 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) Cue (Modo CDJ) - + Stutter Cue Marcação Stutter - + 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 Hot Cue %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 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 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 Loop +%1 Batidas - + Move Loop -%1 Beats Mover Loop -%1 Batidas - + Loop %1 Beats Loop %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 Coloca a faixa selecionada no final da fila 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 Carrega a faixa selecionada e toca - - + + Record Mix Gravar Mixagem - + 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 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. Define o balançoentre o sinal original (seco) e o processado (molhado). - + Super Knob Super Botão - + Next Chain Próxima Cadeia - + Assign Atribuir - + Clear Limpar - + Clear the current effect Limpar o efeito corrente - + Toggle Ligar/Desligar - + Toggle the current effect Alternar o efeito corrente - + Next Próximo - + Switch to next effect Muda 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 Força da Redução de Música do Microfone - + Microphone Ducking Mode Modo Talk-Over - + 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 Salta 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 - + 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 Prateleira de Efeitos - + Show/hide the effect rack Mostra/Oculta a prateleira de efeitos - + Waveform Zoom Out Reduzir Forma de Onda - + Headphone Gain Ganho Auscultador - + Headphone gain Ganho dos auscultadores - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Bater para sincronizar o tempo (e fase com a quantização validada), manter para permitir sincronização permanente - + One-time beat sync tempo (and phase with quantize enabled) 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) Controle da velocidade da reprodução (Deslizante de "Pitch" do Vinil) - + Pitch (Musical key) Tom (Nota musical) - + Increase Speed Aumentar a Velocidade - + Adjust speed faster (coarse) Ajusta a velocidade mais rápida (grosseiro) - + Increase Speed (Fine) Aumentar Velocidade (Fino) - + Adjust speed faster (fine) Aumentar a velocidade (fino) - + Decrease Speed Diminuir a Velocidade - + Adjust speed slower (coarse) Ajusta a velocidade mais lenta (grosseiro) - + Adjust speed slower (fine) Ajusta a velocidade mais lenta (fino) - + Temporarily Increase Speed Temporariamente Aumentar a Velocidade - + Temporarily increase speed (coarse) Aumentar a velocidade temporariamente (grosseiro) - + Temporarily Increase Speed (Fine) Temporariamente Aumentar a Velocidade (Fino) - + Temporarily increase speed (fine) Temporariamente aumentar a velocidade (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) - - + + Adjust %1 Ajustar %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Skin - + Controller Controladora - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Auscultador - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Matar %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 Velocidade - + Decrease Speed (Fine) Diminuir velocidade (Fino) - + Pitch (Musical Key) Pitch (Tom musical) - + 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 (Cue + Play, ou seja Cue + Toca a faixa) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + Loop Selected Beats Loop de 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In Ir para Loop In - + Go to Loop In button Botão de Ir para o Fim do Loop - + Go To Loop Out Ir para o Fim do Loop - + Go to Loop Out button Botão de Ir para o Fim do Loop - + 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 Reduzir o loop pela metade - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 Cima - + 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 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 Move o foco um painel à direita ou esquerda usando um botão, como se pressionasse TAB/SHIFT-TAB - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing Ativar ou desativar processamento de efeitos - + 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 Corrente Anterior - + Previous chain preset Prédefinição de corrente anterior - + Next/Previous Chain Próxima/Anterior Cadeia - + Next or previous chain preset Prédefinição da corrente seguinte ou anterior - - + + 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 entre modos de redução de música do microfone (DESLIGADO, AUTOMÁTICO, MANUAL) - + Auxiliary On/Off Ligar/Desligar Auxiliar - + 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 Inicia a transição para a próxima música - + User Interface Interface do Utilizador - + Samplers Show/Hide Samplers Mostrar/Ocultar - + Show/hide the sampler section Mostrar/ocultar a seção sampler - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. Fazer stream da sua mistura através da Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 Mostrar/Ocultar o deck de pré-escuta - + 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 Mostrar/Ocultar Vinil Giratório - + 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. - + Mostrar/esconder as ondas. - + Waveform zoom Aproximação das ondas - + Waveform Zoom Aproximação das Ondas - + Zoom waveform in Ampliar a forma de onda - + Waveform Zoom In Aproximar Ondas - + 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 @@ -3541,6 +3582,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3643,60 +3837,60 @@ trace - Above + Profiling messages 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. ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3729,7 +3923,7 @@ trace - Above + Profiling messages - + Lock Travar @@ -3759,7 +3953,7 @@ trace - Above + Profiling messages Fonte de Faixas do Auto DJ - + Enter new name for crate: Introduza um novo nome para a caixa: @@ -3776,22 +3970,22 @@ trace - Above + Profiling messages Importar Caixa - + Export Crate Exportar Caixa - + Unlock Destravar - + An unknown error occurred while creating crate: Ocorreu um erro desconhecido ao criar a caixa: - + Rename Crate Renomear Caixa @@ -3801,28 +3995,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) Lista de Reprodução M3U (*.m3u) @@ -3843,17 +4037,17 @@ trace - Above + Profiling messages Este recurso de caixas permite que você organize sua música do jeito que preferir! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3948,12 +4142,12 @@ trace - Above + Profiling messages Colaboradores antigos - + Official Website - + Donate @@ -3971,7 +4165,7 @@ trace - Above + Profiling messages Unknown - + Desconhecido @@ -4134,7 +4328,7 @@ Shortcut: Shift+F9 Seconds - + Segundos @@ -4200,7 +4394,7 @@ crossfader, so that the intro starts at full volume. Repeat - + Repetir @@ -4288,7 +4482,9 @@ This can speed up beat detection on slower computers but may result in lower qua 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 batidas detectada pelo analisador em uma grade de batidas de tempo fixo. +Use esta configuração se suas faixas tem um tempo constante (como a maioria das músicas eletrônicas). +Frequentemente resulta em grades de batida de melhor qualidade, e não funciona direito em faixas que tem mudanças de tempo. @@ -4408,7 +4604,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Invert - + Inverter @@ -4468,7 +4664,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Didn't get any midi messages. Please try again. - + Não recebi nenhuma mensagem MIDI. Por favor tente de novo. @@ -4501,7 +4697,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 - + O controle que você clicou no Mixxx não pode ser mapeado. +Isso pode ser porque você está usando um tema antigo e esse controle não é mais suportado, ou você clicou em um controle que provê feedback visual e só pode ser mapeado em saídas como LEDs por meio de scripts. + +Você tentou mapear: %1,%2 @@ -4517,7 +4716,7 @@ You tried to learn: %1,%2 Developer Tools - + Ferramentas de Desenvolvimento @@ -4679,7 +4878,7 @@ You tried to learn: %1,%2 % - + % @@ -4741,122 +4940,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Automático - + Mono Mono - + Stereo Estéreo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Ação falhada - + You can't create more than %1 source connections. Não pode criar mais de %1 ligações fonte. - + Source connection %1 Ligação fonte %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. É necessária pelo menos uma ligação fonte. - + Are you sure you want to disconnect every active source connection? Tem a certeza que quer desligar todas as ligações fonte ativas? - - + + Confirmation required Confirmação necessária - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? Tem a certeza que quer apagar '%1'? - + Renaming '%1' Renomeando '%1' - + New name for '%1': Novo nome para '%1': - + Can't rename '%1' to '%2': name already in use Não pode renomear '%1' para '%2': nome já em uso @@ -4869,27 +5085,27 @@ Two source connections to the same server that have the same mountpoint can not Preferências da Transmissão Ao Vivo - + Mixxx Icecast Testing - + Mixxx Teste Icecast - + Public stream Stream pública - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nome da 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. Devido à falhas em alguns clientes de reprodução, atualizar os metadados Ogg Vorbis dinamicamente pode causar pausas e desconexões nos ouvintes. Marque esta caixa para atualizar os metadados de qualquer jeito. @@ -4929,67 +5145,72 @@ Two source connections to the same server that have the same mountpoint can not Definições para %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Atualizar os metadados Ogg Vorbis dinamicamente. - + ICQ ICQ - + AIM - + AIM - + Website Website - + Live mix Mistura em directo - + IRC IRC - + Select a source connection above to edit its settings here Selecionar uma ligação fonte acima para editar as suas definições aqui - + Password storage Armazenamento Palavra Passe - + Plain text Texto simples - + Secure storage (OS keychain) Armazenamento seguro (Porta chaves do SO) - + Genre Género - + Use UTF-8 encoding for metadata. Utlizar codificação UTF-8 para os metadados. - + Description Descrição @@ -5015,42 +5236,42 @@ Two source connections to the same server that have the same mountpoint can not Canais - + Server connection Ligação ao servidor - + Type Tipo - + Host Anfitrião - + Login - + Login - + Mount Montagem - + Port Porta - + Password Senha - + Stream info Informação da Stream @@ -5060,17 +5281,17 @@ Two source connections to the same server that have the same mountpoint can not Metadados - + Use static artist and title. Usar artista e título estáticos. - + Static title Título estático - + Static artist Artista estático @@ -5129,13 +5350,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Por número do hotcue - + Color @@ -5166,7 +5388,7 @@ Two source connections to the same server that have the same mountpoint can not Hotcue palette - + Paleta de hotcue @@ -5180,17 +5402,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5198,114 +5425,114 @@ associated with each key. DlgPrefController - + Apply device settings? Aplicar definições do dispositivo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Suas configurações devem ser aplicadas antes de começar o assistente de configuração. Aplicar as configurações e continuar? - + None Nenhum - + %1 by %2 %1 por %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Solução de Problemas - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Limpar Mapeamentos de Entrada - + Are you sure you want to clear all input mappings? Tem a certeza que deseja limpar todas os mapeamentos de entrada? - + Clear Output Mappings Limpar Mapeamentos de Saída - + Are you sure you want to clear all output mappings? Tem certeza de que deseja limpar todos os mapeamentos de saída? @@ -5323,100 +5550,105 @@ Aplicar as configurações e continuar? Ativada - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descrição: - + Support: Suporte: - + Screens preview - + Input Mappings Mapeamento de Entrada - - + + Search Pesquisa - - + + Add Adicionar - - + + Remove Remover @@ -5436,17 +5668,17 @@ Aplicar as configurações e continuar? - + Mapping Info - + Author: Autor: - + Name: Nome: @@ -5456,28 +5688,28 @@ Aplicar as configurações e continuar? Assistente de Configuração (Somente MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Limpar Tudo - + Output Mappings Mapeamentos de Saída @@ -5492,21 +5724,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5636,6 +5868,16 @@ Aplicar as configurações e continuar? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5649,7 +5891,7 @@ Aplicar as configurações e continuar? Off - + Inactivo @@ -5665,137 +5907,137 @@ Aplicar as configurações e continuar? DlgPrefDeck - + Mixxx mode Modo Mixxx - + Mixxx mode (no blinking) Modo Mixxx (sem piscar) - + Pioneer mode Modo Pioneer - + Denon mode Modo Denon - + Numark mode Modo Numark - + CUP mode Modo CUP - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semitom) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% - + 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -5931,7 +6173,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Double-press Load button to clone playing track - + Pressione Carregar duas vezes para clonar uma faixa que está tocando @@ -6250,62 +6492,62 @@ 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 correr o protetor de ecrã - + Prevent screensaver from running Impedir correr o protetor de ecrã - + Prevent screensaver while playing Prevenir o protetor de tela quando tocando - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6386,7 +6628,7 @@ and allows you to pitch adjust them for harmonic mixing. OpenKey - + OpenKey @@ -6396,7 +6638,7 @@ and allows you to pitch adjust them for harmonic mixing. Traditional - + Tradicional @@ -6532,67 +6774,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + Choose a music directory Escolher uma pasta de música - + 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 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 Revincular o diretório de música para uma nova localização - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Selecionar a Fonte da Biblioteca @@ -6641,262 +6913,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Formatos Ficheiros de Audio - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History Histórico de Sessões - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Fonte da Biblioteca: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px 500 px - + 250 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Altura das Linhas da Biblioteca: - + Use relative paths for playlist export if possible Usar pastas relativas ao exportar a lista de reprodução se possível - + ... - + ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track Editar metadados após clicar faixa seleccionada - + Search-as-you-type timeout: Tempo limite de procura ao escrever: - + ms ms - + Load track to next available deck Carregar faixa para o próximo leitor disponível - + External Libraries Bibliotecas Externas - + You will need to restart Mixxx for these settings to take effect. Necessita reiniciar o Mixxx para estas definições terem efeito. - + Show Rhythmbox Library Mostrar Biblioteca Rhythmbox - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Mostrar Biblioteca Banshee - + Show iTunes Library Mostrar Biblioteca do iTunes - + Show Traktor Library Mostrar Biblioteca Traktor - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. Todas as bibliotecas externas mostradas são protegidas contra escrita. @@ -6906,7 +7183,7 @@ and allows you to pitch adjust them for harmonic mixing. Crossfader Preferences - + Preferências do Crossfader @@ -6931,7 +7208,7 @@ and allows you to pitch adjust them for harmonic mixing. Scratching - + Scratching @@ -6946,7 +7223,7 @@ and allows you to pitch adjust them for harmonic mixing. Reverse crossfader (Hamster Style) - + Crossfader Invertido (Estilo Hamster) @@ -6956,12 +7233,12 @@ and allows you to pitch adjust them for harmonic mixing. Only allow EQ knobs to control EQ-specific effects - + Apenas deixar botões de EQ controlarem efeitos de EQ Uncheck to allow any effect to be loaded into the EQ knobs. - + Desmarque para deixar qualquer efeito ser carregado para os botões de EQ @@ -6971,7 +7248,7 @@ and allows you to pitch adjust them for harmonic mixing. Uncheck to allow different decks to use different EQ effects. - + Desmarque para deixar decks usarem diferentes efeitos de EQ @@ -6991,17 +7268,17 @@ and allows you to pitch adjust them for harmonic mixing. When checked, EQs are not processed, improving performance on slower computers. - + Quando marcado, os EQs não são processados, melhorando a performance em computadores lentos. Resets the equalizers to their default values when loading a track. - + Redefine os equalizadores para os seus valores padrão ao carregar uma faixa. Reset equalizers on track load - + Redefinir os equalizadores ao carregar uma faixa @@ -7032,13 +7309,13 @@ and allows you to pitch adjust them for harmonic mixing. 16 Hz - + 16 Hz 20.05 kHz - + 20.05 kHz @@ -7145,12 +7422,12 @@ and allows you to pitch adjust them for harmonic mixing. 10ms - + 10ms 256 - + 256 @@ -7160,12 +7437,12 @@ and allows you to pitch adjust them for harmonic mixing. 100Hz - + 100Hz 250ms - + 250ms @@ -7241,33 +7518,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Escolher diretório de gravações - - + + Recordings directory invalid - + Diretório de gravações inválido - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7277,7 +7554,7 @@ and allows you to pitch adjust them for harmonic mixing. Recording Preferences - + Preferências Gravação @@ -7285,43 +7562,55 @@ and allows you to pitch adjust them for harmonic mixing. Navegar... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Qualidade - + Tags Etiquetas - + Title Título - + Author - + Autor - + Album - + Album - + Output File Format Formato de Saída do Arquivo - + Compression Compressão - + Lossy Com perdas @@ -7336,12 +7625,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Nível de Compressão - + Lossless Sem perdas @@ -7472,172 +7761,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Padrão (atraso longo) - + Experimental (no delay) Experimental (sem atraso) - + Disabled (short delay) Desativada (atraso curto) - + Soundcard Clock Relógio Placa de Som - + Network Clock Relógio da Rede - + Direct monitor (recording and broadcasting only) Monição direta (apenas gravação e emissão) - + Disabled Desativado - + Enabled Ativado - + Stereo Estéreo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) auto (<= 1024 quadros/período) - + 2048 frames/period 2048 quadros/período - + 4096 frames/period 4096 quadros/período - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. As entradas de microfone estão fora de tempo no sinal gravar e emitir comparado com o que ouve. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Medir a latência de ida e volta e introduza-a acima para Compensação da Latência do Microfone de maneira a alinhar o tempo do microfone. - + Refer to the Mixxx User Manual for details. Consulte o Manual do Utilizador do Mixxx para detalhes. - + Configured latency has changed. A latência configurada foi alterada. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Volta a medir a latência de ida e volta e introduza-a acima para Compensação da Latência do Microfone de maneira a alinhar o tempo do microfone. - + Realtime scheduling is enabled. O agendamento em tempo real está ativado. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Erro de configuração @@ -7704,19 +7998,24 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Contagem Buffer Underflow - + 0 - + 0 @@ -7739,12 +8038,12 @@ The loudness target is approximate and assumes track pregain and main output lev Entrada - + System Reported Latency Latência Relatada pelo Sistema - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Aumente o buffer de áudio se o contador de esvaziamentos aumentar ou se você ouvir estouros na reprodução. @@ -7774,7 +8073,7 @@ The loudness target is approximate and assumes track pregain and main output lev Sugestões e Diagnósticos - + Downsize your audio buffer to improve Mixxx's responsiveness. Diminua o buffer de áudio para melhorar a capacidade de resposta do Mixxx. @@ -7821,7 +8120,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configuração do Vinil - + Show Signal Quality in Skin Mostrar Qualidade do Sinal na Skin @@ -7848,7 +8147,7 @@ The loudness target is approximate and assumes track pregain and main output lev Vinyl Type - + Tipo do Vinil @@ -7857,46 +8156,51 @@ The loudness target is approximate and assumes track pregain and main output lev - Deck 1 + Pitch estimator - + + Deck 1 + Deck 1 + + + Deck 2 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Qualidade do Sinal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Alimentado por xwax - + Hints Sugestões - + Select sound devices for Vinyl Control in the Sound Hardware pane. Selecione dispositivos de som para o Controle por Vinil no painel do Hardware de Som. @@ -7904,58 +8208,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrado - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL não disponível - + dropped frames quadros perdidos - + Cached waveforms occupy %1 MiB on disk. Formas de onda em cache ocupam %1 MB em disco. @@ -7973,22 +8277,17 @@ The loudness target is approximate and assumes track pregain and main output lev Taxa de fotogramas - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Mostra que versão OpenGL é suportada pela presente plataforma. - - Normalize waveform overview - Normaliza a visualizção da forma de onda - - - + Average frame rate Taxa média de fotogramas @@ -8004,7 +8303,7 @@ The loudness target is approximate and assumes track pregain and main output lev Nível de zoom padrão - + Displays the actual frame rate. Mostra a taxa de fotogramas presente. @@ -8039,7 +8338,7 @@ The loudness target is approximate and assumes track pregain and main output lev Baixos - + Show minute markers on waveform overview @@ -8084,7 +8383,7 @@ The loudness target is approximate and assumes track pregain and main output lev Ganho visual global - + 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. A forma de onda mostra o envoltório da onda na faixa inteira. @@ -8153,22 +8452,22 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife - + Caching Armazenar em Cache - + 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. O Mixxx coloca as ondas das suas faixas no disco na primeira vez que você carrega uma faixa. Isso reduz o uso da CPU quando você estiver tocando ao vivo, porém requer mais espaço no disco. - + Enable waveform caching Ativa o caching das Waveforms - + Generate waveforms when analyzing library Gerar formas de onda, ao analisar a biblioteca @@ -8184,7 +8483,7 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife - + Type @@ -8214,12 +8513,58 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Move o marcador da posição de reprodução nas formas de onda para a esquerda, direita ou centro (padrão). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Limpar Formas de Onda em Cache @@ -8259,7 +8604,7 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Auto DJ - + Auto DJ @@ -8299,7 +8644,7 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife &Ok Preferences standard buttons: consider the other buttons to choose a unique Alt hotkey (&) - + &Ok @@ -8371,7 +8716,7 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife Recordings - + Gravações @@ -8475,7 +8820,7 @@ Selecione entre tipos diferentes de visualizações da forma de onda, o que dife MusicBrainz - + MusicBrainz @@ -8708,7 +9053,7 @@ This can not be undone! BPM: - + Location: Localização: @@ -8723,27 +9068,27 @@ This can not be undone! Comentários - + BPM BPM - + Sets the BPM to 75% of the current value. Define o BPM para 75% do valor presente. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Define o BPM para 50% do valor presente. - + Displays the BPM of the selected track. Mostra o BPM da faixa selecionada. @@ -8798,49 +9143,49 @@ This can not be undone! Gênero - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Define o BPM para 200% do valor presente. - + Double BPM Dobrar o BPM - + Halve BPM Reduzir a Metade BPM - + Clear BPM and Beatgrid Limpar BPM e Grade de Batidas - + Move to the previous item. "Previous" button Mover para o item anterior. - + &Previous &Anterior - + Move to the next item. "Next" button Mover para o próximo item. - + &Next &Próximo @@ -8865,12 +9210,12 @@ This can not be undone! cor - + Date added: - + Open in File Browser Abrir no Explorador de Ficheiros @@ -8880,102 +9225,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: BPM da Faixa: - + 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. - + Assume constant tempo Assumir tempo constante - + Sets the BPM to 66% of the current value. Define o BPM para 66% do valor presente. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Define o BPM para 150% do valor presente. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Define o BPM para 133% do valor presente. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Bater com o ritmo, para definir o BPM igual à velocidade com que está a bater. - + Tap to Beat Toque a Batida - + Hint: Use the Library Analyze view to run BPM detection. Sugestão: Usar a vista Analisador de Biblioteca para executar a deteção de BPM. - + Save changes and close the window. "OK" button Salva as alterações e fechar a janela. - + &OK &OK - + Discard changes and close the window. "Cancel" button Rejeita as alterações e fecha a janela. - + Save changes and keep the window open. "Apply" button Guarda as alterações e mantém a janela aberta. - + &Apply &Aplicar - + &Cancel &Cancelar - + (no color) @@ -9132,7 +9482,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9334,27 +9684,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9440,7 +9790,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Album - Álbum + Album @@ -9569,15 +9919,15 @@ 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 @@ -9589,57 +9939,57 @@ Shown when VuMeter can not be displayed. Please keep OpenGL - + activate ativar - + toggle comutar - + right direita - + left esquerda - + right small direita curto - + left small esquerda curto - + up cima - + down abaixo - + up small cima curto - + down small abaixo pequeno - + Shortcut Atalho @@ -9647,62 +9997,62 @@ OpenGL Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9712,22 +10062,22 @@ Aborting the operation to avoid library inconsistencies LibraryFeature - + Import Playlist Importar Lista de Reprodução - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Ficheiros 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. @@ -9750,12 +10100,12 @@ Do you really want to overwrite it? Cancel - + Cancelar Scanning: - + A Examinar: @@ -9864,12 +10214,12 @@ Do you really want to overwrite it? Músicas Ocultadas - + Export to Engine DJ - + Tracks Faixas @@ -9877,37 +10227,37 @@ 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 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 @@ -9917,211 +10267,211 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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>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 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 no Deck %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 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 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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 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. - - - + + + Confirm Exit Confirmar a 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? Descartar quaisquer mudanças e sair do Mixxx? @@ -10137,15 +10487,15 @@ Do you want to select an input device? PlaylistFeature - + Lock Travar - - + + Playlists - + Listas de Reprodução @@ -10153,58 +10503,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Desbloquear - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 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 uma Playlist Nova @@ -10303,59 +10658,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 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 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 Grades de Batidas Atuais - + Generate New Beatgrids Gerar Novas Grades de Batidas @@ -10406,7 +10761,7 @@ Deseja examinar a sua biblioteca para encontrar ficheiros de capa de disco, agor Rot64 - + Rot64 @@ -10456,7 +10811,7 @@ Deseja examinar a sua biblioteca para encontrar ficheiros de capa de disco, agor Script - + Script @@ -10469,69 +10824,82 @@ Deseja examinar a sua biblioteca para encontrar ficheiros de capa de disco, agor 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier Cabine - + Headphones + Audio path indetifier Fones - + Left Bus + Audio path indetifier Bus Esquerdo - + Center Bus + Audio path indetifier Barramento Central - + Right Bus + Audio path indetifier Barramento Direito - + Invalid Bus + Audio path indetifier Bus Inválido - + Deck + Audio path indetifier Leitor - + Record/Broadcast + Audio path indetifier Gravar/Emitir - + Vinyl Control + Audio path indetifier Controlo de Vinil - + Microphone + Audio path indetifier Microfone - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Caminho desconhecido tipo %1 @@ -10602,7 +10970,7 @@ If you do not want to grant Mixxx access, click Cancel on the file picker. Mixxx Downsampling - + Decimação @@ -10830,7 +11198,7 @@ Com a largura a zero, permite o varrimento manual ao longo de toda a extensão d Regen - + Regen @@ -10866,47 +11234,49 @@ Com a largura a zero, permite o varrimento manual ao longo de toda a extensão d Largura - + Metronome Metrónomo - + + The Mixxx Team - + Adds a metronome click sound to the stream Adiciona o som dum clique de metrónomo à stream - + BPM BPM - + Set the beats per minute value of the click sound Define o valor do bpm do som do clique - + Sync Sincronização - + Synchronizes the BPM with the track if it can be retrieved Sincroniza o BPM com a faixa, se este puder ser obtido - + + Gain - + Set the gain of metronome click sound @@ -11241,12 +11611,12 @@ Valores mais altos resultam em menos atenuação das altas frequências. Ctrl+u - + Ctrl+u Ctrl+i - + Ctrl+i @@ -11256,7 +11626,7 @@ Valores mais altos resultam em menos atenuação das altas frequências. Ctrl+Shift+O - + Ctrl+Shift+O @@ -11286,7 +11656,7 @@ Valores mais altos resultam em menos atenuação das altas frequências. LinkwitzRiley8 Isolator - + LinkwitzRiley8 Isolator @@ -11306,7 +11676,7 @@ Valores mais altos resultam em menos atenuação das altas frequências. BQ EQ - + BQ EQ @@ -11326,7 +11696,7 @@ Valores mais altos resultam em menos atenuação das altas frequências. BQ EQ/ISO - + BQ EQ/ISO @@ -11527,7 +11897,7 @@ um Q mais alto afecta uma banda mais estreita de frequências. Q 2 - + Q 2 @@ -11681,7 +12051,7 @@ Tudo direita: fim do período do efeito Dry/Wet - + Seco/Molhado @@ -11709,14 +12079,14 @@ Tudo direita: fim do período do efeito - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11854,7 +12224,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Transpassar @@ -11912,23 +12282,94 @@ and the processed output signal as close as possible in perceived loudness - - Off + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11959,6 +12400,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11969,11 +12411,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11985,11 +12429,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12018,12 +12464,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12058,42 +12504,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12116,7 +12562,7 @@ may introduce a 'pumping' effect and/or distortion. There is less than 1 GiB of usable space in the recording folder - + Há menos de 1 GiB de espaço utilizável na pasta de gravação @@ -12160,7 +12606,7 @@ may introduce a 'pumping' effect and/or distortion. Playlists - + Listas de Reprodução @@ -12195,7 +12641,7 @@ may introduce a 'pumping' effect and/or distortion. Memory cues - + Cues de memória @@ -12267,7 +12713,7 @@ may introduce a 'pumping' effect and/or distortion. Tracks - + Faixas @@ -12354,193 +12800,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem O Mixx encontrou um problema - + Could not allocate shout_t Não foi possível distribuir shout_t - + Could not allocate shout_metadata_t Não foi possível distribuir shout_metadata_t - + Error setting non-blocking mode: Erro ao definir modo sem bloqueio: - + Error setting tls mode: - + Error setting hostname! Erro ao configurar o nome do host! - + Error setting port! Erro ao definir porta! - + Error setting password! Erro ao definir password! - + Error setting mount! Erro ao definir montagem! - + Error setting username! Erro ao definir nome de utilizador! - + Error setting stream name! Erro ao configurar o nome da stream! - + Error setting stream description! Erro ao definir descrição da stream! - + Error setting stream genre! Erro ao configurar o gênero da stream! - + Error setting stream url! Erro ao configurar o endereço da stream! - + Error setting stream IRC! Erro a definir a stream IRC! - + Error setting stream AIM! Erro a definir a stream AIM! - + Error setting stream ICQ! Erro a definir a stream ICQ! - + Error setting stream public! Erro ao definir stream pública! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Erro ao definir a taxa de bits! - + Error: unknown server protocol! Erro: protocolo do servidor desconhecido! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Erros ao configurar o protocolo! - + Network cache overflow Erro de overflow na cache de rede - + Connection error Erro de ligação - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Uma das ligações de Emissão em Direto apresentou este erro:<br><b>Erro com a ligação '%1':</b><br> - + Connection message Mensagem da ligação - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mensagem da ligação Emissão em Direto '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. A conexão com o servidor de streaming foi perdida e %1 tentativas de reconectar falharam. - + Lost connection to streaming server. A ligação ao servidor de streaming perdida. - + Please check your connection to the Internet. Por favor, verifique a sua conecção à internet. - + Can't connect to streaming server Não se consegue ligar ao servidor de streaming. - + Please check your connection to the Internet and verify that your username and password are correct. Por favor, verifique a sua ligação à Internet e verifique que o seu nome de utilizador e password estão corretos. @@ -12548,7 +12994,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrado @@ -12556,23 +13002,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device um dispositivo - + An unknown error occurred Ocorreu um erro desconhecido - + Two outputs cannot share channels on "%1" Duas saídas não podem partilhar canais em %1 - + Error opening "%1" Erro ao abrir %1 @@ -12607,7 +13053,7 @@ may introduce a 'pumping' effect and/or distortion. Min - + Min @@ -12757,7 +13203,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Rotação do Vinil @@ -12829,7 +13275,7 @@ may introduce a 'pumping' effect and/or distortion. Indicates when the signal on the auxiliary is clipping, - + Indica quando o sinal auxiliar está clipando. @@ -12854,7 +13300,7 @@ may introduce a 'pumping' effect and/or distortion. Crossfader - + Crossfader @@ -12939,7 +13385,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Capa do Disco @@ -13129,243 +13575,243 @@ may introduce a 'pumping' effect and/or distortion. Mantém o ganho do EQ Baixos em zero enquanto ativo. - + Displays the tempo of the loaded track in BPM (beats per minute). Mostra o tempo da faixa carregada em BPM (batidas por minuto). - + Tempo - + Tempo - + Key The musical key of a track Tom - + BPM Tap Bate BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. O BPM vai ser ajustado de acordo com a velocidade das batidas neste botão. - + Adjust BPM Down Ajustar o BPM Abaixo - + When tapped, adjusts the average BPM down by a small amount. Quando batido, ajusta o BPM médio para baixo de uma pequena quantidade. - + Adjust BPM Up Ajustar o BPM Acima - + When tapped, adjusts the average BPM up by a small amount. Quando batido, ajusta o BPM médio para cima de uma pequena quantidade. - + Adjust Beats Earlier Ajustar Batidas Cedo - + When tapped, moves the beatgrid left by a small amount. Quando pressionado, move a grade de batidas um pouco para a esquerda. - + Adjust Beats Later Ajustar Batidas Tarde - + When tapped, moves the beatgrid right by a small amount. Quando batido, move a grelha de batidas para a direita, uma pequena quantidade. - + Tempo and BPM Tap Bate Tempo e BPM - + Show/hide the spinning vinyl section. Mostrar/ocultar a seção rotação de vinil. - + Keylock Trava de Tom - + Toggling keylock during playback may result in a momentary audio glitch. Alternar o bloqueio de tom durante a reprodução pode resultar em falhas momentâneas do audio. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control Alterna a visibilidade do Controlo da Taxa - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. Coloca um ponto de sinalização na posição atual na forma de onda. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Pára a faixa no CUE Point, OU vai para o CUE Point e reproduz a faixa após soltar o botão (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Define o CUE point (em modo Pioneer/Mixxx/Numark), define o CUE point e toca após largar a tecla (modo CUP) OU escuta o preview (modo Denon). - + Is latching the playing state. - + Seeks the track to the cue point and stops. Avança a faixa até ao Cue Point e para. - + Play Tocar - + Plays track from the cue point. Toca a faixa a partir do ponto de marcação. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Altera a velocidade da faixa (afeta o tempo e o pitch). Se o keylock estiver ativo, apenas o tempo é alterado. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Mostra o alcance atual do deslizante de tempo. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration Duração da Gravação @@ -13515,7 +13961,7 @@ may introduce a 'pumping' effect and/or distortion. Auto: Sets how much to reduce the music volume when the volume of active microphones rises above threshold. - + Auto: Define o quanto reduzir o volume da música quando o volume de microfones ativos passa de um determinado limite. @@ -13588,949 +14034,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Mostra a duração da gravação em andamento. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. Define o marcador Início Loop da faixa para a atual posição de reprodução. - + Press and hold to move Loop-In Marker. Pressione e mantenha para mover o marcador Início Loop. - + Jump to Loop-In Marker. Saltar para o marcador Início Loop. - + Sets the track Loop-Out Marker to the current play position. Define o marcador Fim Loop para a atual posição de reprodução. - + Press and hold to move Loop-Out Marker. Pressione e mantenha para mover o marcador Fim Loop. - + Jump to Loop-Out Marker. Saltar para o marcador Fim Loop. - + If the track has no beats the unit is seconds. - + Beatloop Size Tamanho Loop - + Select the size of the loop in beats to set with the Beatloop button. Escolher o tamanho do loop em batidas estabelecer com o botão Loop. - + Changing this resizes the loop if the loop already matches this size. Alterando isto redimensiona o loop se o loop já coincide com este tamanho. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Reduz a metade o tamanho dum loop existente, ou reduz a metade o tamanho do próximo loop definido com o botão Loop. - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Duplica o tamanho dum loop existente, ou duplica o tamanho do próximo loop definido com o botão Loop. - + Start a loop over the set number of beats. Iniciar um loop com o número de batidas prédefinidas. - + Temporarily enable a rolling loop over the set number of beats. Ativar temporariamente um loop rolado com o número de batidas prédefinidas. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size Beatjump/Loop Tamanho Movimento - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Selecione o número de batidas a saltar ou a deslocar o loop com os botões Beatjump Frente/Atrás. - + Beatjump Forward Beatjump Frente - + Jump forward by the set number of beats. Salta para a frente o número de batidas predefinidas. - + Move the loop forward by the set number of beats. Move o loop para a frente o número de batidas prédefinidas. - + Jump forward by 1 beat. Salta para a frente 1 batida. - + Move the loop forward by 1 beat. Move o loop para a frente 1 batida. - + Beatjump Backward Beatjump Atrás - + Jump backward by the set number of beats. Salta para trás o número de batidas prédefinidas. - + Move the loop backward by the set number of beats. Move o loop para trás o número de batidas prédefinidas. - + Jump backward by 1 beat. Salta para trás 1 batida. - + Move the loop backward by 1 beat. Move o loop para trás 1 batida. - + Reloop Reloop - + If the loop is ahead of the current position, looping will start when the loop is reached. Se o loop estiver à frente da posição atual de reprodução, o ciclo de looping começará quando o loop for atingido. - + Works only if Loop-In and Loop-Out Marker are set. Funciona apenas se os marcadores de Início Loop e Fim Loop estiverem definidos. - + Enable loop, jump to Loop-In Marker, and stop playback. Ativar loop, saltar para o marcador Início Loop, e parar a reprodução. - + Displays the elapsed and/or remaining time of the track loaded. Mostra o tempo executado e/ou restante da faixa carregada. - + Click to toggle between time elapsed/remaining time/both. Clique para alternar entre tempo executado/restante tempo/ambos. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix Mistura - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Ajustar a mistura do sinal seco (entrada) com o molhado (saída) da unidade de efeito - + D/W mode: Crossfade between dry and wet Modo S/M: crossfade entre seco e molhado - + D+W mode: Add wet to dry Modo S/M: adicionar molhado ao seco - + Mix Mode Modo Mistura - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Ajustar a mistura do sinal seco (entrada) com o sinal molhado (saída) da unidade de efeito - + 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 Seco/Molhado (linhas cruzadas): o botão de Mistura faz a transição entre seco e molhado. Usar isto para alterar o som da faixa com EQ e filtros de efeitos. - + 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 Seco+Molhado (linha seca plana): o botão de Mistura adiciona o molhado ao seco. Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtros de efeitos. - + Route the main mix through this effect unit. - + Route the left crossfader bus through this effect unit. Envia o bus esquerdo do crossfader através desta unidade de efeito. - + Route the right crossfader bus through this effect unit. Envia o bus direito do crossfader através desta unidade de efeito. - + Right side active: parameter moves with right half of Meta Knob turn Lado direito ativo: o parâmetro muda com meia volta para a direita do Botão Meta - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Menu Definições Skin - + Show/hide skin settings menu Mostra/Oculta menu de definições. - + Save Sampler Bank Salvar Banco do Sampler - + Save the collection of samples loaded in the samplers. Guarda a colecção de samples carregadas nos samplers. - + Load Sampler Bank Carregar o Banco de Amostras - + Load a previously saved collection of samples into the samplers. Carrega uma colecção de samples guardada previamente nos samplers. - + Show Effect Parameters Mostrar Parâmetros do Efeito - + Enable Effect Ativar Efeito - + Meta Knob Link Ligação Botão Meta - + Set how this parameter is linked to the effect's Meta Knob. Definir como este parâmetro está ligado ao botão de efeitos Meta. - + Meta Knob Link Inversion Inversão Ligação Botão Mega - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Inverte a direção com que este parâmetro se move quando se roda o Botão Meta. - + Super Knob Super Botão - + Next Chain Próxima Cadeia - + Previous Chain Cadeia Anterior - + Next/Previous Chain Próxima/Anterior Cadeia - + Clear Limpar - + Clear the current effect. Limpa o efeito presente. - + Toggle Alternar - + Toggle the current effect. Alterna o efeito presente. - + Next Próximo - + Clear Unit Limpar Unidade - + Clear effect unit. Limpa a unidade de efeito. - + Show/hide parameters for effects in this unit. Mostra/Oculta parâmetros para efeitos nesta unidade. - + Toggle Unit Alternar Unidade - + Enable or disable this whole effect unit. Ativa ou desativa esta unidade completa de efeito. - + Controls the Meta Knob of all effects in this unit together. Controla o Meta Botão de todos os efeitos conjuntamente nesta unidade. - + Load next effect chain preset into this effect unit. Carrega a próxima cadeia de efeitos prédefinida nesta unidade de efeito. - + Load previous effect chain preset into this effect unit. Carrega a anterior cadeia de efeitos prédefinida nesta unidade de efeito. - + Load next or previous effect chain preset into this effect unit. Carrega a próxima ou anterior cadeia de efeitos prédefinida nesta unidade de efeito. - - - - - - - - - + + + + + + + + + Assign Effect Unit Atribuir Unidade de Efeito - + Assign this effect unit to the channel output. Atribuir esta unidade de efeito ao canal de saída. - + Route the headphone channel through this effect unit. Encaminha o canal de auscultadores através desta unidade de efeito. - + Route this deck through the indicated effect unit. Encaminha este leitor através da unidade de efeito indicada. - + Route this sampler through the indicated effect unit. Encaminha este sampler através da unidade de efeito indicada. - + Route this microphone through the indicated effect unit. Encaminha este microfone através da unidade de efeito indicada. - + Route this auxiliary input through the indicated effect unit. Encaminha esta entrada auxiliar através da unidade de efeito indicada. - + The effect unit must also be assigned to a deck or other sound source to hear the effect. Esta unidade de efeito deve também ser atribuída a um leitor ou a outra fonte sonora para ouvir o efeito. - + Switch to the next effect. Comuta para o próximo efeito. - + Previous Anterior - + Switch to the previous effect. Troca para o efeito anterior. - + Next or Previous Próximo ou Anterior - + Switch to either the next or previous effect. Comuta ou para o próximo efeito, ou efeito anterior. - + Meta Knob Botão Meta - + Controls linked parameters of this effect Controla os parâmetros deste efeito aqui ligado. - + Effect Focus Button Botão Realce Efeito - + Focuses this effect. Realça este efeito. - + Unfocuses this effect. Anula o realce deste efeito. - + Refer to the web page on the Mixxx wiki for your controller for more information. Consultar a página web na wiki Mixxx para mais informação sobre o seu controlador. - + Effect Parameter Parâmetro Efeito - + Adjusts a parameter of the effect. Ajusta um parâmetro do efeito. - + Inactive: parameter not linked Inativo: parâmetro não ligado - + Active: parameter moves with Meta Knob Activo: o parâmetro move-se com o Botão Meta - + Left side active: parameter moves with left half of Meta Knob turn Lado esquerdo ativo: o parâmetro move-se com meia volta para a esquerda do Botão Meta - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Lado esquerdo e direito ativo: o parâmetro desloca-se ao longo da sua extensão com meia volta do Botão Meta e para trás com a outra meia volta. - - + + Equalizer Parameter Kill Matar Parâmetro do Equalizador - - + + Holds the gain of the EQ to zero while active. Mantem o ganho do equalizador em zero quanto ativo. - + Quick Effect Super Knob Super Botão de Efeito Rápido - + Quick Effect Super Knob (control linked effect parameters). Super Botão de Efeito Rápido (controla parâmetros de efeitos conectados). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Sugestão: Alterar o modo Efeito Rápido padrão em Preferências -> Equalizadores. - + Equalizer Parameter Parâmetro Equalizador - + Adjusts the gain of the EQ filter. Ajusta o ganho do filtro EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Dica: Mude o modo padrão do equalizador em Preferências -> Equalizadores. - - + + Adjust Beatgrid Ajustar Grelha de Batidas - + Adjust beatgrid so the closest beat is aligned with the current play position. Ajusta a grade de batidas de forma que a batida mais próxima é alinhada com a posição atual. - - + + Adjust beatgrid to match another playing deck. Ajusta a grelha de batidas para corresponder um outro leitor em reprodução. - + If quantize is enabled, snaps to the nearest beat. Se a quantização estiver ativa agarra-se à batida mais próxima. - + Quantize Quantização - + Toggles quantization. Alternar a quantização. - + Loops and cues snap to the nearest beat when quantization is enabled. Enquanto a quantização estiver ativada, os loops e os hotcues sempre entrarão na batida mais próxima. - + Reverse Inverter - + Reverses track playback during regular playback. Inverte a reprodução da faixa. - + Puts a track into reverse while being held (Censor). Coloca a faixa em reprodução invertida enquanto pressionado (Censurar). - + Playback continues where the track would have been if it had not been temporarily reversed. A reprodução continua onde a faixa estaria se ela não estivesse sido temporariamente invertida. - - - + + + Play/Pause Tocar/Pausar - + Jumps to the beginning of the track. Pula para o início da faixa. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sincroniza o tempo (BPM) e a fase para a da outra faixa, ou BPM se detectado nos dois. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sincroniza o tempo (BPM) com o da outra faixa, se o BPM for detetado em ambas. - + Sync and Reset Key Sincronizar e Reiniciar Tom - + Increases the pitch by one semitone. Aumenta a tonalidade de um meio tom. - + Decreases the pitch by one semitone. Diminui o pitch por um semitom. - + Enable Vinyl Control Ativar Controlo de Vinil - + When disabled, the track is controlled by Mixxx playback controls. Quando desativado, a faixa é controlada pelos controlos de reprodução do Mixxx. - + When enabled, the track responds to external vinyl control. Quando ativado, a faixa responde ao controle por vinil externo - + Enable Passthrough Ativar Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Indica que o buffer de áudio é muito pequeno para fazer todo o processamento de aúdio. - + Displays cover artwork of the loaded track. Mostra a capa do disco na faixa carregada. - + Displays options for editing cover artwork. Mostra as opções para edição da capa do disco. - + Star Rating Classificação Estrelas - + Assign ratings to individual tracks by clicking the stars. Atribui classificações a faixas individuais clicando nas estrelas. @@ -14665,33 +15146,33 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Amplitude da Redução no Talkover - + Prevents the pitch from changing when the rate changes. Impede a mudança de tom quando a velocidade é alterada. - + Changes the number of hotcue buttons displayed in the deck Altera o número de botões hotcue mostrados no leitor - + Starts playing from the beginning of the track. Começa a tocar do começo da faixa. - + Jumps to the beginning of the track and stops. Pula para o começo da faixa e para. - - + + Plays or pauses the track. Toca ou pausa uma música. - + (while playing) (durante a leitura) @@ -14711,215 +15192,215 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr - + (while stopped) (enquanto parada) - + Cue Marcação - + Headphone Auscultador - + Mute Silênciar - + Old Synchronize Sincronização Antiga - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincroniza com o primeiro deck (em ordem numérica) que estiver tocando uma faixa e tem BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Se nenhum leitor estiver em reprodução, sincroniza com o primeiro leitor que tenha um BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Manter premido, por pelo menos um segundo, para ativar o bloqueio de sincronização para este leitor. - + 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. Os leitores com sincronização bloqueada tocam todos no mesmo tempo, e os leitores que também tiverem a quantização ativada terão sempre as suas batidas alinhadas. - + Resets the key to the original track key. Reinicia o tom, para o tom original da faixa. - + Speed Control Controlo de Velocidade - - - + + + Changes the track pitch independent of the tempo. Muda o pitch da faixa independentemente do tempo. - + Increases the pitch by 10 cents. Aumenta o tom de 10 centésimos. - + Decreases the pitch by 10 cents. Diminui o tom de 10 centésimos. - + Pitch Adjust Ajustar Tom - + Adjust the pitch in addition to the speed slider pitch. Adiciona o ajuste de tom ao cursor de velocidade. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Gravar Mistura - + Toggle mix recording. Alternar gravação da mistura. - + Enable Live Broadcasting Ativar Emissão em Direto - + Stream your mix over the Internet. Fazer stream da sua mistura através da Internet. - + Provides visual feedback for Live Broadcasting status: Provê retorno visual para o estado de Transmissão Ao Vivo: - + disabled, connecting, connected, failure. desativado, conectando, conectado, falha. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Quando ativada, o leitor toca o audio que chega diretamente à entrada do vinil. - + Playback will resume where the track would have been if it had not entered the loop. A reprodução será retomada onda a faixa estaria se não tivesse entrado em loop. - + Loop Exit Sair do Loop - + Turns the current loop off. Apaga o presente loop. - + Slip Mode Modo de Deslizamento - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Quando ativo, a execução continua silenciosa no fundo durante um loop, reprodução invertida, um scratch, etc. - + Once disabled, the audible playback will resume where the track would have been. Uma vez desativado, a execução audível continuará onde a música estaria. - + Track Key The musical key of a track Tom da Faixa - + Displays the musical key of the loaded track. Mostra o tom musical da faixa carregada. - + Clock Relógio - + Displays the current time. Mostra a hora presente. - + Audio Latency Usage Meter Medidor do Uso da Latência Audio - + Displays the fraction of latency used for audio processing. Mostra a fração da latência usada no processamento de audio. - + A high value indicates that audible glitches are likely. Um valor alto indica que ruídos no áudio são prováveis. - + Do not enable keylock, effects or additional decks in this situation. Não ative bloqueio de tom, efeitos ou leitores adicionais nesta situação. - + Audio Latency Overload Indicator Indicador de Sobrecarga de Latência Audio @@ -14959,259 +15440,259 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Ativar Controlo de Vinil a partir de Menu -> Opções. - + Displays the current musical key of the loaded track after pitch shifting. Mostra o tom musical corrente da faixa carregada, após movimentação do cursor de velocidade/tom. - + Fast Rewind Retrocesso Rápido - + Fast rewind through the track. Rebobina a música rapidamente. - + Fast Forward Avanço Rápido - + Fast forward through the track. Avanço rápido através da faixa. - + Jumps to the end of the track. Salta para o fim da faixa. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Define a tonalidade para um tom que permita uma transição harmónica para outra faixa. Requer ter sido detetado um tom em ambos os leitores envolvidos. - - - + + + Pitch Control Controle do Pitch - + Pitch Rate Variação da Velocidade - + Displays the current playback rate of the track. Mostra a taxa de reprodução da música em execução. - + Repeat Repetir - + When active the track will repeat if you go past the end or reverse before the start. Quando ativo, a música vai repetir se você passar do final ou inverter a reprodução antes do início. - + Eject Extrair - + Ejects track from the player. Extrai a faixa do leitor. - + Hotcue Hot Cue - + If hotcue is set, jumps to the hotcue. Se a hot cue estiver definida, salta para a hot cue. - + If hotcue is not set, sets the hotcue to the current play position. Se a hot cue não estiver definida, define a hot cue para a atual posição a tocar. - + Vinyl Control Mode Modo Controlo do Vinil - + Absolute mode - track position equals needle position and speed. Modo absoluto - a posição da faixa é igual à posição e velocidade da agulha. - + Relative mode - track speed equals needle speed regardless of needle position. Modo relativo - a velocidade da faixa é igual à da agulha, independente da posição. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Modo Constante - a velocidade da faixa é igual à última velocidade estável conhecida, independentemente da informação de entrada da agulha. - + Vinyl Status Estado do Vinil - + Provides visual feedback for vinyl control status: Provê retorno visual para o estado do controle por vinil: - + Green for control enabled. Verde quando o controle estiver ativado. - + Blinking yellow for when the needle reaches the end of the record. Amarelo piscante quando a agulha estiver no fim do disco. - + Loop-In Marker Marcador de Início Loop - + Loop-Out Marker Marca de Saída do Loop - + Loop Halve Reduzir a Metade Loop - + Halves the current loop's length by moving the end marker. Diminui o comprimento atual do loop pela metade movendo a marca de saída. - + Deck immediately loops if past the new endpoint. O leitor entra em loop imediatamente, se ultrapassar o novo ponto final. - + Loop Double Duplicar Loop - + Doubles the current loop's length by moving the end marker. Dobra o comprimento do loop atual movendo a marca de saída. - + Beatloop Loop de Batida - + Toggles the current loop on or off. Alterna entre ligar/desligar o loop corrente. - + Works only if Loop-In and Loop-Out marker are set. Funciona apenas se os marcadores de Início Loop e Fim Loop estiverem definidos. - + Vinyl Cueing Mode Modo de Cue do Vinil - + Determines how cue points are treated in vinyl control Relative mode: Determina como os pontos de marcação são tratados no modo Relativo do controlo de vinil: - + Off - Cue points ignored. Off - Pontos de marcação ignorados. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Único - Se a agulha for solta depois doponto cue, a faixa vai até aquele ponto cue. - + Track Time Tempo da Faixa - + Track Duration Duração Faixa - + Displays the duration of the loaded track. Mostra a duração da faixa carregada. - + Information is loaded from the track's metadata tags. A informação é carregada a partir das etiquetas de metadados da faixa. - + Track Artist Artista da Faixa - + Displays the artist of the loaded track. Mostra o artista da faixa carregada. - + Track Title Título da Faixa - + Displays the title of the loaded track. Mostra o título da faixa carregada. - + Track Album Album Faixa - + Displays the album name of the loaded track. Mostra o nome do álbum da faixa carregada. - + Track Artist/Title Artista/Título da Faixa - + Displays the artist and title of the loaded track. Mostra o artista e o título da faixa carregada. @@ -15277,7 +15758,7 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Export Track Files To - + Exportar Faixas Para @@ -15366,7 +15847,7 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Time until charged: %1 - + Tempo até carregada: %1 @@ -15376,7 +15857,7 @@ Usar isto para alterar apenas o sinal já com os efeitos (molhado) de EQ e filtr Battery fully charged. - + Bateria totalmente carregada. @@ -15439,47 +15920,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15513,7 +16022,7 @@ This can not be undone! %1: %2 %1 = effect name; %2 = effect description - + %1: %2 @@ -15604,323 +16113,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Criar &Playlist Nova - + Create a new playlist Criar uma nova lista de reprodução - + Ctrl+n Ctrl+n - + Create New &Crate Criar Nova &Caixa - + Create a new crate Criar uma caixa nova - + Ctrl+Shift+N - + Ctrl+Shift+N - - + + &View &Exibir - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Pode não ser suportado em todas as skins. - + Show Skin Settings Menu Mostrar Menu de Configurações do Tema - + Show the Skin Settings Menu of the currently selected Skin Mostra o menu das configurações do tema do tema atualmente selecionado - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Mostrar Seção do Microfone - + Show the microphone section of the Mixxx interface. Mostra a seção microfone do interface Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section - + Ctrl+2 - + Show Vinyl Control Section Mostra Seção Controlo do Vinil - + Show the vinyl control section of the Mixxx interface. Mostra a seção controlo de vinil do interface Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Ctrl+3 - + Show Preview Deck Mostrar Leitor Antevisão - + Show the preview deck in the Mixxx interface. Mostra o leitor de antevisão no interface Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck - + Ctrl+4 - + Show Cover Art Mostrar Capa - + Show cover art in the Mixxx interface. Mostrar as capas dos discos no interface Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art - + Ctrl+6 - + Maximize Library Maximizar 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ã. - + Space Menubar|View|Maximize Library Espaço - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen Te&la cheia - + Display Mixxx using the full screen Mostrar o Mixxx utilizando o ecrã inteiro. - + &Options &Opções - + &Vinyl Control Controlo de &Vinil - + Use timecoded vinyls on external turntables to control Mixxx Use vinils com timecode em toca-discos externos para controlar o Mixxx - + Enable Vinyl Control &%1 Ativar Controlo do Vinil &%1 - + &Record Mix &Gravar Mistura - + Record your mix to a file Grave sua mixagem para um arquivo - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Ativar Transmissão Ao &Vivo - + Stream your mixes to a shoutcast or icecast server Difunda as suas misturas via um servidor de "shoutcast" ou "icecast" - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Ativar Atalhos de Teclado - + Toggles keyboard shortcuts on or off Alterna entre ligar/desligar os atalhos de teclado. - + Ctrl+` Ctrl+` - + &Preferences &Preferências - + Change Mixxx settings (e.g. playback, MIDI, controls) Muda as configurações do Mixxx (ex.: reprodução, MIDI, controles) - + &Developer &Desenvolvedor - + &Reload Skin &Recarregar Skin - + Reload the skin Recarregar a skin - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools &Ferramentas do Desenvolvedor - + Opens the developer tools dialog Abre o diálogo das ferramentas do desenvolvedor - + Ctrl+Shift+T - + Ctrl+Shift+T - + Stats: &Experiment Bucket Dados: Balde de &Experimento - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Ativa o modo Experiências. Coleta estatísticas no balde de rastreio EXPERIÊNCIAS. - + Ctrl+Shift+E - + Ctrl+Shift+E - + Stats: &Base Bucket Estatísticas: &Balde Base - + Enables base mode. Collects stats in the BASE tracking bucket. Ativa o modo Base. Coleta estatísticas no balde de rastreio BASE. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Deb&ugger Ativado - + Enables the debugger during skin parsing Ativa o debugger enquanto a skin estiver sendo analisada - + Ctrl+Shift+D - + Ctrl+Shift+D - + &Help &Ajuda - + Show Keywheel menu title @@ -15937,74 +16486,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + F12 - + &Community Support &Apoio da Comunidade - + Get help with Mixxx Obter ajuda com o Mixxx - + &User Manual Manual do &Utilizador - + Read the Mixxx user manual. Ler o manual do utilizador do Mixxx. - + &Keyboard Shortcuts &Atalhos de Teclado - + Speed up your workflow with keyboard shortcuts. Acelere o seu fluxo de trabalho com os atalhos de teclado. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Traduzir Este Programa - + Help translate this application into your language. Ajude a traduzir esta aplicação na sua língua. - + &About So&bre - + About the application Sobre esta aplicação @@ -16012,25 +16561,25 @@ This can not be undone! WOverview - + Passthrough 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 @@ -16039,25 +16588,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Limpar entrada - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Procurar - + Clear input Limpar a entrada @@ -16068,92 +16605,86 @@ This can not be undone! Procurar... - + Clear the search bar input field - - Enter a string to search for - Digite uma frase para procurar + + Return + Enter - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Atalho + See User Manual > Mixxx Library for more information. + - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return - Enter + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history @@ -16238,625 +16769,640 @@ This can not be undone! WTrackMenu - + Load to Carregar para - + Deck Leitor - + Sampler Sampler - + Add to Playlist Adicionar à Playlist - + Crates Caixas - + Metadata Metadados - + Update external collections - + Cover Art Capa do Disco - + Adjust BPM - + Ajustar BPM - + Select Color - - + + Analyze Analisar - - + + Delete Track Files - + 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) - + Preview Deck Leitor de Antevisão - + Remove Remover - + Remove from Playlist Remover da Playlist - + Remove from Crate Remover da Caixa - + Hide from Library Ocultar da Biblioteca - + Unhide from Library Mostrar da Bilioteca - + Purge from Library Remover da Biblioteca - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Propriedades - + Open in File Browser Abrir no Explorador de Ficheiros - + Select in Library - + Import From File Tags Importar Das Tags Ficheiros - + Import From MusicBrainz Importar De MusicBrainz - + Export To File Tags Exportar Para Tags Ficheiros - + BPM and Beatgrid BPM e Grelha de Batidas - + Play Count Contador de Leitura - + Rating Classificação - + Cue Point Ponto de Marcação - - + + Hotcues Hot Cues - + Intro - + Outro - + Key Tom - + ReplayGain ReplayGain - + Waveform Forma de Onda - + Comment Comentário - + All Todas - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Bloquear BPM - + Unlock BPM Desbloquear BPM - + Double BPM Duplicar BPM - + Halve BPM Reduzir a Metade BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Leitor %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Locking BPM of %n track(s)Locking BPM of %n track(s)Bloqueando o BPM de %n faixa(s) - + Unlocking BPM of %n track(s) Unlocking BPM of %n track(s)Unlocking BPM of %n track(s)Desbloqueando o BPM de %n faixa(s) - + Setting rating of %n track(s) - + Setting color of %n track(s) Setting color of %n track(s)Setting color of %n track(s)Mudando a cor de %n faixa(s) - + Resetting play count of %n track(s) - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Cancelar - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Fechar - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16910,37 +17456,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16948,12 +17494,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Mostra ou oculta colunas. - + Shuffle Tracks @@ -16991,22 +17537,22 @@ This can not be undone! - + 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. @@ -17042,7 +17588,7 @@ Clique OK para sair. Browse - + Navegar @@ -17062,7 +17608,7 @@ Clique OK para sair. Cancel - + Cancelar @@ -17155,7 +17701,7 @@ Clique OK para sair. No network access - + Sem acesso a rede @@ -17163,6 +17709,24 @@ Clique OK para sair. A requisição de Rede não foi iniciada + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17171,4 +17735,27 @@ Clique OK para sair. Nenhum efeito carregado. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_ro.qm b/res/translations/mixxx_ro.qm index 3a66a052e63a..9ef04a080c43 100644 Binary files a/res/translations/mixxx_ro.qm and b/res/translations/mixxx_ro.qm differ diff --git a/res/translations/mixxx_ro.ts b/res/translations/mixxx_ro.ts index d00e953e3f30..a81b0399d90a 100644 --- a/res/translations/mixxx_ro.ts +++ b/res/translations/mixxx_ro.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Colecții - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Elimină colecția ca sursă pistă - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Adaugă colecția ca sursă pistă @@ -148,7 +156,7 @@ BasePlaylistFeature - + New Playlist Listă de redare nouă @@ -159,7 +167,7 @@ - + Create New Playlist Crează listă de redare nouă @@ -189,113 +197,120 @@ Duplică - - + + Import Playlist Importare 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) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -303,12 +318,12 @@ BaseSqlTableModel - + # # - + Timestamp Marcaj temporal @@ -316,7 +331,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Nu se poate încărca pista. @@ -324,137 +339,142 @@ BaseTrackTableModel - + Album Album - + Album Artist Album artist - + Artist Artist - + Bitrate Rată de biți - + BPM BPM - + Channels Canale - + Color - + Comment Comentariu - + Composer Compozitor - + Cover Art Copertă - + Date Added Data adăugării - + Last Played - + Duration Durată - + Type Tip - + Genre Gen - + Grouping Grupare - + Key Tastă - + Location Locație - + + Overview + + + + Preview Previzualizare - + Rating Apreciere - + ReplayGain Înlocuire câștig - + Samplerate - + Played Redat - + Title Titlu - + Track # Pista # - + Year An - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -476,22 +496,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. - + Settings error Eroare de setări - + <b>Error with settings for '%1':</b><br> @@ -542,67 +562,77 @@ BrowseFeature - + Add to Quick Links Adaugă la link-uri rapide - + Remove from Quick Links Elimină din link-uri rapide - + Add to Library Adaugă la bibliotecă - + Refresh directory tree - + Quick Links Link-uri rapide - - + + Devices Dispozitive - + Removable Devices Medii amovibile - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -712,12 +742,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. @@ -748,87 +778,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. - + + Force Mixxx to load an unstable version with an existing user profile from a stable version + + + + 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 @@ -838,32 +873,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -956,2547 +991,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Ieșire căști - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Deck %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Previzualizare Deck %1 - + Microphone %1 Microfon %1 - + Auxiliary %1 Auxiliar %1 - + Reset to default Restabilește la implicit - + Effect Rack %1 Rack efect %1 - + Parameter %1 Parametru %1 - + Mixer Mixer - - + + Crossfader Crossfader - + Headphone mix (pre/main) Mixer căști (pre/main) - + Toggle headphone split cueing - + Headphone delay Întârziere căști - + Transport Transport - + Strip-search through track Navigare bandă prin pistă - + Play button Buton redare - - + + Set to full volume Configurează la volum maxim - - + + Set to zero volume Configurează la volum 0 - + Stop button Buton oprire - + Jump to start of track and play Sări la sfârșitul pistei și redă - + Jump to end of track Sări la sfârșitul pistei - + Reverse roll (Censor) button - + Headphone listen button Buton ascultare în căști - - + + Mute button Buton amuțire - + Toggle repeat mode Comută modul repetare - - + + 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 - + Toggle slip mode Comută modul adormire - - + + BPM BPM - + Increase BPM by 1 Mărește BPM cu 1 - + Decrease BPM by 1 Scade BPM cu 1 - + Increase BPM by 0.1 Mărește BPM cu 0,1 - + Decrease BPM by 0.1 Scade BPM cu 0,1 - + BPM tap button - + Toggle quantize mode Comută mod cuantificare - + One-time beat sync (tempo only) Sincronizare bătaie o singură dată (numai tempo) - + One-time beat sync (phase only) Sincronizare bătaie o singură dată (numai fază) - + Toggle keylock mode Comută mod keylock - + Equalizers 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ă - + Slot %1 Slotul %1 - + Headphone Mix Mixer căști - + Headphone Split Cue - + Headphone Delay Întârziere căști - + Play Redare - + Fast Rewind Derulare rapidă înapoi - + Fast Rewind button Buton derulare rapidă înapoi - + Fast Forward Derulare rapidă înainte - + Fast Forward button Buton derulare rapidă înainte - + Strip Search Căutare bandă - + Play Reverse Redare invers - + Play Reverse button Buton redare invers - + Reverse Roll (Censor) - + Jump To Start Sări la pornire - + Jumps to start of track Sări la pornirea pistei - + Play From Start Redă de la pornire - + Stop Oprire - + Stop And Jump To Start Oprește și sări la pornire - + Stop playback and jump to start of track Oprește redarea și sări la începutul pistei - + Jump To End Sări la final - + Volume Volum - - - + + + Volume Fader Fader Volume - - + + Full Volume Volum total - - + + Zero Volume Volum zero - + Track Gain Câștig pistă - + Track Gain knob Buton câștig pistă - - + + Mute Amuțire - + Eject Scoate - - + + Headphone Listen Ascultare în căști - + Headphone listen (pfl) button Buton ascultare în căști (pfl) - + Repeat Mode Mod repetare - + Slip Mode Mod adormire - - + + Orientation Orientare - - + + Orient Left Orientare stânga - - + + Orient Center Orientare centru - - + + Orient Right Orientare dreapta - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM Manual - + Adjust Beatgrid Faster +.01 Ajustează grila bătaie mai repede +.01 - + Increase track's average BPM by 0.01 Mărește media BPM a pistei cu 0.01 - + Adjust Beatgrid Slower -.01 Ajustează grila bătaie mai lent -.01 - + Decrease track's average BPM by 0.01 Descrește media BPM a pistei cu 0.01 - + Move Beatgrid Earlier Mută grila bătaie mai devreme - + Adjust the beatgrid to the left Ajustează grila bătaie la stânga - + Move Beatgrid Later Mută grila bătaie mai târziu - + Adjust the beatgrid to the right Ajustează la dreapta grila bătaie - + Adjust Beatgrid Ajustare grilă bătaie - + Align beatgrid to current position Aliniază grila bătaie la poziția curentă - + Adjust Beatgrid - Match Alignment Ajustează grila bătaie - Potrivește aliniament - + Adjust beatgrid to match another playing deck. Ajustează grila bătaie să se potrivească cu alt deck care redă. - + Quantize Mode Mod cuantificare - + Sync Sincronizare - + Beat Sync One-Shot Sincronizează bătaia o singură dată - + Sync Tempo One-Shot Sincronizează tempo o singură dată - + Sync Phase One-Shot 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 - + High EQ Egalizator înalte - + Mid EQ Egalizator medii - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 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 - + 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ă - + Headphone Gain Câștig căști - + Headphone gain Câștig căști - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 Ajustare %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Aspect aplicație - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Căști - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Omoară %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - - Tempo tap button + + Tempo tap button + + + + + Move Beatgrid + + + + + Adjust the beatgrid to the left or right - - Move Beatgrid + + Move Beatgrid Half a Beat - - Adjust the beatgrid to the left or right + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3509,6 +3582,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3611,32 +3837,32 @@ trace - Above + Profiling messages 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. @@ -3644,27 +3870,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3697,7 +3923,7 @@ trace - Above + Profiling messages - + Lock Blochează @@ -3727,7 +3953,7 @@ trace - Above + Profiling messages Sursă pistă Auto DJ - + Enter new name for crate: Introduceți numele nou pentru colecție: @@ -3744,59 +3970,53 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) Listă de redare M3U (*.m3u) @@ -3805,23 +4025,29 @@ trace - Above + Profiling messages 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. + + + + Export to Engine DJ + + Crates let you organize your music however you'd like! Colecțiile vă permit să organizați muzica oricum vă place! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3916,12 +4142,12 @@ trace - Above + Profiling messages Foști contribuitori - + Official Website - + Donate @@ -4433,37 +4659,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Dacă maparea nu funcționează încercați activarea opțiunilor avansate de mai jos iar apoi încercați controlul din nou. Sau apăsați Reâncearcă pentru a detecta din nou controlul midi. - + Didn't get any midi messages. Please try again. Nu s-a primit nici un mesaj midi. Reâncercați. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Nu se poate detecta o mapare -- încercați din nou. Asigurați-vă că atingeți un singur control odată. - + Successfully mapped control: Control mapat cu succes: - + <i>Ready to learn %1</i> <i>Gata de învățat %1</i> - + Learning: %1. Now move a control on your controller. Se învață: %1. Acum deplasați un control pe controler. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4502,17 +4728,17 @@ You tried to learn: %1,%2 - + Log Jurnal - + Search Căutare - + Stats Stări @@ -4708,122 +4934,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Acțiune eșuată - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4836,27 +5079,27 @@ Two source connections to the same server that have the same mountpoint can not Preferințe transmisie live - + Mixxx Icecast Testing Testare Mixxx Icecast - + Public stream Flux public - + http://www.mixxx.org http://www.mixxx.org - + Stream name Nume flux - + 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. Din cauza defectelor din unii clienți de streaming, actualizarea dinamică a metadatelor Ogg Vorbis poate cauza întreruperi în ascultare sau deconectări. Apăsați această casetă pentru actualizarea metadatelor oricum. @@ -4896,67 +5139,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Actualizare dinamică metadate Ogg Vorbis. - + ICQ - + AIM - + Website Website - + Live mix Mixare live - + IRC IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Gen - + Use UTF-8 encoding for metadata. Utilizați codarea UTF-8 pentru metadate. - + Description Descriere @@ -4982,42 +5230,42 @@ Two source connections to the same server that have the same mountpoint can not Canale - + Server connection Conexiune server - + Type Tip - + Host Gazdă - + Login Autentificare - + Mount Montează - + Port Port - + Password Parolă - + Stream info @@ -5027,17 +5275,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5096,13 +5344,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5147,17 +5396,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5165,114 +5419,114 @@ associated with each key. DlgPrefController - + Apply device settings? Se aplică configurările dispozitivului? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Configurările trebuie aplicate înaintea pornirii asistentului de învățare. Se aplică configurările și se continuă? - + None Niciuna - + %1 by %2 %1 cu %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Depanarea - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Curăță mapările de intrare - + Are you sure you want to clear all input mappings? Sigur doriți să curățați toate mapările de intrare? - + Clear Output Mappings Curăță mapări de ieșire - + Are you sure you want to clear all output mappings? Sigur doriți să curățați toate mapările de ieșire? @@ -5290,100 +5544,105 @@ Se aplică configurările și se continuă? Activat - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Descriere: - + Support: Asistență: - + Screens preview - + Input Mappings Mapări de intrare - - + + Search Căutare - - + + Add Adaugă - - + + Remove Elimină @@ -5403,17 +5662,17 @@ Se aplică configurările și se continuă? - + Mapping Info - + Author: Autor: - + Name: Nume: @@ -5423,28 +5682,28 @@ Se aplică configurările și se continuă? Asistent învățare (numai MIDI) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Curăță tot - + Output Mappings Mapări de ieșire @@ -5459,21 +5718,21 @@ Se aplică configurările și se continuă? - 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5603,6 +5862,16 @@ Se aplică configurările și se continuă? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5632,137 +5901,137 @@ Se aplică configurările și se continuă? DlgPrefDeck - + Mixxx mode Mod Mixxx - + Mixxx mode (no blinking) Mod Mixxx (fără clipire) - + Pioneer mode Mod Pioneer - + Denon mode Mod Denon - + Numark mode Mod Numark - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semiton) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6194,62 +6463,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6476,67 +6745,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Selectați fontul bibliotecii @@ -6585,262 +6884,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Formatul fișierelor audio - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Font bibliotecă: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Înălțime rând bibliotecă: - + Use relative paths for playlist export if possible Utilizați căile relative pentru exportul listei de redare dacă este posibil - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms ms - + Load track to next available deck Încarcă pista la următorul deck disponibil - + External Libraries Biblioteci externe - + You will need to restart Mixxx for these settings to take effect. Va trebui să reporniți Mixxx pentru ca aceste configurări să aibă efect. - + Show Rhythmbox Library Arată biblioteca Rhythmbox - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Arată biblioteca Banshee - + Show iTunes Library Arată biblioteca iTunes - + Show Traktor Library Arată biblioteca Traktor - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. Toate bibliotecile arătate sunt protejate la scriere. @@ -7186,33 +7490,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Alegeți directorul înregistrări - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7230,43 +7534,55 @@ and allows you to pitch adjust them for harmonic mixing. Răsfoire... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Calitate - + Tags Etichete - + Title Titlu - + Author Autor - + Album Album - + Output File Format - + Compression - + Lossy @@ -7281,12 +7597,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7417,173 +7733,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Implicit (întârziere lungă) - + Experimental (no delay) Experimental (fără întârziere) - + Disabled (short delay) Dezactivat (întârziere scurtă) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled Dezactivat - + Enabled Activat - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Eroare de configurație @@ -7601,131 +7921,136 @@ The loudness target is approximate and assumes track pregain and main output lev API sunet - + Sample Rate Rată eșanționare - + Audio Buffer Buffer audio - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization Sincronizare plăci de sunet - + Output Ieșire - + Input Intrare - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics Sfaturi și diagnosticuri - + Downsize your audio buffer to improve Mixxx's responsiveness. Scădeți dimensiunea tamponului audio pentru a îmbunătății reacția de răspuns Mixxx. - + Query Devices Interogare dispozitive @@ -7767,7 +8092,7 @@ The loudness target is approximate and assumes track pregain and main output lev Configurare disc vinil - + Show Signal Quality in Skin Arată calitatea semnalului în aspectul aplicației @@ -7803,46 +8128,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 Deck 1 - + Deck 2 Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Calitate semnal - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Realizat de xwax - + Hints Sfaturi - + Select sound devices for Vinyl Control in the Sound Hardware pane. Selectați dispozitivele de sunet pentru controlul discului de vinil în panoul dispozitive de sunet. @@ -7850,58 +8180,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrat - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL nu este disponibil - + dropped frames cadre omise - + Cached waveforms occupy %1 MiB on disk. @@ -7919,22 +8249,17 @@ The loudness target is approximate and assumes track pregain and main output lev Rată de cadre - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Afișează ce versiune de OpenGL este suportată de platforma curentă. - - Normalize waveform overview - Normalizează vedere generală formă de undă - - - + Average frame rate Medie rată de cadre @@ -7950,7 +8275,7 @@ The loudness target is approximate and assumes track pregain and main output lev Nivel implicit zoom - + Displays the actual frame rate. Afișează rata de cadre actuală. @@ -7985,7 +8310,7 @@ The loudness target is approximate and assumes track pregain and main output lev Scăzută - + Show minute markers on waveform overview @@ -8030,7 +8355,7 @@ The loudness target is approximate and assumes track pregain and main output lev Câștig vizual global - + 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. @@ -8097,22 +8422,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8128,7 +8453,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8158,12 +8483,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8171,47 +8542,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Placă de sunet - + Controllers Controlere - + Library Bibliotecă - + Interface Interfață - + Waveforms Forme de undă - + Mixer Mixer - + Auto DJ Auto DJ - + Decks - + Colors @@ -8246,47 +8617,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Efecte - + 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> - + Vinyl Control Control disc vinil - + Live Broadcasting Transmisie live - + Modplug Decoder Decodor Modplug @@ -8642,284 +9013,289 @@ This can not be undone! Rezumat - + Filetype: Tip fișier: - + BPM: BPM: - + Location: Locație: - + Bitrate: Rata de biți: - + Comments Comentarii - + BPM BPM - + Sets the BPM to 75% of the current value. Configurează BPM la 75% din valoarea actuală. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Configurează BPM la 50% din valoarea actuală. - + Displays the BPM of the selected track. Arată BPM pentru pista selectată. - + Track # Pista # - + Album Artist Album artist - + Composer Compozitor - + Title Titlu - + Grouping Grupare - + Key Tastă - + Year An - + Artist Artist - + Album Album - + Genre Gen - + ReplayGain: - + Sets the BPM to 200% of the current value. Configurează BPM la 200% față de valoarea actuală. - + Double BPM Dublează BPM - + Halve BPM Înjumătățește BPM - + Clear BPM and Beatgrid Curăță BPM și grila bătaie - + Move to the previous item. "Previous" button Mută la elementul anterior. - + &Previous &Anterior - + Move to the next item. "Next" button Mută la elementul următor. - + &Next &Următor - + Duration: Durată: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Deschide în navigatorul de fișiere - + Samplerate: - + + Filesize: + + + + Track BPM: BPM pistă: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. Configurează BPM la 66% din valoarea actuală. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. Sfat: Utilizați vizualizare Analiză bibliotecă pentru a rula detecția BPM. - + Save changes and close the window. "OK" button Salvează modificările și închide fereastra. - + &OK &OK - + Discard changes and close the window. "Cancel" button Descarcă modificările și închide fereastra. - + Save changes and keep the window open. "Apply" button Salvează modificările și păstrează fereastra deschisă. - + &Apply &Aplică - + &Cancel &Anulare - + (no color) @@ -9076,7 +9452,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9278,27 +9654,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (rapid) - + Rubberband (better) Rubberband (optim) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9513,15 +9889,15 @@ 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 @@ -9533,57 +9909,57 @@ Shown when VuMeter can not be displayed. Please keep 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ă @@ -9591,62 +9967,62 @@ OpenGL. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9656,22 +10032,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9718,27 +10094,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found Controlul(e) Mixxx nu s-au găsit - + 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: - + Some LEDs or other feedback may not work correctly. Unele LED-uri sau alte reacții-control este posibil să nu funcționeze corect. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) * Verificați să vedeți dacă denumirile controlului Mixxx sunt scrise corect în fișierul de mapare (.xml) @@ -9798,22 +10174,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Piste lipsă - + Hidden Tracks Piste ascunse - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9821,209 +10197,250 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10039,13 +10456,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Blochează - - + + Playlists Liste de redare @@ -10055,32 +10472,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Deblochează - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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ă @@ -10179,59 +10627,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ă @@ -10345,69 +10793,82 @@ Doriți să scanați acum biblioteca pentru fișiere copertă? 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Căști - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier Deck - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Control disc vinil - + Microphone + Audio path indetifier Microfon - + Auxiliary + Audio path indetifier Auxiliar - + Unknown path type %1 + Audio path Tip cale necunoscută %1 @@ -10736,47 +11197,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Lățime - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync Sincronizare - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11560,19 +12023,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Deck %1 @@ -11705,7 +12168,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11736,7 +12199,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11763,23 +12226,94 @@ and the processed output signal as close as possible in perceived loudness - - Off + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11810,6 +12344,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11820,11 +12355,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11836,11 +12373,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11869,12 +12408,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11909,42 +12448,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12002,54 +12541,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12205,193 +12744,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx a întâmpinat o problemă - + Could not allocate shout_t Nu se poate aloca shout_t - + Could not allocate shout_metadata_t Nu se poate aloca shout_metadata_t - + Error setting non-blocking mode: Eroare configurare mod fără blocuri: - + Error setting tls mode: - + Error setting hostname! Eroare configurare nume gazdă! - + Error setting port! Eroare configurare port! - + Error setting password! Eroare configurare parolă! - + Error setting mount! Eroare configurare montare! - + Error setting username! Eroare configurare nume utilizator! - + Error setting stream name! Eroare configurare nume flux! - + Error setting stream description! Eroare configurare descriere flux! - + Error setting stream genre! Eroare configurare gen flux! - + Error setting stream url! Eroare configurare url flux! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! Eroare configurare flux public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Eroare configurare rată de biți - + Error: unknown server protocol! Eroare: protocol server necunoscut! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Eroare configurare protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server Nu se poate conecta la serverul de transmisie - + Please check your connection to the Internet and verify that your username and password are correct. Verificați conexiunea la internet și verificați dacă numele de utilizator și parola sunt corecte. @@ -12399,7 +12938,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrat @@ -12407,23 +12946,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device un dispozitiv - + An unknown error occurred A apărut o eroare necunoscută - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12608,7 +13147,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Învârtire disc vinil @@ -12790,7 +13329,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Copertă @@ -12980,243 +13519,243 @@ may introduce a 'pumping' effect and/or distortion. Menține câștigul EQ joase la zero cât timp este activ. - + Displays the tempo of the loaded track in BPM (beats per minute). Afișează ritmul pistei încărcate în BPM (bătăi pe minut). - + Tempo Ritm - + Key The musical key of a track Cheie - + BPM Tap BPM Manual - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down Ajustare reducere BPM - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up Ajustare creștere BPM - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier Ajustează bătăile mai devreme - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later Ajustează bătăile mai târziu - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. Arată/ascunde secțiunea rotire disc vinil. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Redare - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13439,941 +13978,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Salvează bancă sampler - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Încarcă bancă sampler - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Super buton - + Next Chain Lanțul următor - + Previous Chain Lanț anterior - + Next/Previous Chain Următorul/Anteriorul lanț - + Clear Curăță - + Clear the current effect. Curăță efectul curent. - + Toggle Comutare - + Toggle the current effect. - + Next Următor - + Clear Unit Curăță unitatea - + Clear effect unit. Curăță unitatea efectelor - + Show/hide parameters for effects in this unit. - + Toggle Unit Comută unitatea - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the 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 the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Parametru efect - + Adjusts a parameter of the effect. Ajustează un parametru al efectului. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter Parametru egalizator - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Ajustare grilă bătaie - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. Ajustează grila bătaie să se potrivească cu alt deck care redă. - + If quantize is enabled, snaps to the nearest beat. Dacă cuantizarea este activată, fixează la cea mai apropiată bătaie. - + Quantize Cuantificare - + Toggles quantization. Comută cuantificare. - + Loops and cues snap to the nearest beat when quantization is enabled. Bucle și cue se fixează la cea mai apropiată bătaie când cuantizarea este activată. - + Reverse Invers - + Reverses track playback during regular playback. Inversează redarea pistei în timpul redării normale. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Redare/Pauză - + Jumps to the beginning of the track. Sări la începutul pistei. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. Crește pitch cu un semiton. - + Decreases the pitch by one semitone. Scade pitch cu un semiton. - + Enable Vinyl Control Activează control disc vinil - + When disabled, the track is controlled by Mixxx playback controls. Când este dezactivat, pista este controlată de controalele de redare Mixxx. - + When enabled, the track responds to external vinyl control. Când este activat, pista răspunde la controlul discului de vinil extern. - + Enable Passthrough Activează trecerea - + Indicates that the audio buffer is too small to do all audio processing. Indică faptul că buffer-ul audio este prea mic pentru a efectua toate procesările audio. - + Displays cover artwork of the loaded track. Arată coperta pistei încărcate. - + Displays options for editing cover artwork. Afișează opțiuni pentru editarea copertei. - + Star Rating Stea evaluare - + Assign ratings to individual tracks by clicking the stars. Atribuie evaluări pistelor individuale apăsând stelele. @@ -14508,33 +15088,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Pornește redarea de la începutul pistei. - + Jumps to the beginning of the track and stops. Sări la începutul pistei și oprește. - - + + Plays or pauses the track. Redă sau pauzează pista. - + (while playing) (în timp ce se redă) @@ -14554,215 +15134,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (în timp cât este oprit) - + Cue Cue - + Headphone Căști - + Mute Amuțire - + Old Synchronize Sincronizare veche - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sincronizează la primul deck (în ordine numerică) care redă o pistă și are un BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Dacă nici un deck nu redă, sincronizează cu primul deck care are un BPM. - + 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. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. Resetează cheia la cheia originală a pistei. - + Speed Control Control viteză - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Ajustare pitch - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Mixer înregistrare - + Toggle mix recording. - + Enable Live Broadcasting Activare transmisie live - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. Redarea se va relua de unde ar fi trebuit să fie pista dacă nu a intrat în buclă. - + Loop Exit Ieșire buclă - + Turns the current loop off. Oprește bucla curentă. - + Slip Mode Mod adormire - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Cînd se activează, redarea continuă în fundal fără sunet în timpul unei bucle, inversări, zgârieturi etc. - + Once disabled, the audible playback will resume where the track would have been. Odată dezactivat, redarea auzibilă se va relua de unde pista ar fi fost. - + Track Key The musical key of a track Cheie pistă - + Displays the musical key of the loaded track. Afișează cheia muzicală a pistei încărcate. - + Clock Ceas - + Displays the current time. Afișează ora actuală. - + Audio Latency Usage Meter Contor utilizare latență audio - + Displays the fraction of latency used for audio processing. Afișează fracția latenței utilizată pentru procesare audio. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. Nu activați keylock, efecte sau deck-uri suplimentare în această situație. - + Audio Latency Overload Indicator Indicator suprasarcină latență audio @@ -14802,259 +15382,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Activați controlul disc vinil din Meniu -> Opțiuni. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Derulare rapidă înapoi - + Fast rewind through the track. Derulare rapidă înapoi prin pistă. - + Fast Forward Derulare rapidă înainte - + Fast forward through the track. Derulare rapidă înainte prin pistă. - + Jumps to the end of the track. Sări la sfârșitul pistei. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Control pitch - + Pitch Rate Rată pitch - + Displays the current playback rate of the track. Afișează ritmul de redare curentă a pistei. - + Repeat Repetă - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Scoate - + Ejects track from the player. Scoate pista din player. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Dacă hotcue este configurat, sări la hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Dacă hotcue nu este configurat, configurează hotcue la poziția curentă de redare. - + Vinyl Control Mode Mod control disc vinil - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status Stare disc vinil - + Provides visual feedback for vinyl control status: - + Green for control enabled. Verde pentru activare control. - + Blinking yellow for when the needle reaches the end of the record. Galben clipitor când acul atinge sfârșitul înregistrării. - + Loop-In Marker Marcaj intrare buclă - + Loop-Out Marker Marcaj ieșire buclă - + Loop Halve Înjumătățește bucla - + Halves the current loop's length by moving the end marker. Înjumătățește lungimea buclei curente prin mutarea marcajului de sfârșit. - + Deck immediately loops if past the new endpoint. - + Loop Double Buclă dublă - + Doubles the current loop's length by moving the end marker. Dublează lungimea buclei curente mutând marcajul de sfârșit. - + Beatloop - + Toggles the current loop on or off. Comută bucla actuală pornit sau oprit. - + Works only if Loop-In and Loop-Out marker are set. Funcționează numai dacă marcajele intrare buclă și ieșire buclă sunt configurate. - + Vinyl Cueing Mode Mod cue disc vinil - + Determines how cue points are treated in vinyl control Relative mode: Determină cum sunt tratate punctele cue în mod control disc vinil relativ: - + Off - Cue points ignored. Închis - Punctele cue ignorate. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time Timp pistă - + Track Duration Durată pistă - + Displays the duration of the loaded track. Afișează durata pistei încărcate. - + Information is loaded from the track's metadata tags. Informația este încărcată din metadata etichetelor pistei. - + Track Artist Artist piesă - + Displays the artist of the loaded track. Afișează artistul pistei încărcate. - + Track Title Titlu piesă - + Displays the title of the loaded track. Afișează titlul pistei încărcate. - + Track Album Album - + Displays the album name of the loaded track. Afișează numele albumului pistei încărcate. - + Track Artist/Title Artist/titlu pistă - + Displays the artist and title of the loaded track. Afișează artistul și titlul pistei încărcate. @@ -15062,12 +15642,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15282,47 +15862,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15447,323 +16055,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Crează Listă de redare &nouă - + Create a new playlist Creează o nouă listă de redare - + Ctrl+n Ctrl+n - + Create New &Crate Creează &Colecție nouă - + Create a new crate Creează o colecţie nouă - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Vizualizare - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Poate să nu fie suportat pe toate aspectele aplicației. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Arată secțiunea microfon - + Show the microphone section of the Mixxx interface. Arată secțiunea microfonului a interfeței Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Arată secțiunea control disc vinil - + Show the vinyl control section of the Mixxx interface. Arată secțiunea control disc vinil a interfeței Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Arată previzualizare Deck - + Show the preview deck in the Mixxx interface. Arată previzualizarea deck-ului în interfața Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Arată coperta - + Show cover art in the Mixxx interface. Arată coperta în interfața Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Mărește biblioteca - + 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. - + Space Menubar|View|Maximize Library Spațiu - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Ecran complet - + Display Mixxx using the full screen Afișează Mixxx utilizând tot ecranul - + &Options &Opțiuni - + &Vinyl Control Control disc &vinil - + Use timecoded vinyls on external turntables to control Mixxx Utilizează codarea de timp discuri vinil pe platan extern pentru a controla Mixxx - + Enable Vinyl Control &%1 Activează controlul disc vinil &%1 - + &Record Mix &Înregistrare mixaj - + Record your mix to a file Înregistrează mixajul într-un fişier - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Activează &transmisia live - + Stream your mixes to a shoutcast or icecast server Difuzați mixajul dumneavoastră la un server shoutcast sau icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Activează &scurtăturile de tastatură - + Toggles keyboard shortcuts on or off Comută scurtăturile de tastatură pornit sau oprit - + Ctrl+` Ctrl+` - + &Preferences &Preferințe - + Change Mixxx settings (e.g. playback, MIDI, controls) Schimbă configurările Mixxx (ex. redare, MIDI, controale) - + &Developer &Dezvoltator - + &Reload Skin &Reâncarcă aspect aplicație - + Reload the skin Reâncarcă aspect aplicație - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools &Unelte dezvoltator - + Opens the developer tools dialog Deschide dialogul uneltelor dezvoltatorului - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Dep&anator activat - + Enables the debugger during skin parsing Activează depanatorul în timpul analizării aspectului aplicației - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Ajutor - + Show Keywheel menu title @@ -15780,74 +16428,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support Suport &comunitate - + Get help with Mixxx Obțineți ajutor cu Mixxx - + &User Manual Manual &utilizator - + Read the Mixxx user manual. Citiți manualul utilizatorului Mixxx. - + &Keyboard Shortcuts Scurtături &tastatură - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Tradu această aplicație - + Help translate this application into your language. Ajutați la traducerea acestei aplicații în limba dumneavoastră. - + &About &Despre - + About the application Despre aplicaţie @@ -15855,25 +16503,25 @@ This can not be undone! WOverview - + 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 @@ -15882,25 +16530,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Curăță intrarea - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Căutare - + Clear input Curăță intrarea @@ -15911,169 +16547,163 @@ This can not be undone! Caută... - + Clear the search bar input field - - Enter a string to search for - Introduceți un șir de căutat + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Scurtătură + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Focalizare + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Ieșire căutare + + Delete query from history + WSearchRelatedTracksMenu - + Search related Tracks - + Key Tastă - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Artist - + Album Artist Album artist - + Composer Compozitor - + Title Titlu - + Album Album - + Grouping Grupare - + Year An - + Genre Gen - + Directory - + &Search selected @@ -16081,620 +16711,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck Deck - + Sampler Sampler - + Add to Playlist Adaugă la lista de redare - + Crates Colecții - + Metadata - + Update external collections - + Cover Art Copertă - + Adjust BPM - + Select Color - - + + Analyze Analizează - - + + Delete Track Files - + 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) - + Preview Deck Previzualizare Deck - + Remove Elimină - + Remove from Playlist - + Remove from Crate - + Hide from Library Ascunde din bibliotecă - + Unhide from Library Anulează ascunderea din bibliotecă - + Purge from Library Rade din bibliotecă - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Proprietăţi - + Open in File Browser Deschide în navigatorul de fișiere - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Apreciere - + Cue Point - - + + Hotcues Hotcue - + Intro - + Outro - + Key Tastă - + ReplayGain Înlocuire câștig - + Waveform - + Comment Comentariu - + All Toate - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Blochează BPM - + Unlock BPM Deblochează BPM - + Double BPM Dublează BPM - + Halve BPM Înjumătățește BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Renunţă - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Închide - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16710,37 +17360,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16748,37 +17398,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16786,12 +17436,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Arată sau ascunde coloane. - + Shuffle Tracks @@ -16799,52 +17449,52 @@ This can not be undone! 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. @@ -16858,68 +17508,78 @@ Apăsați OK să ieșiți. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Răsfoiește - + Export directory - + Database version - + Export Exportă - + Cancel Renunţă - + Export Library to Engine DJ "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16940,7 +17600,7 @@ Apăsați OK să ieșiți. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16950,23 +17610,23 @@ Apăsați OK să ieșiți. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -16991,6 +17651,24 @@ Apăsați OK să ieșiți. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -16999,4 +17677,27 @@ Apăsați OK să ieșiți. Nu s-a încărcat nici un efect. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_ru.qm b/res/translations/mixxx_ru.qm index 58aacd74f977..18494383be43 100644 Binary files a/res/translations/mixxx_ru.qm and b/res/translations/mixxx_ru.qm differ diff --git a/res/translations/mixxx_ru.ts b/res/translations/mixxx_ru.ts index 9ac51d1befd8..2c54d10b4e00 100644 --- a/res/translations/mixxx_ru.ts +++ b/res/translations/mixxx_ru.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Контейнеры - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Удалить контейнер как источник трека - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Добавить контейнер как источник трека @@ -223,7 +231,7 @@ - + Export Playlist Экспорт списка воспроизведения @@ -277,13 +285,13 @@ - + Playlist Creation Failed Не удалось создать список воспроизведения - + An unknown error occurred while creating playlist: Произошла неизвестная ошибка при создании списка воспроизведения: @@ -298,12 +306,12 @@ Удалить список воспроизведения <b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Дата создания @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не удалось загрузить трек. @@ -362,7 +370,7 @@ Каналы - + Color Цвет @@ -377,7 +385,7 @@ Композитор - + Cover Art Обложка @@ -387,7 +395,7 @@ Дата добавления - + Last Played Последнее воспроизведение @@ -417,7 +425,7 @@ Тональность - + Location Местоположение @@ -427,7 +435,7 @@ - + Preview Предварительный просмотр @@ -467,7 +475,7 @@ Год - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Получение изображения @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Не удаётся использовать хранилище паролей: нет доступа к связке ключей. - + Secure password retrieval unsuccessful: keychain access failed. Не удалось найти защищённый пароль: нет доступа к связке ключей. - + Settings error Ошибка параметров - + <b>Error with settings for '%1':</b><br> <b>Ошибка параметров для «%1»:</b><br> @@ -592,7 +600,7 @@ - + Computer Компьютер @@ -612,17 +620,17 @@ Сканировать - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. «Обзор» позволяет перемещаться, просматривать и загружать треки из папок на жёстком диске и внешних устройствах. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,12 @@ Файл создан - + Mixxx Library Медиатека Mixxx - + Could not load the following file because it is in use by Mixxx or another application. Не удалось загрузить следующий файл, потому что он используется Mixxx или другим приложением. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx — это программное обеспечение для диджеев с открытым исходным кодом. Для получения дополнительной информации см.: - + Starts Mixxx in full-screen mode Запускает Mixxx в режиме полного экрана - + Use a custom locale for loading translations. (e.g 'fr') Использовать другую локаль для загрузки переводов (например, 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Каталог верхнего уровня, в котором Mixxx должен искать файлы ресурсов, такие как привязки MIDI или перезапись стандартного пути установки. - + 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 Заставляет Mixxx отображать/регистрировать все данные контроллера, которые он получает, и функции скрипта, которые он загружает - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! Привязки контроллеров будут показывать более агрессивные предупреждения и ошибки при обнаружении неправильного использования API контроллера. Новые привязки контроллеров необходимо разрабатывать при условии, что эта функция включена! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. Включает режим разработчика. Включает дополнительную информацию при журналировании, статистику по производительности и меню инструментов разработчика. - + Top-level directory where Mixxx should look for settings. Default is: Каталог верхнего уровня, в котором Mixxx должен искать параметры. Значение по умолчанию: - + Starts Auto DJ when Mixxx is launched. Запускает Авто DJ при запуске Mixxx. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter Использовать устаревший индикатор громкости - + Use legacy spinny Использовать устаревший вращатель - - Loads experimental QML GUI instead of legacy QWidget skin - Загружает экспериментальный графический интерфейс QML вместо устаревшего скина QWidget + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. Включает безопасный режим. Отключает осциллограммы OpenGL и виджеты крутящихся пластинок. Попробуйте воспользоваться этой функцией, если Mixxx закрывается с ошибкой при запуске. - + [auto|always|never] Use colors on the console output. [автоматически|всегда|никогда] Использовать цвета на выводе консоли. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ debug — То, что выше + сообщения отладки/разраб trace — То, что выше + сообщения профилирования - + 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. Устанавливает уровень журналирования, при котором буфер журнала сбрасывается в mixxx.log. <level> — это одно из значений, определённых в --log-level выше. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. Прерывает (SIGINT) Mixxx, если DEBUG_ASSERT оценивается как false. После этого можно продолжить под отладчиком. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. Загрузить определённые музыкальные файлы при запуске. Каждый указанный файл будет загружен в следующую виртуальную деку. - + Preview rendered controller screens in the Setting windows. @@ -984,2557 +997,2585 @@ trace — То, что выше + сообщения профилировани ControlPickerMenu - + Headphone Output Выход для наушников - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Дека %1 - + Sampler %1 Сэмплер %1 - + Preview Deck %1 Предпросмотр деки %1 - + Microphone %1 Микрофон %1 - + Auxiliary %1 Вспомогательный %1 - + Reset to default Восстановить по умолчанию - + Effect Rack %1 Стойка эффектов %1 - + Parameter %1 Параметр %1 - + Mixer Микшер - - + + Crossfader Кроссфейдер - + Headphone mix (pre/main) Микс в наушниках (предварительный/основной) - + Toggle headphone split cueing Переключить метку разделения для наушников - + Headphone delay Задержка для наушников - + Transport Перенос - + Strip-search through track Быстрый поиск по треку - + Play button Кнопка воспроизведения - - + + Set to full volume Максимальная громкость - - + + Set to zero volume Минимальная громкость - + Stop button Кнопка остановки - + Jump to start of track and play Перейти в начало трека и воспроизвести - + Jump to end of track Перейти к концу трека - + Reverse roll (Censor) button Кнопка обратной прокрутки (Censor) - + Headphone listen button Кнопка прослушивания в наушниках - - + + Mute button Кнопка выключения громкости - + Toggle repeat mode Переключить режим повтора - - + + Mix orientation (e.g. left, right, center) Расположение микса (слева, справа, по центру) - - + + Set mix orientation to left Установить ориентацию микса слева - - + + Set mix orientation to center Установить ориентацию микса по центру - - + + Set mix orientation to right Установить ориентацию микса справа - + Toggle slip mode Переключить режим скольжения - - + + BPM Кол-во ударов в минуту - + Increase BPM by 1 Увеличить BPM на 1 - + Decrease BPM by 1 Уменьшить BPM на 1 - + Increase BPM by 0.1 Увеличить BPM на 0,1 - + Decrease BPM by 0.1 Уменьшить BPM на 0,1 - + BPM tap button Кнопка BPM - + Toggle quantize mode Переключить режим квантования - + One-time beat sync (tempo only) Разовая синхронизация битов (только темп) - + One-time beat sync (phase only) Разовая синхронизация битов (только фаза) - + Toggle keylock mode Переключение в режим блокировки клавиатуры - + Equalizers Эквалайзеры - + Vinyl Control Управление пластинками - + Toggle vinyl-control cueing mode (OFF/ONE/HOT) Переключить метку пластинки (OFF/ONE/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 button (CDJ mode) Кнопка метки (режим CDJ) - + 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 Медиатека - + Slot %1 Слот %1 - + Headphone Mix Микс в наушниках - + Headphone Split Cue Метка разделения для наушников - + Headphone Delay Задержка для наушников - + Play Играть - + Fast Rewind Быстрая перемотка назад - + Fast Rewind button Кнопка быстрой перемотки назад - + Fast Forward Быстрая перемотка вперёд - + Fast Forward button Кнопка быстрой перемотки вперёд - + Strip Search Быстрый поиск - + Play Reverse Воспроизвести в обратном порядке - + Play Reverse button Кнопка обратного воспроизведения - + Reverse Roll (Censor) Обратная прокрутка (Censor) - + Jump To Start Перейти в начало - + Jumps to start of track Переход к началу трека - + Play From Start Играть сначала - + Stop Остановить - + Stop And Jump To Start Остановить и перейти в начало - + Stop playback and jump to start of track Остановить воспроизведение и перейти в начало трека - + Jump To End Перейти в конец - + Volume Громкость - - - + + + Volume Fader Регулятор громкости - - + + Full Volume Максимальная громкость - - + + Zero Volume Минимальная громкость - + Track Gain Регулирование трека - + Track Gain knob Ручка регулирования трека - - + + Mute Без звука - + Eject Извлечь - - + + Headphone Listen Прослушивание в наушниках - + Headphone listen (pfl) button Кнопка прослушивания в наушниках (pfl) - + Repeat Mode Режим повтора - + Slip Mode Режим Slip - - + + Orientation Ориентация - - + + Orient Left Расположить слева - - + + Orient Center Расположить по центру - - + + Orient Right Расположить справа - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0,1 - + BPM -0.1 BPM -0,1 - + BPM Tap Ввод BPM вручную - + Adjust Beatgrid Faster +.01 Ускорить битовую сетку на +.01 - + Increase track's average BPM by 0.01 Увеличить средний BPM трека на 0,01 - + Adjust Beatgrid Slower -.01 Замедлить битовую сетку на -.01 - + Decrease track's average BPM by 0.01 Уменьшить средний BPM трека на 0,01 - + Move Beatgrid Earlier Переместить битовую сетку назад - + Adjust the beatgrid to the left Отрегулировать битовую сетку слева - + Move Beatgrid Later Переместить битовую сетку вперёд - + Adjust the beatgrid to the right Отрегулировать битовую сетку справа - + Adjust Beatgrid Отрегулировать битовую сетку - + Align beatgrid to current position Выровнять битовую сетку по текущей позиции - + Adjust Beatgrid - Match Alignment Отрегулировать битовую сетку — сопоставить выравнивание - + Adjust beatgrid to match another playing deck. Подстроить битовую сетку под проигрывание другой деки. - + Quantize Mode Режим квантования - + Sync Синхронизация - + Beat Sync One-Shot Синхронизация битов - + Sync Tempo One-Shot Синхронизация темпа - + Sync Phase One-Shot Синхронизация фазы - + 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 Возвращает тон к исходному значению - + High EQ Высокий EQ - + Mid EQ Эквалайзер средних частот - - + + Main Output Основной канал - + Main Output Balance Баланс основного канала - + Main Output Delay Задержка основного канала - + Main Output Gain Коэффициент усиления основного выходного сигнала - + Low 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 Установить метку - + 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) Добавить в очередь Auto DJ (в конец) - + Append the selected track to the Auto DJ Queue Добавить выбранный трек в конец очереди Auto DJ - + Add to Auto DJ Queue (top) Добавить в очередь Auto DJ (в начало) - + Prepend selected track to the Auto DJ Queue Добавить выбранный трек в начало очереди Auto 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 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 Перемешать содержимое очереди Auto DJ - + Skip the next track in the Auto DJ queue Пропустить следующий трек в очереди Auto DJ - + Auto DJ Toggle Переключение Auto DJ - + Toggle Auto DJ On/Off Включить/выключить Auto DJ - + Show/hide the microphone & auxiliary section Показать/скрыть микрофон и вспомогательные устройства - + 4 Effect Units Show/Hide Показать/скрыть 4 блока эффектов - + Switches between showing 2 and 4 effect units Переключает отображение между 2мя и 4мя модулями эффектов - + 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 Уменьшить масштаб осциллограммы - + Headphone Gain Усиления для наушников - + Headphone gain Усиления для наушников - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Нажмите для синхронизации (и фазировки с квантизацией), удерживайте для постоянной синхронизации - + One-time beat sync tempo (and phase with quantize enabled) Единоразовая битовая синхронизация (и фазировка с квантованием) - + 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) Временно уменьшить скорость (точная настройка) - - + + Adjust %1 Настроить %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Блок эффектов %1 - + Button Parameter %1 Параметр кнопки %1 - + Skin Скин - + Controller Контроллер - + Crossfader / Orientation Кроссфейдер/Ориентация - + Main Output gain Коэффициент усиления основного выходного сигнала - + Main Output balance Баланс основного канала - + Main Output delay Задержка основного канала - + Headphone Наушники - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Подавление %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Извлекать или не извлекать трек, то есть повторно загружать последний извлечённый трек (из любой колоды)<br>Дважды щёлкните левой кнопкой мыши, чтобы повторно загрузить последний заменённый треку. В пустых колодах перезагружается предпоследний извлечённый трек. - + BPM / Beatgrid BPM / Битовая сетка - + Halve BPM Разделить BPM - + Multiply current BPM by 0.5 Умножить текущий BPM на 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Умножить текущий BPM на 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Умножить текущий BPM на 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Умножить текущий BPM на 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid Переместить сетку битов - + Adjust the beatgrid to the left or right Отрегулировать битовую сетку слева или справа - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + Sync / Sync Lock Синхронизация /блокировка синхронизации - + Internal Sync Leader Внутренний лидер синхронизации - + Toggle Internal Sync Leader Переключить внутренний лидер синхронизации - - + + Internal Leader BPM Внутренний лидер BPM - + Internal Leader BPM +1 BPM внутреннего лидера +1 - + Increase internal Leader BPM by 1 Увеличить BPM внутреннего лидера на 1 - + Internal Leader BPM -1 BPM внутреннего лидера -1 - + Decrease internal Leader BPM by 1 Уменьшить BPM внутреннего лидера на 1 - + Internal Leader BPM +0.1 BPM внутреннего лидера +0.1 - + Increase internal Leader BPM by 0.1 Увеличить BPM внутреннего лидера на 0.1 - + Internal Leader BPM -0.1 BPM внутреннего лидера -0.1 - + Decrease internal Leader BPM by 0.1 Уменьшить BPM внутреннего лидера на 0.1 - + Sync Leader Лидер синхронизации - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Режим синхронизации - + Speed Скорость - + Decrease Speed (Fine) Уменьшить скорость (точная настройка) - + Pitch (Musical Key) Питч (тональность) - + Increase Pitch Увеличить питч - + Increases the pitch by one semitone Увеличивает питч на один полутон - + Increase Pitch (Fine) Увеличить питч (точная настройка) - + Increases the pitch by 10 cents Увеличивает питч на 10 процентов - + Decrease Pitch Понизить питч - + Decreases the pitch by one semitone Понижает питч на один полутон - + Decrease Pitch (Fine) Понизить питч (точная настройка) - + Decreases the pitch by 10 cents Уменьшает питч на 10 процентов - + Keylock Блокировка - + CUP (Cue + Play) CUP (Метка + Воспроизвести) - + Shift cue points earlier Сдвинуть точки меток раньше - + Shift cue points 10 milliseconds earlier Сдвинуть точки меток на 10 миллисекунд раньше - + Shift cue points earlier (fine) Сдвинуть точки меток раньше (точная настройка) - + Shift cue points 1 millisecond earlier Сдвинуть точки меток на 1 миллисекунду раньше - + Shift cue points later Сдвинуть точки меток позднее - + Shift cue points 10 milliseconds later Сдвинуть точки меток на 10 миллисекунд позднее - + Shift cue points later (fine) Сдвинуть точки меток позднее (точная настройка) - + Shift cue points 1 millisecond later Сдвинуть точки меток на 1 миллисекунду позднее - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + Hotcues %1-%2 Горячие метки %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 Активировать %1 - + Jump to or set the %1 [intro/outro marker Перейти к или установить %1 - + Set %1 [intro/outro marker Установить %1 - + Set or jump to the %1 [intro/outro marker Установить или перейти к %1 - + Clear %1 [intro/outro marker Удалить %1 - + Clear the %1 [intro/outro marker Удалить %1 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats Зациклить биты - + Loop Roll Beats Скользящий цикл - + Go To Loop In Перейти к началу петли - + Go to Loop In button Кнопка перехода к началу петли - + Go To Loop Out Перейти к концу петли - + Go to Loop Out button Кнопка перехода к концу петли - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward Прыжки по треку / Смещение петли (в прямом порядке) - + Beat Jump / Loop Move Backward Прыжки по треку / Смещение петли (в обратном порядке) - + Loop Move Forward Переместить петлю вперёд - + Loop Move Backward Переместить петлю назад - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column Сортировать столбец в фокусае - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Сортировка столбца ячейки, которая в данный момент находится в фокусе, что эквивалентно щелчку по её заголовку - + 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) Добавить в очередь Auto DJ (заменить) - + Replace Auto DJ Queue with selected tracks Заменить очередь Auto 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 Перемещает выбранный элемент истории поиска в заданном направлении и с заданными шагами - + Clear search Очистить поиск - + Clears the search query Очищает поисковый запрос - - + + Select Next Color Available Выбрать Следующий Доступный Цвет - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available Выбрать Предыдущий Доступный Цвет - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button Кнопка включения быстрого эффекта на деке %1 - + + Quick Effect Enable Button Кнопка включения быстрого эффекта - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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, AUTO, MANUAL) - + Auxiliary On/Off Включить/выключить вспомогательное устройство - + Auxiliary on/off Включить/выключить вспомогательное устройство - + Auto DJ Авто DJ - + Auto DJ Shuffle Auto DJ: Перемешать - + Auto DJ Skip Next Auto DJ: Переключиться на следующий трек - + Auto DJ Add Random Track АвтоDJ добавить случайный трек - + Add a random track to the Auto DJ queue Добавить случайный трек в очередь АвтоDJ - + Auto DJ Fade To Next Auto DJ: Плавный переход к следующему треку - + Trigger the transition to the next track Инициировать переход к следующей композиции - + User Interface Пользовательский интерфейс - + Samplers Show/Hide Показать/скрыть панель сэмплеров - + Show/hide the sampler section Показать/скрыть панель сэмплеров - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Показать/скрыть микрофон и вспомогательные устройства - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting Начать/остановить прямую трансляцию - + Stream your mix over the Internet. Транслируйте свой микс через Интернет. - + Start/stop recording your mix. Начать/прекратить записывать микс. - - + + + Deck %1 Stems + + + + + 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 Понизить рейтинг трека на одну звезду @@ -3547,6 +3588,159 @@ trace — То, что выше + сообщения профилировани + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace — То, что выше + сообщения профилировани 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. Привязка контроллера «%1» работает некорректно. - + The script code needs to be fixed. Код сценария должна быть исправлена. @@ -3682,27 +3876,27 @@ trace — То, что выше + сообщения профилировани ControllerScriptEngineLegacy - + Controller Mapping File Problem Проблема файла привязки контроллера - + The mapping for controller "%1" cannot be opened. Не удалось открыть привязку контроллера «%1». - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Функционал, предоставляемый этой привязкой контроллера, будет отключён до тех пор, пока проблема не будет решена. - + File: Файл: - + Error: Ошибка: @@ -3735,7 +3929,7 @@ trace — То, что выше + сообщения профилировани - + Lock Заблокировать @@ -3765,7 +3959,7 @@ trace — То, что выше + сообщения профилировани Источник трека Auto DJ - + Enter new name for crate: Введите новое имя для контейнера: @@ -3782,22 +3976,22 @@ trace — То, что выше + сообщения профилировани Импорт контейнера - + Export Crate Экспорт контейнера - + Unlock Разблокировать - + An unknown error occurred while creating crate: Произошла неизвестная ошибка при создании контейнера: - + Rename Crate Переименовать контейнер @@ -3807,28 +4001,28 @@ trace — То, что выше + сообщения профилировани Создайте контейнер для своего следующего концерта, любимых треков в стиле электрохаус или самых популярных треков. - + Confirm Deletion Подтвердить удаление - - + + 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) - + M3U Playlist (*.m3u) Список воспроизведения M3U (*.m3u) @@ -3849,17 +4043,17 @@ trace — То, что выше + сообщения профилировани Контейнеры позволяют упорядочивать музыку так, как вам хочется! - + Do you really want to delete crate <b>%1</b>? Удалить контейнер <b>%1</b>? - + A crate cannot have a blank name. Имя контейнера не может быть пустым. - + A crate by that name already exists. Контейнер с таким именем уже существует. @@ -3954,12 +4148,12 @@ trace — То, что выше + сообщения профилировани Прошлые участники - + Official Website Официальный сайт - + Donate Сделать пожертвование @@ -4765,123 +4959,140 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Автоматический - + Mono Моно - + Stereo Стерео - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Не удалось выполнить действие - + You can't create more than %1 source connections. Вы не можете создать более %1 источников соединения. - + Source connection %1 Источник соединения %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Требуется хотя бы один источник соединения. - + Are you sure you want to disconnect every active source connection? Вы уверены, что хотите разъединить все активные источники соединений? - - + + Confirmation required Требуется подтверждение - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. «%1» имеет такую же точку подключения Icecast, как «%2». Два исходных соединения с одним и тем же сервером, которые имеют одну и ту же точку подключения, не могут быть включены одновременно. - + Are you sure you want to delete '%1'? Вы уверены, что хотите удалить «%1»? - + Renaming '%1' Переименовать «%1» - + New name for '%1': Новое название для «%1»: - + Can't rename '%1' to '%2': name already in use Не удалось переименовать «%1» на «%2»: имя занято @@ -4894,27 +5105,27 @@ Two source connections to the same server that have the same mountpoint can not Параметры прямой трансляции - + Mixxx Icecast Testing Проверка Mixxx Icecast - + Public stream Общая трансляция - + http://www.mixxx.org http://www.Mixxx.org - + Stream name Название трансляции - + 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. Из-за недостатков некоторых клиентов потоковой передачи динамическое обновление метаданных Ogg Vorbis может вызывать сбои и отключение. Установите этот флажок, чтобы метаданные обновлялись в любом случае. @@ -4954,67 +5165,72 @@ Two source connections to the same server that have the same mountpoint can not Параметры для %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Динамически обновлять метаданные Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Веб-сайт - + Live mix Микс в прямом эфире - + IRC IRC - + Select a source connection above to edit its settings here Выберите источник соединения выше для изменения параметров - + Password storage Хранилище пароля - + Plain text Обычный текст - + Secure storage (OS keychain) Безопасное хранилище (встроенное в ОС) - + Genre Жанр - + Use UTF-8 encoding for metadata. Использовать кодировку UTF-8 для метаданных. - + Description Описание @@ -5040,42 +5256,42 @@ Two source connections to the same server that have the same mountpoint can not Каналы - + Server connection Подключение к серверу - + Type Тип - + Host Хост - + Login Логин - + Mount Подключение - + Port Порт - + Password Пароль - + Stream info Информация о трансляции @@ -5085,17 +5301,17 @@ Two source connections to the same server that have the same mountpoint can not Метаданные - + Use static artist and title. Использовать статичные исполнителя и название. - + Static title Статичное название - + Static artist Статичный исполнитель @@ -5154,13 +5370,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number По номеру горячей метки - + Color Цвет @@ -5205,17 +5422,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5223,114 +5445,114 @@ associated with each key. DlgPrefController - + Apply device settings? Применить параметры устройства? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Указанные параметры должны быть применены перед запуском мастера обучения. Применить параметры и продолжить? - + None Нет - + %1 by %2 %1 в %2 - + Mapping has been edited Привязка была изменена - + Always overwrite during this session Всегда перезаписывать во время этого сеанса - + Save As Сохранить как - + Overwrite Перезаписать - + Save user mapping Сохранить пользовательскую привязку - + Enter the name for saving the mapping to the user folder. Введите имя для сохранения привязки в пользовательской папке. - + Saving mapping failed Не удалось сохранить привязку - + A mapping cannot have a blank name and may not contain special characters. Имя привязки не может быть пустым и не должно содержать специальные символы. - + A mapping file with that name already exists. Файл привязки с таким именем уже существует. - + Do you want to save the changes? Сохранить изменения? - + Troubleshooting Устранение неполадок - + <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>Если используется такая привязка, контроллер может работать неправильно. Выберите другую привязку или отключите контроллер.</b></font><br><br>Эта привязка была разработана для более нового движка контроллера Mixxx, и её нельзя использовать в вашей текущей установке Mixxx.<br>Текущая установка Mixxx имеет версию движка контроллера %1. Эта привязка требует версию движка контроллера >= %2.<br><br>Для получения более подробной информации посетите вики-страницу <a href='https://mixxx.org/wiki/doku.php/controller_engine_versions'>Версии движка контроллера</a>. - + Mapping already exists. Привязка уже существует. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> уже существует в папке пользовательских привязок.<br>Заменить или сохранить с новым именем? - + Clear Input Mappings Очистить входные привязки - + Are you sure you want to clear all input mappings? Очистить все входные привязки? - + Clear Output Mappings Очистить выходные привязки - + Are you sure you want to clear all output mappings? Удалить все выходные привязки? @@ -5348,100 +5570,105 @@ Apply settings and continue? Включено - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Описание: - + Support: Поддержка: - + Screens preview - + Input Mappings Входные привязки - - + + Search Поиск - - + + Add Добавить - - + + Remove Удалить @@ -5461,17 +5688,17 @@ Apply settings and continue? Загрузить привязку: - + Mapping Info Сведения о привязке - + Author: Автор: - + Name: Имя: @@ -5481,28 +5708,28 @@ Apply settings and continue? Мастер обучения (только MIDI) - + Data protocol: - + Mapping Files: Файлы привязок: - + Mapping Settings - - + + Clear All Очистить все - + Output Mappings Выходные привязки @@ -5517,21 +5744,21 @@ 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 использует «привязки» для подключения сообщений от контроллера к элементам управления в Mixxx. Если в меню «Загрузить привчязку» при нажатии на контроллер на левой боковой панели он отсутствует в Mixxx, его можно загрузить онлайн с %1. Поместите файлы XML (.xml) и Javascript (.js) в «Папку пользовательских привязок», затем перезапустите Mixxx. При загрузке привязки в виде ZIP-файла извлеките файлы XML и Javascript из ZIP-файла в свою «Папку пользовательских привязок», а затем перезапустите 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Руководство по оборудованию Mixxx DJ - + MIDI Mapping File Format Формат файлов привязок MIDI - + MIDI Scripting with Javascript Сценарии MIDI с Javascript @@ -5661,6 +5888,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5690,137 +5927,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Режим Mixxx - + Mixxx mode (no blinking) Mixxx режим (без мигания) - + Pioneer mode Режим Pioneer - + Denon mode Режим Denon - + Numark mode Режим Numark - + CUP mode Режим CUP - + mm:ss%1zz - Traditional mm:ss%1zz — Традиционный - + mm:ss - Traditional (Coarse) mm:ss — Традиционный (груб.) - + s%1zz - Seconds s%1zz — Секунды - + sss%1zz - Seconds (Long) sss%1zz — Секунды (длинн.) - + s%1sss%2zz - Kiloseconds s%1sss%2zz — Килосекунды - + Intro start Начало вступления - + Main cue Основная метка - + First hotcue - + First sound (skip silence) Первый звук (пропуск тишины) - + Beginning of track Начало трека - + Reject Отклонить - + Allow, but stop deck Разрешить, но остановить деку - + Allow, play from load point Разрешить и воспроизвести с точки загрузки - + 4% 4% - + 6% (semitone) 6% (полутон) - + 8% (Technics SL-1210) 8% (техника SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6275,62 +6512,62 @@ 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 Запретить включение хранителя экрана при воспроизведении - + Disabled Отключено - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + This skin does not support color schemes Этот скин не поддерживает цветовые схемы - + Information Информация - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6558,67 +6795,97 @@ and allows you to pitch adjust them for harmonic mixing. Более подробная информация содержится в руководстве пользователя - + 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 Сканировать - + Item is not a directory or directory is missing - + 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. Метаданные — это вся информация о треке (исполнитель, название и так далее), а также о сетке битов, метках и петлях. Этот выбор влияет только на медиатеку Mixxx. Файлы на диске не будут изменены или удалены. - + Hide Tracks Скрыть треки - + Delete Track Metadata Удалить метаданные трека - + Leave Tracks Unchanged Оставить треки без изменений - + Relink music directory to new location Перепривязать музыкальный каталог к новому местоположению - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Выбрать шрифт медиатеки @@ -6667,262 +6934,267 @@ and allows you to pitch adjust them for harmonic mixing. Повторно сканировать каталоги при запуске - + Audio File Formats Форматы аудиофайлов - + Track Table View Представление треков в виде таблицы - + Track Double-Click Action: Действие двойного щелчка по треку: - + BPM display precision: Точность отображения BPM: - + Session History История сеансов - + Track duplicate distance Расстояние дублирования трека - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime При повторном воспроизведении трека сохранять его в истории сеанса только в том случае, если за это время было воспроизведено более N других треков - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. История списка воспроизведения менее чем с N треками будет удаляться<br/><br/>Примечание: очистка будет выполняться при запуске и завершении Mixxx. - + Delete history playlist with less than N tracks Удалить список воспроизведения истории, содержащий менее N треков - + Library Font: Шрифт медиатеки: - + + Show scan summary dialog + + + + Grey out played tracks Затемнять проигранные треки - + Track Search Поиск Трека - + Enable search completions Включить автодополнение поиска - + Enable search history keyboard shortcuts Включить комбинации клавиш истории поиска - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution Предпочтительное разерешение средства выбора обложек - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Получить обложку из coverartarchive.com с помощью функции импорта метаданных из Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Примечание: «>1200 px» позволит загружать очень большие обложки. - + >1200 px (if available) >1200 пикс. (если доступно) - + 1200 px (if available) 1200 пикс. (если доступно) - + 500 px 500 пикс. - + 250 px 250 пикс. - + Settings Directory Каталог параметров - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Каталог параметров Mixxx содержит базу данных медиатеки, различные файлы конфигурации, файлы журналов, данные анализа треков, а также пользовательские привязки контроллеров. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Вносите правки в эти файлы только если знаете, что делаете, и только когда Mixxx не запущен. - + Open Mixxx Settings Folder Открыть папку параметров Mixxx - + Library Row Height: Высота строк в медиатеке: - + Use relative paths for playlist export if possible Использовать относительные пути при экспорте списка воспроизведения, если возможно - + ... ... - + px пикс. - + Synchronize library track metadata from/to file tags Синхронизировать метаданные трека из медиатеки с тегами файлов/в них - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Автоматически записывает изменённые метаданные трека из медиатеки в теги файлов и повторно импортирует метаданные из обновлённых тегов файлов в медиатеку - + Synchronize Serato track metadata from/to file tags (experimental) Синхронизировать метаданные треков Serato с тегами файлов (экспериментально) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Сохраняет цвет трека, битовую сетку, блокировку bpm, точки меток и петли синхронизированными с тегами файлов SERATO_MARKERS/MARKERS2.<br/><br/>ВНИМАНИЕ: Включение этой функции также позволяет повторно импортировать метаданные Serato после изменения файлов вне Mixxx. При повторном импорте существующие метаданные в Mixxx заменяются метаданными, найденными в тегах файлов. Пользовательские метаданные, не включённые в теги файлов, такие как цвета петли, теряются. - + Edit metadata after clicking selected track Изменить метаданные после нажатия на выбранный трек - + Search-as-you-type timeout: Время поиска по мере ввода: - + ms мс - + Load track to next available deck Загрузить трек в следующую доступную деку - + External Libraries Внешние библиотеки - + You will need to restart Mixxx for these settings to take effect. Чтобы параметры вступили в силу, необходимо перезапустить Mixxx. - + Show Rhythmbox Library Показать библиотеку Rhythmbox - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) Добавить в очередь AutoDJ (в конец) - + Add track to Auto DJ queue (top) Добавить в очередь Auto DJ (в начало) - + Ignore Игнорировать - + Show Banshee Library Показать медиатеку Banshee - + Show iTunes Library Показать медиатеку iTunes - + Show Traktor Library Показать медиатеку Traktor - + Show Rekordbox Library Показать медиатеку Rekordbox - + Show Serato Library Показать медиатеку Serato - + All external libraries shown are write protected. Все показываемые внешние медиатеки защищены от записи. @@ -7267,33 +7539,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Выбор каталога записи - - + + Recordings directory invalid Недопустимый каталог записи - + Recordings directory must be set to an existing directory. Каталогом записи должен быть существующий каталог. - + Recordings directory must be set to a directory. Каталог записи должен являться каталогом. - + Recordings directory not writable Каталог записи не предназначен для записи - + You do not have write access to %1. Choose a recordings directory you have write access to. У вас нет прав записи для каталога %1. Выберите каталог, в который можно записать. @@ -7311,43 +7583,55 @@ and allows you to pitch adjust them for harmonic mixing. Просмотр... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Качество - + Tags Теги - + Title Название - + Author Автор - + Album Альбом - + Output File Format Формат создаваемого файла - + Compression Сжатие - + Lossy С потерями @@ -7362,12 +7646,12 @@ and allows you to pitch adjust them for harmonic mixing. Каталог: - + Compression Level Уровень сжатия - + Lossless Без потерь @@ -7500,172 +7784,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Гц - + Default (long delay) По умолчанию (долгая задержка) - + Experimental (no delay) Экспериментально (без задержки) - + Disabled (short delay) Отключено (короткая задержка) - + Soundcard Clock Часы звуковой карты - + Network Clock Сетевые часы - + Direct monitor (recording and broadcasting only) Прямой мониторинг (только запись и трансляция) - + Disabled Отключено - + Enabled Включено - + Stereo Стерео - + Mono Моно - + To enable Realtime scheduling (currently disabled), see the %1. Чтобы включить планирование в реальном времени (в настоящее время отключено), обратитесь к %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. В %1 перечислены звуковые карты и контроллеры, которые можно использовать в Mixxx. - + Mixxx DJ Hardware Guide Руководство по оборудованию Mixxx DJ - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) автоматически (<= 1024 кадров/период) - + 2048 frames/period 2048 кадров/период - + 4096 frames/period 4096 кадров/период - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. Замерьте задержку приёма-передачи и укажите её значение выше для компенсации задержки микрофона, чтобы выровнять синхронизацию микрофона. - + Refer to the Mixxx User Manual for details. Более подробная информация содержится в руководстве пользователя Mixxx. - + Configured latency has changed. Настроенная задержка изменилась. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Повторно замерьте задержку приёма-передачи и укажите её значение выше для компенсации задержки микрофона, чтобы выровнять синхронизацию микрофона. - + Realtime scheduling is enabled. Планирование в реальном времени включено. - + Main output only Только главный выход - + Main and booth outputs Главный выход и кабина - + %1 ms %1 мс - + Configuration error Ошибка конфигурации @@ -7732,17 +8021,22 @@ The loudness target is approximate and assumes track pregain and main output lev MS - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 мс - + Buffer Underflow Count Счётчик потерь буфера - + 0 0 @@ -7767,12 +8061,12 @@ The loudness target is approximate and assumes track pregain and main output lev Вход - + System Reported Latency Система сообщила о задержке - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Увеличить аудиобуфер, если счётчик потерь увеличивается или слышны хлопки во время воспроизведения. @@ -7802,7 +8096,7 @@ The loudness target is approximate and assumes track pregain and main output lev Подсказки и диагностика - + Downsize your audio buffer to improve Mixxx's responsiveness. Уменьшить размер аудиобуфера, чтобы улучшить отзывчивость Mixxx. @@ -7849,7 +8143,7 @@ The loudness target is approximate and assumes track pregain and main output lev Настройка пластинки - + Show Signal Quality in Skin Показывать в скине качество сигнала @@ -7885,46 +8179,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 Дека 1 - + Deck 2 Дека 2 - + Deck 3 Дека 3 - + Deck 4 Дека 4 - + Signal Quality Качество сигнала - + http://www.xwax.co.uk http://www.xwax.co.UK - + Powered by xwax На базе xwax - + Hints Подсказки - + Select sound devices for Vinyl Control in the Sound Hardware pane. Выберите звуковые устройства для настройки пластинки на панели звукового устройства. @@ -7932,58 +8231,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Фильтрация - + HSV HSV - + RGB RGB - + Top Верх - + Center Центр - + Bottom Низ - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL недоступен - + dropped frames пропуск кадров - + Cached waveforms occupy %1 MiB on disk. Кэшированные осциллограммы занимают %1 МБ на диске. @@ -8001,22 +8300,17 @@ The loudness target is approximate and assumes track pregain and main output lev Частота кадров - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Показывает, какая версия OpenGL поддерживается на текущей платформе. - - Normalize waveform overview - Нормализовать обзор осциллограммы - - - + Average frame rate Средняя частота кадров @@ -8032,7 +8326,7 @@ The loudness target is approximate and assumes track pregain and main output lev Уровень масштаба по умолчанию - + Displays the actual frame rate. Отображает фактическую частоту кадров. @@ -8067,7 +8361,7 @@ The loudness target is approximate and assumes track pregain and main output lev Низкая - + Show minute markers on waveform overview @@ -8112,7 +8406,7 @@ The loudness target is approximate and assumes track pregain and main output lev Общее визуальное усиление - + 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. Режим просмотра осциллограммы показывает осциллограмму всего трека. @@ -8181,22 +8475,22 @@ Select from different types of displays for the waveform, which differ primarily пт - + Caching Кэшироваание - + 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 кэширует осциллограммы треков на диске при первой загрузке трека. Это уменьшает нагрузку на CPU при живом исполнении, но занимает больше места на диске. - + Enable waveform caching Включить кэширование осциллограммы - + Generate waveforms when analyzing library Генерировать осциллограммы при анализе медиатеки @@ -8212,7 +8506,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8242,12 +8536,58 @@ Select from different types of displays for the waveform, which differ primarily Перемещает положение маркера воспроизведения на осциллограммах влево, вправо или в центр (по умолчанию). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Очистить кэшированные осциллограммы @@ -8739,7 +9079,7 @@ This can not be undone! Кол-во ударов в минуту: - + Location: Расположение: @@ -8754,27 +9094,27 @@ This can not be undone! Комментарии - + BPM Кол-во ударов в минуту - + Sets the BPM to 75% of the current value. Устанавливает BPM в 75% от текущего значения. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Устанавливает BPM в 50% от текущего значения. - + Displays the BPM of the selected track. Отображает BPM выбранного трека. @@ -8829,49 +9169,49 @@ This can not be undone! Жанр - + ReplayGain: Выравнивание громкости: - + Sets the BPM to 200% of the current value. Устанавливает BPM в 200% от текущего значения. - + Double BPM Удвоить BPM - + Halve BPM Сократить BPM вдвое - + Clear BPM and Beatgrid Очистить BPM и битовую сетку - + Move to the previous item. "Previous" button Перемещение к предыдущему элементу. - + &Previous &Предыдущий - + Move to the next item. "Next" button Перейти к следующему пункту. - + &Next &Следующий @@ -8896,12 +9236,12 @@ This can not be undone! Цвет - + Date added: Дата добавления: - + Open in File Browser Открыть в диспетчере файлов @@ -8911,12 +9251,17 @@ This can not be undone! - + + Filesize: + + + + Track BPM: BPM трека: - + 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. @@ -8925,90 +9270,90 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Эта функция часто генерирует битовую сетку высокого качества, но не подходит для треков со сдвигом темпа. - + Assume constant tempo Считать темп постоянным - + Sets the BPM to 66% of the current value. Устанавливает BPM в 66% от текущего значения. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Устанавливает BPM в 150% от текущего значения. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Устанавливает BPM в 133% от текущего значения. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Щёлкайте в такт музыки, чтобы установить количество ударов в минуту соответствующее вашим щелчкам. - + Tap to Beat - + Нажмите чтобы выбрать ритм. - + Hint: Use the Library Analyze view to run BPM detection. Подсказка: Используйте режим просмотра анализа медиатеки для запуска обнаружения BPM. - + Save changes and close the window. "OK" button Сохранить изменения и закрыть окно. - + &OK &OK - + Discard changes and close the window. "Cancel" button Отменить изменения и закрыть окно. - + Save changes and keep the window open. "Apply" button Сохраните изменения и оставить окно открытым. - + &Apply &Применить - + &Cancel &Отмена - + (no color) (без цвета) @@ -9165,7 +9510,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9367,27 +9712,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (быстрее) - + Rubberband (better) Rubberband (лучше) - + Rubberband R3 (near-hi-fi quality) Rubberband R3 (качество, близкое к hi-fi) - + Unknown, using Rubberband (better) Неизвестный, с использованием Rubberband (лучше) - + Unknown, using Soundtouch @@ -9602,15 +9947,15 @@ 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 @@ -9621,57 +9966,57 @@ Shown when VuMeter can not be displayed. Please keep Отсутствует поддержка OpenGL. - + activate активировать - + toggle переключить - + right вправо - + left влево - + right small немного вправо - + left small немного влево - + up вверх - + down вниз - + up small немного вверх - + down small немного вниз - + Shortcut Комбинация клавиш @@ -9679,62 +10024,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9744,22 +10089,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9900,12 +10245,12 @@ Do you really want to overwrite it? Скрытые треки - + Export to Engine DJ Экспорт в Engine DJ - + Tracks Треки @@ -9913,37 +10258,37 @@ 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 Повторить @@ -9953,213 +10298,213 @@ Do you really want to overwrite it? обложка - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + Reconfigure Перенастроить - + Help Справка - - + + Exit Выход - - + + Mixxx was unable to open all the configured sound devices. Не удалось открыть все настроенные звуковые устройства. - + 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? Для этого вспомогательного устройства не выбрано входное устройство. Хотите выбрать? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. Прямой рендеринг не включён на вашем компьютере.<br><br>Это означает, что отображение осциллограммы будет очень<br><b>медленным и может сильно нагрузить процессор</b>. Либо обновите<br>конфигурацию, чтобы включить прямой рендеринг, либо отключите<br>отображение осциллограммы в параметрах Mixxx, выбрав<br>«Пусто» для отображения осциллограммы в разделе «Интерфейс». - - - + + + 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? @@ -10175,13 +10520,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Заблокировать - - + + Playlists Списки воспроизведения @@ -10191,58 +10536,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Разблокировать - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 Создать новый список воспроизведения @@ -10341,59 +10691,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 может повторно проанализировать их и создать новые, более точные битовые сетки. Это сделает автоматическую синхронизацию битов и зацикливание более качественными. - + 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 Создать новые битовые сетки @@ -10507,69 +10857,82 @@ Do you want to scan your library for cover files now? 14 бит (MSB) - + Main + Audio path indetifier Главное - + Booth + Audio path indetifier Кабина - + Headphones + Audio path indetifier Наушники - + Left Bus + Audio path indetifier Левая шина - + Center Bus + Audio path indetifier Центральная шина - + Right Bus + Audio path indetifier Правая шина - + Invalid Bus + Audio path indetifier Недопустимая шина - + Deck + Audio path indetifier Дека - + Record/Broadcast + Audio path indetifier Запись/Трансляция - + Vinyl Control + Audio path indetifier Управление пластинками - + Microphone + Audio path indetifier Микрофон - + Auxiliary + Audio path indetifier Вспомогательное устройство - + Unknown path type %1 + Audio path Неизвестный тип пути %1 @@ -10912,47 +11275,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Ширина - + Metronome Метроном - + + The Mixxx Team - + Adds a metronome click sound to the stream Добавляет звук метронома в трансляцию - + BPM Кол-во ударов в минуту - + Set the beats per minute value of the click sound Установить значение количества ударов в минуту для звука щелчка - + Sync Синхронизация - + Synchronizes the BPM with the track if it can be retrieved Синхронизирует количество ударов в минуту с треком, если эти данные можно получить - + + Gain - + Set the gain of metronome click sound @@ -11755,14 +12120,14 @@ Fully right: end of the effect period Запись OGG не поддерживается. Не удаётся инициализировать библиотеку OGG/Vorbis. - - + + encoder failure ошибка кодировщика - - + + Failed to apply the selected settings. Не удалось применить выбранные параметры. @@ -11902,7 +12267,7 @@ Hint: compensates "chipmunk" or "growling" voices Величина усиления, применяемая к аудиосигналу. На более высоких уровнях звук будет более искажённым. - + Passthrough Пересылка @@ -11923,60 +12288,131 @@ Hint: compensates "chipmunk" or "growling" voices Округлить параметр «Время» до ближайшей 1/8 бита. - - When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. - Когда включён параметр квантования, делить округлённый до 1/8 бита параметр времени на 3. + + When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + Когда включён параметр квантования, делить округлённый до 1/8 бита параметр времени на 3. + + + + (empty) + (пусто) + + + + Sampler %1 + + + + + + Compressor + + + + + Auto Makeup Gain + + + + + Makeup + + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold + - - (empty) - (пусто) + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + - - Sampler %1 + + Target (dBFS) - - - Compressor + + Target - - Auto Makeup Gain + + The Target knob adjusts the desired target level of the output signal - - Makeup + + Gain (dB) - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - Off + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -12007,6 +12443,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -12017,11 +12454,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -12033,11 +12472,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12066,12 +12507,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12106,42 +12547,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12402,193 +12843,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx столкнулся с проблемой - + Could not allocate shout_t Не удалось выделить shout_t - + Could not allocate shout_metadata_t Не удалось выделить shout_metadata_t - + Error setting non-blocking mode: Ошибка настройки неблокирующего режима: - + Error setting tls mode: Ошибка настройки режима tls: - + Error setting hostname! Ошибка настройки имени хоста! - + Error setting port! Ошибка настройки порта! - + Error setting password! Ошибка настройки пароля! - + Error setting mount! Ошибка настройки точки подключения! - + Error setting username! Ошибка настройки имени пользователя! - + Error setting stream name! Ошибка настройки названия трансляции! - + Error setting stream description! Ошибка настройки описания трансляции! - + Error setting stream genre! Ошибка настройки жанра трансляции! - + Error setting stream url! Ошибка настройки адреса трансляции! - + Error setting stream IRC! Ошибка настройки IRC трансляции! - + Error setting stream AIM! Ошибка настройки AIM трансляции! - + Error setting stream ICQ! Ошибка настройки ICQ трансляции! - + Error setting stream public! Ошибка настройки открытой трансляции! - + Unknown stream encoding format! Неизвестный формат кодировки трансляции! - + Use a libshout version with %1 enabled Используйте версию libshout с включённым %1 - + 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. Трансляция на частоте 96 кГц с помощью Ogg Vorbis в настоящее время не поддерживается. Попробуйте другую частоту дискретизации или переключитесь на другую кодировку. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Более подробная информация содержится здесь: https://github.com/mixxxdj/mixxx/issues/5701. - + Unsupported sample rate Неподдерживаемая частота дискретизации - + Error setting bitrate Ошибка настройки битрейта - + Error: unknown server protocol! Ошибка: неизвестный протокол сервера! - + Error: Shoutcast only supports MP3 and AAC encoders Ошибка: Shoutcast поддерживает только кодировщики MP3 и AAC - + Error setting protocol! Ошибка настройки протокола! - + Network cache overflow Переполнение сетевого кэша - + Connection error Ошибка подключения - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Одно из соединений прямой трансляции вернуло ошибку:<br><b>Ошибка соединения «%1»:</b><br> - + Connection message Сообщение подключения - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Сообщение от соединения прямой трансляции «%1»:</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Соединение с сервером потеряно, и попытки %1переподключиться неудачны. - + Lost connection to streaming server. Соединение с сервером потеряно. - + Please check your connection to the Internet. Проверьте подключение к Интернету. - + Can't connect to streaming server Не удаётся подключиться к серверу - + Please check your connection to the Internet and verify that your username and password are correct. Проверьте подключение к Интернету и убедитесь в правильности указанных имени пользователя и пароля. @@ -12596,7 +13037,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Фильтрация @@ -12604,23 +13045,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device устройство - + An unknown error occurred Произошла неизвестная ошибка - + Two outputs cannot share channels on "%1" Два вывода не могут иметь общий канал в «%1» - + Error opening "%1" Ошибка при открытии «%1» @@ -12805,7 +13246,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Крутящаяся пластинка @@ -12987,7 +13428,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Обложка @@ -13177,243 +13618,243 @@ may introduce a 'pumping' effect and/or distortion. Удерживает нулевое значение усиления эквалайзера низких частот, когда включено. - + Displays the tempo of the loaded track in BPM (beats per minute). Отображает темп загруженного трека в BPM (ударах в минуту). - + Tempo Темп - + Key The musical key of a track Тональность - + BPM Tap Ввод BPM вручную - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. При повторяющихся нажатиях корректирует BPM для соответствия с указанными значениями. - + Adjust BPM Down Понизить BPM - + When tapped, adjusts the average BPM down by a small amount. При нажатии снижает BPM на небольшую величину. - + Adjust BPM Up Повысить BPM - + When tapped, adjusts the average BPM up by a small amount. При нажатии корректирует средний BPM на небольшое значение. - + Adjust Beats Earlier Перемещает биты назад - + When tapped, moves the beatgrid left by a small amount. При нажатии перемещает битовую сетку влево на небольшую величину. - + Adjust Beats Later Перемещает биты вперёд - + When tapped, moves the beatgrid right by a small amount. При нажатии перемещает битовую сетку вправо на небольшую величину. - + Tempo and BPM Tap Темп и введённый вручную BPM - + Show/hide the spinning vinyl section. Показать/скрыть раздел крутящейся пластинки. - + Keylock Блокировка тональности - + Toggling keylock during playback may result in a momentary audio glitch. Включение блокировки во время воспроизведения может привести к кратковременному сбою вывода. - + Toggle visibility of Loop Controls Переключить видимость элементов управления петлёй - + Toggle visibility of Beatjump Controls Переключить видимость элементов управления битовых прыжков - + Toggle visibility of Rate Control Переключить видимость управления скоростью - + Toggle visibility of Key Controls Переключить видимость элементов управления тональностью - + (while previewing) (при предварительном просмотре) - + Places a cue point at the current position on the waveform. Ставит точку воспроизведения на текущей позиции на форме звуковой волны. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Останавливает трек в точке метки или переходит к ключевой точке и воспроизводит после релиза (режим CUP). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Установить точку метки (режим Pioneer/Mixxx/Numark), установить точку метки и воспроизвести (режим CUP) или включить предварительный просмотр (режим Denon). - + Is latching the playing state. Фиксирует состояние воспроизведения. - + Seeks the track to the cue point and stops. Переходит к метке на треке и останавливается. - + Play Играть - + Plays track from the cue point. Воспроизвозит трек с точки метки. - + 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. Когда эта функция включена, это устройство будет служить лидером синхронизации для всех остальных дек. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Изменяет скорость воспроизведения трека (влияет на темп и питч). Если включена блокировка, затрагивается только темп. - + Tempo Range Display Отображение диапазона темпа - + Displays the current range of the tempo slider. Отображает текущий диапазон ползунка темпа. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Отменяет извлечение, когда треки не загружены, то есть перезагружает трек, который был извлечён последним (из любой деки). - + Delete selected hotcue. Удалить выбранную горячую метку. - + Track Comment Комментарий трека - + Displays the comment tag of the loaded track. Показывает метку комментария загруженного трека. - + Opens separate artwork viewer. Открывает отдельный просмотрщик обложек. - + Effect Chain Preset Settings Параметры шаблона цепочки эффектов - + Show the effect chain settings menu for this unit. Показать параметры цепочки эффектов для этого элемента. - + Select and configure a hardware device for this input Выбрать и настроить устройство ввода - + Recording Duration Длительность записи @@ -13636,949 +14077,984 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier Сдвигает метки на более ранний период - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Сдвигать метки, импортированные из Serato или Rekordbox, если они немного не совпадают по времени. - + Left click: shift 10 milliseconds earlier Щелчок слева: сдвиг на 10 миллисекунд назад - + Right click: shift 1 millisecond earlier Щелчок правой кнопкой мыши: сдвиг на 1 миллисекунду ранее - + Shift cues later Сдвигает метки на более поздний период - + Left click: shift 10 milliseconds later Щелчок слева: сдвиг на 10 миллисекунд вперёд - + Right click: shift 1 millisecond later Щелчок правой кнопкой мыши: сдвиг на 1 миллисекунду позднее - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. Отключает звук выбранного канала на основном выходе. - + Main mix enable Включить основной микс - + Hold or short click for latching to mix this input into the main output. Удерживайте или коротко щёлкните для фиксации, чтобы смешать этот ввод с основным выводом. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. Показывает длительность текущей записи. - + Auto DJ is active Auto DJ активен - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. Горячая метка — произойдёт переход по треку к ближайшей предыдущей точке горячей метки. - + Sets the track Loop-In Marker to the current play position. Устанавливает маркер начала петли на текущую позицию воспроизведения трека. - + Press and hold to move Loop-In Marker. Нажмите и удерживайте, чтобы переместить маркер начала петли. - + Jump to Loop-In Marker. Перейти к маркеру начала петли. - + Sets the track Loop-Out Marker to the current play position. Устанавливает маркер выхода из петли на текущей позиции воспроизведения трека. - + Press and hold to move Loop-Out Marker. Нажмите и удерживайте, чтобы переместить маркер окончания петли. - + Jump to Loop-Out Marker. Перейти к маркеру конца петли. - + If the track has no beats the unit is seconds. - + Beatloop Size Размер битовой петли - + 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. Этот параметр изменяет размер цикла, если цикл уже соответствует этому размеру. - + 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. Удвойте размер существующей битовой петли или удвоить размер следующей битовой петли, установленной с помощью кнопки «Битовая петля». - + Start a loop over the set number of beats. Запускает цикл после указанного количества битов. - + Temporarily enable a rolling loop over the set number of beats. Временно включить повторяющийся цикл в течение заданного количества битов. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size Размер перемещения прыжков по треку/петли - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Выберите количество ударов для перехода или переместите цикл с помощью кнопок перехода по битам вперёд/назад. - + Beatjump Forward Прыжки по треку вперёд - + Jump forward by the set number of beats. Перейти вперёд на указанное количество битов. - + Move the loop forward by the set number of beats. Переместить петлю вперёд на указанное количество битов. - + Jump forward by 1 beat. Перескочить вперёд на 1 бит. - + Move the loop forward by 1 beat. Передвинуть петлю вперед на 1 удар. - + Beatjump Backward Обратные прыжки по треку - + Jump backward by the set number of beats. Перейти назад на указанное количество битов. - + Move the loop backward by the set number of beats. Переместить петлю назад на указанное количество битов. - + Jump backward by 1 beat. Перейти назад на 1 бит. - + Move the loop backward by 1 beat. Передвинуть петлю назад на 1 бит. - + Reloop Повторить петлю - + 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. Срабатывает только если указаны маркеры входа и выхода из петли. - + Enable loop, jump to Loop-In Marker, and stop playback. Включить петлю, перейти к маркеру входа в петлю и остановить воспроизведение. - + Displays the elapsed and/or remaining time of the track loaded. Отображает прошедшее и/или оставшееся время загруженного трека. - + Click to toggle between time elapsed/remaining time/both. Нажмите, чтобы переключаться между истёкшим/оставшимся временем. - + Hint: Change the time format in Preferences -> Decks. Подсказка: Изменить формат времени можно в меню Параметры -> Деки. - + Show/hide intro & outro markers and associated buttons. Проказать/скрыть маркеры вступления и завершения и соответствующие кнопки. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Маркер начала вступления - - - - + + + + If marker is set, jumps to the marker. Если маркер указан, переходит к маркеру. - - - - + + + + If marker is not set, sets the marker to the current play position. Если маркер не указан, устанавливает маркер на текущую позицию воспроизведения. - - - - + + + + If marker is set, clears the marker. Если маркер указан, удаляет его. - + Intro End Marker Маркер конца вступления - + Outro Start Marker Маркер начала завершения - + Outro End Marker Маркер окончания завершения - + Mix Микс - + 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: Кроссфейд между оригинальным и обработанным - + D+W mode: Add wet to dry Режим D+W: Добавить к оригинальному обработанный - + Mix Mode Режим микшера - + 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. Режим «Оригинальный/обработанный сигналы» («crossed lines»): Ручка микширования переходит от оригинального к обработанному. Используйте эту функцию, чтобы изменить звучание трека с помощью эффектов эквалайзера и фильтра. - + 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. Режим «Оригинал + Обработанный сигнал (flat dry line): Используйте эту функцию, чтобы изменить только обработанный сигнал с помощью эффектов эквалайзера и фильтра. - + Route the main mix through this effect unit. Направить основной микс через этот блок эффектов. - + Route the left 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 Активна правая сторона: параметр перемещается при повороте правой половины мета ручки - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Меню параметров скина - + Show/hide skin settings menu Показать/скрыть меню параметров скина - + Save Sampler Bank Сохранить банк сэмплера - + Save the collection of samples loaded in the samplers. Сохранить коллекцию сэмплов, загруженную в сэмплеры. - + Load Sampler Bank Загрузить банк сэмплера - + Load a previously saved collection of samples into the samplers. Загрузить предыдущую сохранённую коллекцию сэмплов в сэмплеры. - + Show Effect Parameters Показать параметры эффекта - + Enable Effect Включить эффект - + Meta Knob Link Привязка мета ручки - + Set how this parameter is linked to the effect's Meta Knob. Позволяет указать как параметр связан с метаручкой эффекта. - + Meta Knob Link Inversion Инверсия привязки мета ручки - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Инвертирует направление, в котором двигается этот параметр, при повороте эффекта с помощью метаручки. - + Super Knob Супер ручка - + Next Chain Следующая цепочка - + Previous Chain Предыдущие цепи - + Next/Previous Chain Следующий/предыдущий цепь - + Clear Удалить - + Clear the current effect. Удалить текущий эффект. - + Toggle Переключение - + Toggle the current effect. Переключение текущего эффекта. - + Next Следующая - + Clear Unit Удалить блок - + Clear effect unit. Удалить блок эффектов. - + Show/hide parameters for effects in this unit. Показать/скрыть параметры эффекта в этом блоке. - + Toggle Unit Переключение блока - + Enable or disable this whole effect unit. Включить или отключить этот блок эффекта. - + Controls the Meta Knob of all effects in this unit together. Управляет метаручкой всех эффектов этого блока. - + Load next 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. Загрузить следующую или предыдущую цепочку эффектов в этот блок эффектов. - - - - - - - - - + + + + + + + + + Assign Effect Unit Назначить модуль эффектов - + Assign this effect unit to the channel output. Назначить этот блок эффектов выходному каналу. - + Route the headphone channel through this effect unit. Перенаправить канал наушников через этот блок эффектов. - + Route this deck through the indicated effect unit. Направить эту деку через указанный блок эффектов. - + Route this sampler through the indicated effect unit. Направить этот сэмплер через указанный блок эффектов. - + Route this microphone 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. Блок эффектов также должен быть подключён к деке или другому источнику звука, чтобы эффект было слышно. - + Switch to the next effect. Перейти к следующему эффекту. - + Previous Предыдущий - + Switch to the previous effect. Перейти к предыдущему эффекту. - + Next or Previous Следующий или предыдущий - + Switch to either the next or previous effect. Перейти к следующему или предыдущему эффекту. - + Meta Knob Мета ручка - + Controls linked parameters of this effect Позволяет настроить связанные с этим эффектом параметры - + Effect Focus Button Кнопка фокуса на эффекте - + Focuses this effect. Выделяет этот эффект. - + Unfocuses this effect. Убирает выделение с этого эффекта. - + Refer to the web page on the Mixxx wiki for your controller for more information. Обратитесь к веб-странице вашего контроллера в Mixxx wiki для получения дополнительной информации. - + Effect Parameter Параметры эффекта - + Adjusts a parameter of the effect. Настраивает параметр эффекта. - + Inactive: parameter not linked Неактивно: параметр не привязан - + Active: parameter moves with Meta Knob Активно: параметр перемещается с помощью метаручки - + 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 Активны левая и правая сторона: параметр перемещается по диапазону с половиной поворота мета ручки и обратно с другой половиной - - + + Equalizer Parameter Kill Подавление параметра эквалайзера - - + + Holds the gain of the EQ to zero while active. Удерживает нулевое значение усиления эквалайзера, когда включено. - + Quick Effect Super Knob Супер быстрый эффект ручки - + Quick Effect Super Knob (control linked effect parameters). Быстрый эффект супер ручку (контрольные параметры связанного эффекта). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Подсказка: Изменить режим быстрого эффекта по умолчанию можно в меню Параметры -> Эквалайзеры. - + Equalizer Parameter Параметры эквалайзера - + Adjusts the gain of the EQ filter. Настраивает усиление фильтра эквалайзера. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Подсказка: Изменить режим эквалайзера по умолчанию можно в меню Параметры -> Эквалайзеры. - - + + Adjust Beatgrid Настроить битовую сетку - + Adjust beatgrid so the closest beat is aligned with the current play position. Настройка битовой сетки так, чтобы ближайший бит совпадал с текущей позицией воспроизведения. - - + + Adjust beatgrid to match another playing deck. Подстроить битовую сетку под проигрывание другой деки. - + If quantize is enabled, snaps to the nearest beat. Если включено квантование, прилипает к ближайшему биту. - + Quantize Квантование - + Toggles quantization. Переключает квантование. - + Loops and cues snap to the nearest beat when quantization is enabled. Петли и метки привязываются к ближайшему биту при включённом квантовании. - + Reverse Реверс - + Reverses track playback during regular playback. Реверсы трека воспроизведения во время регулярных воспроизведения. - + Puts a track into reverse while being held (Censor). Помещает дорожку в обратном во время (цензура). - + Playback continues where the track would have been if it had not been temporarily reversed. Воспроизведение продолжается, где трек был бы если он был не были отменены временно. - - - + + + Play/Pause Воспроизведение/пауза - + Jumps to the beginning of the track. Переход к началу трека. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Синхронизирует темп (BPM) и фазу с другим треком, если на обоих треках BPM известен. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Синхронизирует темп (BPM) с другим треком, если на обоих треках BPM известен. - + Sync and Reset Key Синхронизация и сброс тона - + Increases the pitch by one semitone. Повышает питч на один полутон. - + Decreases the pitch by one semitone. Понижает питч на один полутон. - + Enable Vinyl Control Включить управление пластинками - + When disabled, the track is controlled by Mixxx playback controls. Когда эта функция отключена, треком можно управлять с помощью контроллеров воспроизведения Mixxx. - + When enabled, the track responds to external vinyl control. Когда включено, треком можно управлять с внешней панели управления пластинкой. - + Enable Passthrough Включить передачу - + Indicates that the audio buffer is too small to do all audio processing. Сигнализирует о том, что аудиобуфер слишком мал, чтобы выполнить обработку всего аудио. - + Displays cover artwork of the loaded track. Отображает обложку загруженного трека. - + Displays options for editing cover artwork. Отображает параметры для редактирования обложки. - + Star Rating Рейтинг в виде звёзд - + Assign ratings to individual tracks by clicking the stars. Присвоить оценки отдельным трекам с помощью звёздочек. @@ -14713,33 +15189,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Сила приглушения наложения микрофона - + Prevents the pitch from changing when the rate changes. Предотвращает изменение при изменении скорость тангажа. - + Changes the number of hotcue buttons displayed in the deck Изменяет количество горячих меток, показываемых на деке - + Starts playing from the beginning of the track. Начинает воспроизведение с самого начала трека. - + Jumps to the beginning of the track and stops. Переходит к началу трека и останавливается. - - + + Plays or pauses the track. Воспроизведение или пауза трек. - + (while playing) (при воспроизведении) @@ -14759,215 +15235,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Индикатор громкости основного правого канала - + (while stopped) (при остановке) - + Cue Метка - + Headphone Наушники - + Mute Немой - + Old Synchronize Синхронизировать старый - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Синхронизирует с первой декой (в числовом порядке), которая играет трек и имеет BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Если деки не играют, синхронизирует с первой декой, имеющей BPM. - + Decks can't sync to samplers and samplers can only sync to decks. Деки нельзя синхронизировать с сэмплерами, а сэмплеры могут синхронизироваться только с деками. - + Hold for at least a second to enable sync lock for this 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. Деки с синхронизацией будут играть в одном и том же темпе, а деки у которых также включено квантование, всегда будут выстроены в такт. - + Resets the key to the original track key. Сбрасывает ключ ключу оригинальный трек. - + Speed Control Управление скоростью - - - + + + Changes the track pitch independent of the tempo. Изменяет питч трека независимо от темпа. - + Increases the pitch by 10 cents. Повышает питч на 10 процентов. - + Decreases the pitch by 10 cents. Понижает питч на 10 процентов. - + Pitch Adjust Отрегулируйте высоту - + Adjust the pitch in addition to the speed slider pitch. Настройка питча в дополнение к ползунку скорости. - + Opens a menu to clear hotcues or edit their labels and colors. Открывает меню для удаления горячих меток или для редактирования их ярлыков и цветов. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Записать микс - + Toggle mix recording. Переключение записи микса. - + Enable Live Broadcasting Включить трансляцию - + Stream your mix over the Internet. Транслируйте свой микс через Интернет. - + Provides visual feedback for Live Broadcasting status: Обеспечивает визуальную обратную связь для Live вещания статуса: - + disabled, connecting, connected, failure. отключено, подключение, подключено, ошибка. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Когда этот параметр включён, дека напрямую воспроизводит звук, поступающий на вход пластинки. - + Playback will resume where the track would have been if it had not entered the loop. Воспроизведение возобновится, где трек был бы если он не введен цикла. - + Loop Exit Выход из петли - + Turns the current loop off. Отключение текущего цикла. - + Slip Mode Режим скольжения - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Когда этот параметр включён, воспроизведение продолжается приглушённым в фоновом режиме во время петли, обратной прокрутки, скретча и так далее. - + Once disabled, the audible playback will resume where the track would have been. После отключения звуковое воспроизведение возобновится с того места, где была бы дорожка. - + Track Key The musical key of a track Тональность трека - + Displays the musical key of the loaded track. Отображает тональность загруженного трека. - + Clock Часы - + Displays the current time. Отображает текущее время. - + Audio Latency Usage Meter Измеритель использования задержки аудио - + Displays the fraction of latency used for audio processing. Отображает долю задержки, используемую для обработки звука. - + A high value indicates that audible glitches are likely. Высокое значение говорит о возможном наличии звуковых сбоев. - + Do not enable keylock, effects or additional decks in this situation. Не включайте блокировку клавиатуры, эффекты или дополнительные деки в этой ситуации. - + Audio Latency Overload Indicator Индикатор перегрузки задержки звука @@ -15007,259 +15483,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Включить управление пластинками в пункте Меню -> Функции. - + Displays the current musical key of the loaded track after pitch shifting. Отображает текущий тон загруженного трека после сдвига питча. - + Fast Rewind Быстрая перемотка назад - + Fast rewind through the track. Быстрая перемотка назад по треку. - + Fast Forward Быстрая перемотка вперёд - + Fast forward through the track. Быстрая перемотка вперёд по треку. - + Jumps to the end of the track. Переход к концу трека. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Устанавливает питч в тональности, обеспечивающей гармоничный переход от другого трека. Требуется известная тональность на обеих задействованных деках. - - - + + + Pitch Control Тангажу - + Pitch Rate Скорость тангажа - + Displays the current playback rate of the track. Отображает текущую скорость воспроизведения трека. - + Repeat Повторите - + When active the track will repeat if you go past the end or reverse before the start. Когда трек активен, он будет повторяться при пропуске конца или включении обратного воспроизведения до старта. - + Eject Извлечь - + Ejects track from the player. Извлечь трек из проигрывателя. - + Hotcue Горячая метка - + If hotcue is set, jumps to the hotcue. Если указана горячая метка, переходит к горячей метке. - + If hotcue is not set, sets the hotcue to the current play position. Если горячая метка не указана, указывает горячую метку на текущей позиции. - + Vinyl Control Mode Режим управления пластинками - + Absolute mode - track position equals needle position and speed. Абсолютный режим — позиция трека равна позиции и скорости иглы. - + Relative mode - track speed equals needle speed regardless of needle position. Относительный режим - трек скорость равна скорость иглы независимо от положения иглы. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Постоянный режим — скорость трека равна последней известной — постоянная скорость независимо от ввода иглы. - + Vinyl Status Статус пластинки - + Provides visual feedback for vinyl control status: Обеспечивает визуальную обратную связь для Винил управления статуса: - + Green for control enabled. Зелёный для управления включён. - + Blinking yellow for when the needle reaches the end of the record. Мигать жёлтым, когда игла достигнет конца записи. - + Loop-In Marker Маркер входа в петлю - + Loop-Out Marker Маркер выхода из петли - + Loop Halve Сократить петлю вдвое - + Halves the current loop's length by moving the end marker. Сокращает вдвое длину петли, перемещая маркер конца. - + Deck immediately loops if past the new endpoint. Дека сразу зацикливается, если вставить новую конечную точку. - + Loop Double Двойная петля - + Doubles the current loop's length by moving the end marker. Удваивает длину текущей петли, перемещая маркер конца. - + Beatloop Битовая петля - + Toggles the current loop on or off. Включает и выключает текущий цикл. - + Works only if Loop-In and Loop-Out marker are set. Срабатывает только если указаны маркеры входа и выхода из петли. - + Vinyl Cueing Mode Режим меток для пластинки - + Determines how cue points are treated in vinyl control Relative mode: Определяет способ работы с точками меток в относительном режиме панели пластинки: - + Off - Cue points ignored. -Ключевые точки игнорируются. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Один Cue - если игла удаляется после ключевой точки, трек будет стремиться к этой ключевой точки. - + Track Time Время трека - + Track Duration Длительность трека - + Displays the duration of the loaded track. Отображает продолжительность загруженного трека. - + Information is loaded from the track's metadata tags. Информация загружена из тегов метаданных трека. - + Track Artist Исполнитель трека - + Displays the artist of the loaded track. Отображает исполнителя загруженного трека. - + Track Title Название трека - + Displays the title of the loaded track. Отображает название загруженного трека. - + Track Album Альбом трека - + Displays the album name of the loaded track. Отображает название альбома загруженного трека. - + Track Artist/Title Исполнитель/название трека - + Displays the artist and title of the loaded track. Отображает исполнителя и название загруженного трека. @@ -15490,47 +15966,75 @@ This can not be undone! WCueMenuPopup - + Cue number Номер метки - + Cue position Позиция метки - + Edit cue label Изменить ярлык метки - + Label... Ярлык... - + Delete this cue Удалить эту метку - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 Горячая метка #%1 @@ -15655,323 +16159,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Создать &новый список воспроизведения - + Create a new playlist Создать новый список воспроизведения - + Ctrl+n Ctrl+n - + Create New &Crate Создать новый &контейнер - + Create a new crate Создать новый контейнер - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Вид - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Могут поддерживаться не все скины. - + Show Skin Settings Menu Показать меню параметров скина - + Show the Skin Settings Menu of the currently selected Skin Показать меню параметров текущего скина - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Показать панель микрофона - + Show the microphone section of the Mixxx interface. Показать панель микрофона в интерфейсе Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Показать панель управления пластинками - + Show the vinyl control section of the Mixxx interface. Показать панель управления пластинками в интерфейсе Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Показать предварительный просмотр деки - + Show the preview deck in the Mixxx interface. Показать предпросмотр деки в интерфейсе Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Показать обложку - + Show cover art in the Mixxx interface. Показать обложку в интерфейсе Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Развернуть медиатеку - + Maximize the track library to take up all the available screen space. Развернуть медиатеку, заполнив всё доступное пространство экрана. - + Space Menubar|View|Maximize Library Пространство - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Полный экран - + Display Mixxx using the full screen Открыть Mixxx в полноэкранном режиме - + &Options &Действия - + &Vinyl Control Управление &пластинками - + Use timecoded vinyls on external turntables to control Mixxx Использовать пластинки с временными метками на внешних проигрывателях для работы с Mixxx - + Enable Vinyl Control &%1 Включить управление пластинкой &%1 - + &Record Mix &Записать микс - + Record your mix to a file Записать микс в файл - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Включить прямую &трансляцию - + Stream your mixes to a shoutcast or icecast server Прямая трансляция миксов на сервер shoutcast или icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Включить &комбинации клавиш - + Toggles keyboard shortcuts on or off Переключает комбинации клавиш - + Ctrl+` Ctrl+` - + &Preferences &Параметры - + Change Mixxx settings (e.g. playback, MIDI, controls) Изменить параметры Mixxx (например, элементы управления воспроизведением, MIDI) - + &Developer &Разработчик - + &Reload Skin &Перезагрузить скин - + Reload the skin Перезагрузить скин - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools &Инструменты разработчика - + Opens the developer tools dialog Открывает диалог инструментов разработчика - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Статистика: Сегмент &Experiment - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Включает экспериментальный режим. Собирает статистику в сегменте отслеживания EXPERIMENT. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Статистика: &Базовый сегмент - + Enables base mode. Collects stats in the BASE tracking bucket. Включает базовый режим. Собирает статистику в сегменте отслеживания BASE. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled От&ладчик включён - + Enables the debugger during skin parsing Включает отладчик при обработке скина - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Справка - + Show Keywheel menu title Колесо тональности @@ -15988,74 +16532,74 @@ This can not be undone! Экспорт медиатеки в формат Engine DJ - + Show keywheel tooltip text Показать колесо тональности - + F12 Menubar|View|Show Keywheel F12 - + &Community Support &Поддержка сообщества - + Get help with Mixxx Получить помощь с Mixxx - + &User Manual &Руководство пользователя - + Read the Mixxx user manual. Открыть руководство пользователя Mixxx. - + &Keyboard Shortcuts &Комбинации клавиш - + Speed up your workflow with keyboard shortcuts. Ускорьте свой рабочий процесс с помощью комбинаций клавиш. - + &Settings directory Каталог &параметров - + Open the Mixxx user settings directory. Открыть катало пользовательских параметров Mixxx. - + &Translate This Application &Перевести это приложение - + Help translate this application into your language. Помогите перевести это приложение на ваш язык. - + &About &О программе - + About the application О приложении @@ -16063,25 +16607,25 @@ This can not be undone! WOverview - + 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 Завершение... @@ -16090,25 +16634,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Очистить ввод - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Поиск - + Clear input Очистить ввод @@ -16119,93 +16651,87 @@ This can not be undone! Поиск... - + Clear the search bar input field Очистить поле ввода для поиска - - Enter a string to search for - Введите строку для поиска + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Использовать операторы наподобие bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Более подробная информация: Руководство пользователя > Медиатека Mixxx + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Комбинация клавиш + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Фокус + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts - Комбинации клавиш + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Инициировать поиск до истечения времени ожидания поиска по мере ввода или перейти к просмотру треков после него + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl+Пробел - + Toggle search history Shows/hides the search history entries Включить/выключить историю поиска - + Delete or Backspace Delete или Backspace - - Delete query from history - Удалить запрос из истории - - - - Esc - ESC + + in search history + - - Exit search - Exit search bar and leave focus - Выйти из поиска + + Delete query from history + Удалить запрос из истории @@ -16289,625 +16815,640 @@ This can not be undone! WTrackMenu - + Load to Загрузка в - + Deck Дека - + Sampler Сэмплер - + Add to Playlist Добавить в список воспроизведения - + Crates Контейнеры - + Metadata Метаданные - + Update external collections Обновить внешние коллекции - + Cover Art Обложка - + Adjust BPM Настроить BPM - + Select Color Выбрать цвет - - + + Analyze Анализ - - + + Delete Track Files Удалить файлы треков - + Add to Auto DJ Queue (bottom) Добавить в очередь AutoDJ (в конец) - + Add to Auto DJ Queue (top) Добавить в очередь AutoDJ (в начало) - + Add to Auto DJ Queue (replace) Добавить в очередь AutoDJ (заменить) - + Preview Deck Предпросмотр деки - + Remove Удалить - + Remove from Playlist Удалить из списка воспроизведения - + Remove from Crate Удалить из контейнера - + Hide from Library Скрыть в медиатеке - + Unhide from Library Отобразить в медиатеке - + Purge from Library Удалить из медиатеки - + Move Track File(s) to Trash Переместить треки в корзину - + Delete Files from Disk Удалить файлы с диска - + Properties Свойства - + Open in File Browser Открыть в диспетчере файлов - + Select in Library Выбрать в медиатеке - + Import From File Tags Импортировать из тегов файла - + Import From MusicBrainz Импортировать из MusicBrainz - + Export To File Tags Экспортировать в теги файла - + BPM and Beatgrid BPM и битовая сетка - + Play Count Количество воспроизведений - + Rating Рейтинг - + Cue Point Точка метки - - + + Hotcues Горячие метки - + Intro Вступление - + Outro Завершение - + Key Тональность - + ReplayGain Выравнивание громкости - + Waveform Осциллограмма - + Comment Комментарий - + All Все - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Заблокировать BPM - + Unlock BPM Разблокировать BPM - + Double BPM Удвоить BPM - + Halve BPM Сократить BPM вдвое - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze Повторно анализировать - + Reanalyze (constant BPM) Повторный анализ (постоянный BPM) - + Reanalyze (variable BPM) Повторный анализ (переменный BPM) - + Update ReplayGain from Deck Gain Обновить выравнивание громкости через выравнивание деки - + Deck %1 Дека %1 - + Importing metadata of %n track(s) from file tags Импорт метаданных одного трека из файловых теговИмпорт метаданных %n треков из файловых теговИмпорт метаданных %n треков из файловых теговИмпорт метаданных %n трека из файловых тегов - + Marking metadata of %n track(s) to be exported into file tags Выделение метаданных одного трека для экспорта в теги файловВыделение метаданных %n треков для экспорта в теги файловВыделение метаданных %n треков для экспорта в теги файловВыделение метаданных %n трека для экспорта в теги файлов - - + + 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) Вычисление BPM одного трекаВычисление BPM %n трековВычисление BPM %n трековВычисление BPM %n трека - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Блокировка BPM одного трекаБлокировка BPM %n трековБлокировка BPM %n трековБлокировка BPM %n трека - + Unlocking BPM of %n track(s) Разлокировка BPM одного трекаРазлокировка BPM %n трековРазлокировка BPM %n трековРазлокировка BPM %n трека - + Setting rating of %n track(s) - + Setting color of %n track(s) Установка цвета одного трекаУстановка цвета %n трековУстановка цвета %n трековУстановка цвета %n трека - + Resetting play count of %n track(s) Сброс количества воспроизведений одного трекаСброс количества воспроизведений %n трековСброс количества воспроизведений %n трековСброс количества воспроизведений %n трека - + Resetting beats of %n track(s) Сброс битов одного трекаСброс битов %n трековСброс битов %n трековСброс битов %n трека - + Clearing rating of %n track(s) Удаление рейтинга одного трекаУдаление рейтинга %n трековУдаление рейтинга %n трековУдаление рейтинга %n трека - + Clearing comment of %n track(s) Удаление комментария одного трекаУдаление комментария %n трековУдаление комментария %n трековУдаление комментария %n трека - + Removing main cue from %n track(s) Удаление основной метки из одного трекаУдаление основной метки из %n трековУдаление основной метки из %n трековУдаление основной метки из %n трека - + Removing outro cue from %n track(s) Удаление метки завершения из одного трекаУдаление метки завершения из %n трековУдаление метки завершения из %n трековУдаление метки завершения из %n трека - + Removing intro cue from %n track(s) Удаление метки вступления из одного трекаУдаление метки вступления из %n трековУдаление метки вступления из %n трековУдаление метки вступления из %n трека - + Removing loop cues from %n track(s) Удаление меток петли из одного трекаУдаление меток петли из %n трековУдаление меток петли из %n трековУдаление меток петли из %n трека - + Removing hot cues from %n track(s) Удаление горячих меток из одного трекаУдаление горячих меток из %n трековУдаление горячих меток из %n трековУдаление горячих меток из %n трека - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) Сброс тональности одного трекаСброс тональности %n трековСброс тональности %n трековСброс тональности %n трека - + Resetting replay gain of %n track(s) Сброс выравнивания громкости одного трекаСброс выравнивания громкости %n трековСброс выравнивания громкости %n трековСброс выравнивания громкости %n трека - + Resetting waveform of %n track(s) Сброс осциллограммы одного трекаСброс осциллограммы %n трековСброс осциллограммы %n трековСброс осциллограммы %n трека - + Resetting all performance metadata of %n track(s) Сброс всех метаданных производительности одного трекаСброс всех метаданных производительности %n трековСброс всех метаданных производительности %n трековСброс всех метаданных производительности %n трека - + Move these files to the trash bin? - + Permanently delete these files from disk? Удалить эти файлы с диска безвозвратно? - - + + This can not be undone! Это действие нельзя отменить! - + Cancel Отмена - + Delete Files Удалить файлы - + Okay Ок - + Move Track File(s) to Trash? Переместить треки в корзину? - + Track Files Deleted Треки удалены - + Track Files Moved To Trash Треки были перемещены в корзину - + %1 track files were moved to trash and purged from the Mixxx database. Следующее количество файлов треков было перемещено в корзину и удалено из базы данных Mixxx: %1. - + %1 track files were deleted from disk and purged from the Mixxx database. Следующее количество файлов треков было удалено с диска и из базы данных Mixxx: %1. - + Track File Deleted Трек удалён - + Track file was deleted from disk and purged from the Mixxx database. Трек был удалён с диска и из базы данных Mixxx. - + The following %1 file(s) could not be deleted from disk Следующее количество файлов нельзя удалить с диска: %1 - + This track file could not be deleted from disk Этот трек нельзя удалить с диска - + Remaining Track File(s) Оставшиеся треки - + Close Закрыть - + Clear Reset metadata in right click track context menu in library - + Loops Петли - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... Удаление %n треков с диска... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Примечание: при нахождении в режиме просмотра компьютера или записи необходимо ещё раз переключиться на текущий режим, чтобы увидеть изменения. - + Track File Moved To Trash Трек перемещён в корзину - + Track file was moved to trash and purged from the Mixxx database. Трек был перемещён в корзину и удалён из базы данных Mixxx. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash Следующее количество файлов нельзя переместить в корзину: %1 - + This track file could not be moved to trash Этот трек нельзя переместить в корзину + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Установка обложки одного трекаУстановка обложки %n трековУстановка обложки %n трековУстановка обложки %n трека - + Reloading cover art of %n track(s) Перезагрузка обложки одного трекаПерезагрузка обложки %n трековПерезагрузка обложки %n трековПерезагрузка обложки %n трека @@ -16961,37 +17502,37 @@ This can not be undone! WTrackTableView - + Confirm track hide Подтверждение скрытия трека - + Are you sure you want to hide the selected tracks? Скрыть выбранные треки? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Удалить выбранные треки из очереди AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Удалить выбранные треки из этого контейнера? - + Are you sure you want to remove the selected tracks from this playlist? Удалить выбранные треки из этого списка воспроизведения? - + Don't ask again during this session Больше не спрашивать в этом сеансе - + Confirm track removal Подтверждение удаления трека @@ -16999,12 +17540,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Показать или скрыть столбцы. - + Shuffle Tracks @@ -17042,22 +17583,22 @@ This can not be undone! библиотека - + 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. @@ -17214,6 +17755,24 @@ Mixxx требует QT с поддержкой SQLite. Пожалуйста, п Сетевой запрос не запущен + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17222,4 +17781,27 @@ Mixxx требует QT с поддержкой SQLite. Пожалуйста, п Эффекты не загружены. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_sl.qm b/res/translations/mixxx_sl.qm index 20b3dec6ff67..5661a583a083 100644 Binary files a/res/translations/mixxx_sl.qm and b/res/translations/mixxx_sl.qm differ diff --git a/res/translations/mixxx_sl.ts b/res/translations/mixxx_sl.ts index 7b13f38cc0e2..0c5393301c4b 100644 --- a/res/translations/mixxx_sl.ts +++ b/res/translations/mixxx_sl.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Zaboji - + Enable Auto DJ Omogoči Auto DJ - + Disable Auto DJ Onemogoči Auto DJ - + Clear Auto DJ Queue Izbriši Auto DJ čakalno vrsto - + Remove Crate as Track Source Odstrani zaboj kot vir skladb. - + Auto DJ Samodejni DJ - + Confirmation Clear Počisti potrditev - + Do you really want to remove all tracks from the Auto DJ queue? Res želiš odstraniti vse poizvedbe pesmi v Auto DJ? - + This can not be undone. Izbris je trajen. - + Add Crate as Track Source Dodaj zaboj kot vir skladb. @@ -223,7 +231,7 @@ - + Export Playlist Izvozi seznam predvajanja @@ -237,7 +245,7 @@ Export to Engine DJ "Engine DJ" is a product name and must not be translated. - + Izvoz v Engine DJ @@ -277,13 +285,13 @@ - + Playlist Creation Failed Ustvarjanje seznama predvajanja je spodletelo - + An unknown error occurred while creating playlist: Neznana napaka pri ustvarjanju novega seznama predvajanja: @@ -298,12 +306,12 @@ Ali res želite izbrisati seznam predvajanja <b>%1</b>? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # št. - + Timestamp časovni žig @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Ne morem naložiti skladbe. @@ -362,7 +370,7 @@ Kanali - + Color Barva @@ -377,7 +385,7 @@ Skladatelj - + Cover Art Naslovnica @@ -387,7 +395,7 @@ Datum dodajanja - + Last Played Nazadnje predvajano @@ -417,7 +425,7 @@ Tonaliteta - + Location Lokacija @@ -427,7 +435,7 @@ Pregled - + Preview Predposlušanje @@ -467,7 +475,7 @@ Leto - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Razčlenitev slike ... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Ne morem uporabiti varne shrambe gesel: dostop do ključev je bil neuspešen. - + Secure password retrieval unsuccessful: keychain access failed. Prevzem varnega gesla je bilo neuspešno: dostop do ključev ni uspel. - + Settings error Napaka v nastavitvah - + <b>Error with settings for '%1':</b><br> <b>Napaka v nastavitvah za '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Računalnik @@ -612,19 +620,19 @@ 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. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + Prikaže podatke iz oznak datotek in ne podatke iz Mixxx knjižnice, kot pri drugih prikazih skladbe. - + If you load a track file from here, it will be added to your library. - + Skladba, ki se naloži od to, bo dodana v knjižnico. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx je odprtokodni DJ program. Za več podatkov si oglejte: - + 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 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 Pot do zapisa statistike razhroščevanja - + 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. - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! Mapiranje kontrolorja bo sprožilo več opozoril in napak, v primerih zlorabe API knjižnic. Za razvoj novih mapiranj je ta opcija priporočljiva! - + 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. - + Top-level directory where Mixxx should look for settings. Default is: Vrhnji direktorij v kateremu naj Mixxx išče nastavitve. Privzeto je: - + Starts Auto DJ when Mixxx is launched. Zagon samodejnega DJ-a ob zagonu Mixxx - + Rescans the library when Mixxx is launched. Ob zagonu Mixxx ponovno preglej knjižnico. - + Use legacy vu meter Uporabi vgrajeni vu meter - + Use legacy spinny Uporabi vgrajeni spinny - - Loads experimental QML GUI instead of legacy QWidget skin - Naloži eksperimentalni QML grafični vmesnik namesto QWidget preobleke + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + 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 @@ -866,32 +879,32 @@ 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. Določi nivo beleženja na katerem bo medpomnilnik dnevnika prenešen v mixxx.log. <level> je ena od vrednosti, ki so definirane v --log-level zgoraj. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. Nastavi največjo velikost mixxx.log datoteke v bajtih. Uporabi -1 za neskončno. Privzeto je 100 MB kot 1e5 ali 100000000. - + 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. - + Overrides the default application GUI style. Possible values: %1 Nadomesti privzeti slog uporabniškega vmesnika programa. Možne vrednosti: %1 - + 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. - + Preview rendered controller screens in the Setting windows. Predogled zaslonov kontrolerjev v oknu nastavitev. @@ -984,2557 +997,2585 @@ trace - gornje + profilirna sporočila ControlPickerMenu - + Headphone Output Izhod slušalk - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Predvajalnik %1 - + Sampler %1 Vzorčevalnik %1 - + Preview Deck %1 Predposlušanje za predvajalnik %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Pomožno AUX vodilo %1 - + Reset to default Nastavi na privzete nastavitve - + Effect Rack %1 Regal z učinki %1 - + Parameter %1 Parameter %1 - + Mixer Mešalka - - + + Crossfader Navzkrižni drsnik - + Headphone mix (pre/main) Miks za slušalke (pred/glavni) - + Toggle headphone split cueing Vklopi/Izklopi simultano predposlušanje in predvajanje preko slušalk - + Headphone delay Zamik za slušalke - + Transport Transport - + Strip-search through track Iskanje po traku skozi skladbo - + Play button Gumb za predvajanje - - + + Set to full volume Nastavi na najvišjo glasnost. - - + + Set to zero volume Nastavi glasnost na nič. - + Stop button Stop gumb - + Jump to start of track and play Skoči na začetek skladbe in predvajaj. - + Jump to end of track Skoči na konec skladbe. - + Reverse roll (Censor) button Gumb za vzvratno predvajanje (Censor) - + Headphone listen button Gumb za poslušanje s slušalkami - - + + Mute button Gumb za utišanje - + Toggle repeat mode Preklopi ponavljanje - - + + 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 - + Toggle slip mode Vklop/izklop drsnega načina - - + + BPM BPM - + Increase BPM by 1 Povečaj tempo za 1 BPM - + Decrease BPM by 1 Zmanjšaj tempo za 1 BPM - + Increase BPM by 0.1 Povečaj tempo za 0,1 BPM - + Decrease BPM by 0.1 Zmanjšaj tempo za 0,1 BPM - + BPM tap button Gumb za določitev tempa s tapkanjem - + Toggle quantize mode Vklop/izklop kvantizacije - + One-time beat sync (tempo only) Enkratna sinhronizacija ritma (zgolj tempo) - + One-time beat sync (phase only) Enkratna sinhronizacija ritma (zgolj faza) - + Toggle keylock mode Preklopi zaklep tonalitete - + Equalizers 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 - + Slot %1 Reža %1 - + Headphone Mix Mix slušalk - + Headphone Split Cue Simultano predposlušanje in predvajanje preko slušalk - + Headphone Delay Zamik slušalk - + Play Predvajaj - + Fast Rewind Hitro previjanje nazaj - + Fast Rewind button Gumb za hitro previjanje nazaj - + Fast Forward Hitro previjanje naprej - + Fast Forward button Gumb za hitro previjanje naprej - + Strip Search Iskanje po traku - + Play Reverse Predvajaj vzvratno - + Play Reverse button Gumb za vzvratno predvajanje - + Reverse Roll (Censor) Vzvratno predvajanje (Censor) - + Jump To Start Skok na začetek - + Jumps to start of track Skoči na začetek skladbe - + Play From Start Predvajaj od začetka - + Stop Ustavi - + Stop And Jump To Start Ustavi in skoči na začetek - + Stop playback and jump to start of track Ustavi predvajanje in skoči na začetek skladbe - + Jump To End Skoči na konec - + Volume Glasnost - - - + + + Volume Fader Regulator glasnosti - - + + Full Volume Najvišja glasnost - - + + Zero Volume Ničelna glasnost - + Track Gain Jakost skladbe - + Track Gain knob Regulator jakosti skladbe - - + + Mute Tiho - + Eject Izvrzi - - + + Headphone Listen Predposlušanje preko slušalk - + Headphone listen (pfl) button Gumb za predposlušanje preko slušalk (pfl) - + Repeat Mode Ponavljanje - + Slip Mode Drsni način - - + + Orientation Orientacija - - + + Orient Left Leva orientacija - - + + Orient Center Sredinska orientacija - - + + Orient Right Desna orientacija - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap Tapkanje tempa v BPM - + Adjust Beatgrid Faster +.01 Pohitri ritmično mrežo +.01 - + Increase track's average BPM by 0.01 Poveča povprečni tempo skladbe za 0.01 BPM - + Adjust Beatgrid Slower -.01 Upočasni ritmično mrežo -.01 - + Decrease track's average BPM by 0.01 Zmanjša povprečni tempo skladbe za 0.01 BPM - + Move Beatgrid Earlier Premakni ritmično mrežo na bolj zgodaj - + Adjust the beatgrid to the left Premakni ritmično mrežo v levo - + Move Beatgrid Later Premakni ritmično mrežo na kasneje - + Adjust the beatgrid to the right Premakni ritmično mrežo v desno - + Adjust Beatgrid Prestavi ritmično mrežo. - + Align beatgrid to current position Ritmično mrežo poravna na trenutno pozicijo v skladbi - + Adjust Beatgrid - Match Alignment Prilagodi ritmično mrežo - ujemi poravnavo - + Adjust beatgrid to match another playing deck. Prilagodi ritmično mrežo, da se bo ujemala z drugim dejavnim predvajalnikom. - + Quantize Mode Vrsta kvantizacije - + Sync Sinhronizacija - + Beat Sync One-Shot Enkratna sinhronizacija ritma - + Sync Tempo One-Shot Enkratna sinhronizacija tempa - + Sync Phase One-Shot 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 toni - + Mid EQ Srednji toni - - + + Main Output Glavni izhod - + Main Output Balance Ravnovesje glavnega izhoda - + Main Output Delay Zamik glavnega izhoda - + Main Output Gain Jakost glavnega izhoda - + Low 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 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 predvajalnika %1 - + + Quick Effect Super Knob (control linked effect parameters) Super regulator za hitre učinke (nadzor povezanih parametrov učinka) - - + + + + Quick Effect Hitri učinek - + 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 Dodeli - + 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 Samodejni DJ - + Toggle Auto DJ On/Off Vkopi/izklopi Samodejni DJ - + 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 oddalji - + Headphone Gain Jakost slušalk - + Headphone gain Jakost slušalk - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync Tapkajte za sinhronizacijo tempa (in faze, če je vklopljena kvantizacija). Držite, da vklopite trajno sinhronizacijo. - + One-time beat sync tempo (and phase with quantize enabled) 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) - - + + Adjust %1 Prilagodi %1 - + + Deck %1 Stem %2 + Predvajalnik %1 Stem %2 + + + Effect Unit %1 Učinek %1 - + Button Parameter %1 Nastavitve gumba %1 - + Skin Preobleka - + Controller Kontroler - + Crossfader / Orientation Navzkrižni drsnik / orientacija - + Main Output gain Jakost glavnega izhoda - + Main Output balance Ravnovesje glavnega izhoda - + Main Output delay Zamik glavnega izhoda - + Headphone Slušalke - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Izniči %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. Izvrzi ali povovno naloži zadnjo izvrženo skladbo (iz poljubnega prdvajalnika)<br> Dvojni pritisk za ponovno nalaganje nazadnje nadomeščene skladbe. V praznih predvajalnikih naloži predzadnjo izvrženo skladbo. - + BPM / Beatgrid BPM / ritmična mreža - + Halve BPM Razpolovi BPM - + Multiply current BPM by 0.5 Pomnoži trenutni BPM z 0,5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 Pomnoži trenutni BPM z 0,666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 Pomnoži trenutni BPM z 0,75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 Pomnoži trenutni BPM z 1,333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 Pomnoži trenutni BPM z 1,5 - + Double BPM Podvoji BPM - + Multiply current BPM by 2 Pomnoži trenutni BPM z 1 - + Tempo Tap Tapkanje hitrosti - + Tempo tap button Gumb za tapkanje tempa - + Move Beatgrid Premik ritmične mreže - + Adjust the beatgrid to the left or right Premik ritmične mreže levo ali desno - + Move Beatgrid Half a Beat Premakni ritmično mrežo za pol takta - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. Prilagodi ritmično mrežo za točno pol dobe. Uporabno le za skladbe s konstantnim tempom. - - + + Toggle the BPM/beatgrid lock Preklopi zaklep BPM/ritmične mreže - + Revert last BPM/Beatgrid Change Povrni zadnjo spremembo BPM/ritmične mreže - + Revert last BPM/Beatgrid Change of the loaded track. Povrni zadnjo spremembo BPM/ritmične mreže naložene skladbe. - + Sync / Sync Lock Sinhronizacija / Zaklep - + Internal Sync Leader Interni vodič sinhronizacije - + Toggle Internal Sync Leader Preklopi internega vodiča sinhronizacije - - + + Internal Leader BPM Interni vodič BPM - + Internal Leader BPM +1 Interni vodič BPM +1 - + Increase internal Leader BPM by 1 Poveča tempo internega vodiča za 1 BPM - + Internal Leader BPM -1 Interni vodič -1 BPM - + Decrease internal Leader BPM by 1 Zmanjša tempo internega vodiča za 1 BPM - + Internal Leader BPM +0.1 Interni vodič +0,1 BPM - + Increase internal Leader BPM by 0.1 Poveča tempo internega vodiča za 0,1 BPM - + Internal Leader BPM -0.1 Interni vodič -0,1 BPM - + Decrease internal Leader BPM by 0.1 Zmanjša tempo internega vodje za 0,1 BPM - + Sync Leader Vodič sinhronizacije - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) Preklop treh načinov sinhronizacije / prikazovalnik (izklopljeno, mehak vodič, ekspliciten vodič) - + Speed Hitrost - + Decrease Speed (Fine) Zmanjšaj hitrost (natančno) - + 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 - - + + Sort hotcues by position Sortiranje hotcue iztočnic po položaju - - + + Sort hotcues by position (remove offsets) Sortiranje hotcue iztočnic po položaju (odstrani odmike) - + 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 postavi %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 - + if the track has no beats the unit is seconds Če steza nima udarcev, je enota v sekundah - + 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 %1 Beats set from its end point Ponavljaj %1 udarcev od končne točke - + Loop Roll %1 Beats set from its end point Kotaleče ponavljaj %1 dob od končne točke - + Create %1-beat loop with the current play position as loop end Ustvari %1-dobno zanko, katere konec je na trenutni poziciji predvajanja - + Create temporary %1-beat loop roll with the current play position as loop end Ustvari začasno %1-dobno zanko, katere konec je na trenutni poziciji predvajanja - + Loop Beats Ritmične zanke - + Loop Roll Beats Kotaleče se ritmične zanke - + Go To Loop In Pojdi na vhod zanke - + Go to Loop In button Gumb za skok na vhod zanke - + Go To Loop Out Pojdi na izhod zanke - + Go to Loop Out button Gumb za skok na izhod 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 Skok za dobo - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position Prikaže, katere oznake zank ostanejo statične med prilagajanjem velikosti in katere se prevzamejo iz trenutnega položaja - + 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 - + Remove Temporary Loop Odstrani začasno zanko - + Remove the temporary loop Odstrani začasno zanko - + 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 - + Sort focused column Sortiranje izpostavljenega stolpca - + Sort the column of the cell that is currently focused, equivalent to clicking on its header Sortira stolpec celice, ki je trenutno izpostavljena - + 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 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 - + Clear search Počisti iskanje - + Clears the search query Počisti iskalno pozvedbo - - + + Select Next Color Available Izberi naslednjo barvo, ki je na voljo - + Select the next color in the color palette for the first selected track Za prvo izbrano skladbo določi naslednjo barvo v barvni paleti - - + + Select Previous Color Available Izberi prejšnjo barvo, ki je na voljo - + Select the previous color in the color palette for the first selected track Za prvo izbrano skladbo določi prejšnjo barvo v barvni paleti - + + Quick Effects Deck %1 + Hitri učinki %1 + + + 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 - + + Deck %1 Stem %2 Quick Effect Super Knob + Predvajalnik %1 Stem %2 Hitri učinek super regulator + + + + Deck %1 Stem %2 Quick Effect Enable Button + Predvajalnik %1 Stem %2 Hitri učinek stikalo + + + 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 Dodelitev FX enote - + Meta Knob Meta-regulator - + Effect Meta Knob (control linked effect parameters) Meta-regulator učinka (nadzor 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 smer za 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator Prikaži/skrij mikrofon in pomožno AUX vodilo - + Waveform Zoom Reset To Default Ponastavi povečavo valovne oblike na privzeto - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms Ponastavitev soptnje povećave valovne oblike na vrednost določeno v Možnosti -> Valovne oblike - + Select the next color in the color palette for the loaded track. Za naloženo skladbo določi naslednjo barvo v barvni paleti - + Select previous color in the color palette for the loaded track. Za naloženo skladbo določi prejšnjo barvo v barvni paleti - + Navigate Through Track Colors Navigacija skozi barve skladb - + Select either next or previous color in the palette for the loaded track. Za naloženo skladbo določite naslednjo ali prejšnjo barvo iz palete. - + 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. - - + + + Deck %1 Stems + Predvajalnik %1 Stem-i + + + + 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 Predposlušanje prikaži/skrij - + Show/hide the preview deck Prikaže ali skrije predvajalnik za predposlušanje - + 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 (vsi predvajalniki) - + Show/Hide all spinnies Prikaži/skrij vrtenje za vse gramofone - + Toggle Waveforms Preklop valovnih oblik - + Show/hide the scrolling waveforms. Prikaže/skrije pomikajoče se valovne oblike. - + Waveform zoom Valovna oblika povečava - + Waveform Zoom Valovna oblika povečava - + Zoom waveform in Približaj valovno obliko - + Waveform Zoom In Valovna oblika približaj - + Zoom waveform out 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 @@ -3547,6 +3588,159 @@ trace - gornje + profilirna sporočila Neznano + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - gornje + profilirna sporočila 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 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. @@ -3682,27 +3876,27 @@ trace - gornje + profilirna sporočila ControllerScriptEngineLegacy - + Controller Mapping File Problem Težava z datoteko mapiranja kontrolerja - + The mapping for controller "%1" cannot be opened. Mapiranja za kontroler "%1" ni mogoče odpreti. - + 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. - + File: Datoteka: - + Error: Napaka: @@ -3735,7 +3929,7 @@ trace - gornje + profilirna sporočila - + Lock Zakleni @@ -3765,7 +3959,7 @@ trace - gornje + profilirna sporočila Samodejni DJ - izvor skladbe - + Enter new name for crate: Vnesi novo ime zaboja: @@ -3782,22 +3976,22 @@ trace - gornje + profilirna sporočila Uvozi zaboj - + Export Crate Izvozi zaboj - + Unlock Odkleni - + An unknown error occurred while creating crate: Neznana napaka pri ustvarjanju zaboja: - + Rename Crate Preimenuj zaboj @@ -3807,28 +4001,28 @@ trace - gornje + profilirna sporočila Ustvarite zaboj za svoj naslednji nastop - za najljubše electrohouse skladbe ali za najbolj priljubljene komade. - + Confirm Deletion Potrdite izbris - - + + 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) - + M3U Playlist (*.m3u) M3U seznam predvajanja (*.m3u) @@ -3849,17 +4043,17 @@ trace - gornje + profilirna sporočila Zaboji omogočajo poljuben način razvrščanja in organizacije! - + Do you really want to delete crate <b>%1</b>? Ali res želite izbrisati zabojnik <b>%1</b>? - + 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. @@ -3954,12 +4148,12 @@ trace - gornje + profilirna sporočila Bivši sodelujoči - + Official Website Uradna spletna stran - + Donate Doniraj @@ -4788,123 +4982,140 @@ Skušali ste učiti: %1, %2 DlgPrefBroadcast - + 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 - + Automatic Samodejno - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Spodletelo dejanje - + You can't create more than %1 source connections. Ne morete ustvariti več kot %1 povezav z virom. - + Source connection %1 Povezava z virom %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + Nastavitve za %1 + + + At least one source connection is required. Potrebna je vsaj ena povezava z virom - + Are you sure you want to disconnect every active source connection? Ste prepričani, da želite prekiniti vse aktivne povezave z viri? - - + + Confirmation required Potrebna je potrditev - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' ima enako Icecast priklopno točko, kot '%2'. Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene iste vstopne točke. - + Are you sure you want to delete '%1'? Ste prepričani, da želite izbrisati '%1'? - + Renaming '%1' Preimenovanje '%1' - + New name for '%1': Novo ime za '%1' - + Can't rename '%1' to '%2': name already in use Ne morem preimenovati '%1' v '%2': ime je že uporabljeno @@ -4917,27 +5128,27 @@ Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene Nastavitve za oddajanje v živo - + Mixxx Icecast Testing Mixxx Icecast preizkus - + Public stream Javni tok - + http://www.mixxx.org http://www.mixxx.org - + Stream name Ime toka - + 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. Zaradi napak v nekaterih klientih za pretakanje, lahko dinamično posodabljanje metapodatkov v Ogg Vorbis privede do napak in prekinjanja povezav. Označite to polje, če želite kljub temu posodabljati te metapodatke. @@ -4977,67 +5188,72 @@ Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene Nastavitve za %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Dinamično posodobi metapodatke za Ogg Vorbis. - + ICQ ICQ - + AIM AIM - + Website Spletna stran - + Live mix Miks v živo - + IRC IRC - + Select a source connection above to edit its settings here Zgoraj izberite povezavo z virom, da bi tukaj lahko urejali njene nastavitve - + Password storage Shramba za gesla - + Plain text Navaden tekst - + Secure storage (OS keychain) Varna shramba (OS veriga) - + Genre Zvrst - + Use UTF-8 encoding for metadata. Uporabi UTF-8 za zapisovanje metapodatkov. - + Description Opis @@ -5063,42 +5279,42 @@ Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene Kanali - + Server connection Povezava s strežnikom - + Type Vrsta - + Host Gostitelj - + Login Uporabniško ime - + Mount Vpni - + Port Vrata - + Password Geslo - + Stream info Informacija o toku @@ -5108,17 +5324,17 @@ Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene Metapodatki - + Use static artist and title. Uporabi statičnega izvajalca in naslov. - + Static title Statični naslov - + Static artist Statični izvajalec @@ -5177,13 +5393,14 @@ Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene DlgPrefColors - - + + + By hotcue number Po številki Hotcue iztočnice - + Color Barva @@ -5228,132 +5445,138 @@ Dva vira, ki se povezujeta na isti strežnik, ne moreta imeti hkrati vklopljene + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Ko je vklopljeno obarvanje ključa, Mixxx za vsak ključ prikaže +pripadajočo barvo. - + Enable Key Colors - + Vklopi obarvanje ključa - + Key palette - + Paleta ključev DlgPrefController - + Apply device settings? Potrdim nastavitve za napravo? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Vaše nastavitve morajo biti potrjene pred zagonom čarovnika za učenje. Potrdim nastavitve in nadaljujem? - + None Brez - + %1 by %2 %1 z %2 - + Mapping has been edited Mapiranje je bilo spremenjeno - + Always overwrite during this session Vedno prepiši medsejo - + Save As Shrani kot - + Overwrite Prepiši - + Save user mapping Shrani mapiranje uporabnika - + Enter the name for saving the mapping to the user folder. Vnesite ime za shranjevanje mapiranja v uporabnikovo mapo. - + Saving mapping failed Shranjevanje mapiranja ni uspelo - + A mapping cannot have a blank name and may not contain special characters. Mapiranje ne more biti brez imena, ime pa ne sme vsebovati posebnih znakov. - + A mapping file with that name already exists. Mapiranje s tem imenom že obstaja. - + Do you want to save the changes? Ali bi radi shranili spremembe? - + Troubleshooting Odpravlajnje težav - + <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>. - + Mapping already exists. Mapiranje že obstaja. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b> že obstaja v uporabnnikovi mapi z mapiranji. <br>Prepišem ali shranim pod novim imenom? - + Clear Input Mappings Počisti vhodno mapiranje - + Are you sure you want to clear all input mappings? Ste prepričani,d a želite počisititi vsa vhodna mapiranja? - + Clear Output Mappings Počisti izhodna mapiranja - + Are you sure you want to clear all output mappings? Ste prepričani, da želite počisititi vsa izhodna mapiranja? @@ -5371,100 +5594,105 @@ Potrdim nastavitve in nadaljujem? Vklopljeno - - Device Info + + Refresh mapping list - + + Device Info + Podatki o napravi + + + Physical Interface: - + Strojni vmesnik: - + Vendor name: - + Proizvajalec: - + Product name: - + Ime izdelka: - + Vendor ID - + ID proizvajalca - + VID: - + IDP: - + Product ID - + ID izdelka: - + PID: - + IDI: - + Serial number: - + Serijska številka: - + USB interface number: - + Številka USB vmesnika: - + HID Usage-Page: - + HID stran rabe: - + HID Usage: - + HID raba: - + Description: Opis: - + Support: Podpora: - + Screens preview Predogled zaslonov - + Input Mappings Vhodna mapiranja - - + + Search Iskanje - - + + Add Dodaj - - + + Remove Odstrani @@ -5484,17 +5712,17 @@ Potrdim nastavitve in nadaljujem? Naloži mapiranje: - + Mapping Info Podatki o mapiranju - + Author: Avtor: - + Name: Ime: @@ -5504,28 +5732,28 @@ Potrdim nastavitve in nadaljujem? Čarovnik za učenje (zgolj MIDI) - + Data protocol: - + Podatkovni protokol: - + Mapping Files: Daoteke mapiranja: - + Mapping Settings - + Nastavitve mapiranja - - + + Clear All Počisti vse - + Output Mappings Izhodna mapiranja @@ -5536,25 +5764,25 @@ Potrdim nastavitve in nadaljujem? %1 is a virtual controller that allows to use e.g. the 'MIDI for light' mapping.<br/>You need to restart Mixxx in order to enable it.<br/><b>Note:</b> mappings meant for physical controllers can cause issues and even render the Mixxx GUI unresponsive when being loaded to %1. text enclosed in <b> is bold, <br/> is a linebreak %1 is the placehodler for 'MIDI Through Port' - + %1 je navidezni kontroler, ki za mapiranje omogoča rabo npr. 'MIDI za luči'.<br/>Za vklop je potrebno ponovno zagnati Mixxx.<br/><b>Opomoba:</b> mapiranja namenjena strojnim kontrolerjem lahko povzročijo težave in ob nalaganju v %1 celo ohromijo delovanje Mixxx vmesnika. - 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 uporablja "mapiranja" za povezovanje sporočil s kontrolerja s kontrolami v Mixxx. Če ne vidite mapiranja za kontroler v meniju "Naloži mapiranje", ko kliknete na kontroler v levem stranskem panoju, ga lahko tudi prenesete z %1. Postavite XML (.xml) in Javascript (.js) datoteke v "Mapo z uporabnikovimi mapiranji" in nato ponovno zaženite Mixxx. Če ste prenesli mapiranje v ZIP datoteki, razširite XML in Javascript datoteke iz ZIP datoteke v vašo mapo z uporabnikovimi mapiranji in nato ponovno zaženite 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ vodnik po strojni opremi - + MIDI Mapping File Format Datotečni format za MIDI mapiranja - + MIDI Scripting with Javascript MIDI skripti z Javascriptom @@ -5579,7 +5807,7 @@ Potrdim nastavitve in nadaljujem? Enable MIDI Through Port - + Vklop MIDI prehodnih vrat @@ -5647,7 +5875,7 @@ Potrdim nastavitve in nadaljujem? Skin selector - + Izbira preobleke @@ -5667,12 +5895,12 @@ Potrdim nastavitve in nadaljujem? Menu bar - + Meni pasica Auto-hide the menu bar, toggle it with a single Alt key press - + Samodejno skrij pasico z menijem @@ -5682,7 +5910,17 @@ Potrdim nastavitve in nadaljujem? Multi-Sampling - + Multi-vzorčenje + + + + Force 3D acceleration + Prisiljeno 3D pospeševanje + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + Ko je izbrano, bo Mixxx vedno poskusil uporabljati 3D pospeševanje, kar lahko ohromi delovanje, ko je na voljo le izrisovanje preko glavnega procesorja. @@ -5713,137 +5951,137 @@ Potrdim nastavitve in nadaljujem? DlgPrefDeck - + Mixxx mode Mixxx način - + Mixxx mode (no blinking) Mixxx način (brez utripanja) - + Pioneer mode Pioneer način - + Denon mode Denon način - + Numark mode Numark način - + CUP mode CUP način - + mm:ss%1zz - Traditional mm:ss%1zz - Tradicionalno - + mm:ss - Traditional (Coarse) mm:ss - Tradicionalno (grobo) - + s%1zz - Seconds s%1zz - sekunde - + sss%1zz - Seconds (Long) sss%1zz - sekunde (dolgo) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosekunde - + Intro start Začetek intra - + Main cue Glavna cue iztočnica - + First hotcue Prva hotcue iztočnica - + First sound (skip silence) Prvi zvok (preskoči tišino) - + Beginning of track Začetek skladbe - + Reject Zavrni - + Allow, but stop deck Dovoli, vendar zaustavi predvajalnik - + Allow, play from load point Dovoli, predvajaj s točke nalaganja - + 4% 4% - + 6% (semitone) 6% (polton) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6032,7 +6270,7 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. Sync mode (Dynamic tempo tracks) - + Sinhro način (dinamična hitrost skladb) @@ -6077,12 +6315,12 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. Apply tempo changes from a soft-leading track (usually the leaving track in a transition) to the follower tracks. After the transition, the follower track will continue with the previous leader's very last tempo. Changes from explicit selected leaders are always applied. - + Uporabi spremembe hitrosti iz nežne glavne skladbe (ponavadi iztekajoča se skladba med prehodom) na prihajajoči skladbi. Po prehodu se bo naslednja skladba predvajala z zadnjo hitrostjo glavne skladbe. Eksplicitno določene spremembe glavne skladbe bodo vedno prevzete. Follow soft leader's tempo - + Sledenje tempu glavne skladbe @@ -6147,12 +6385,12 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. The tempo of a previous soft leader track at the beginning of the transition is kept steady. After the transition, the follower track will maintain this original tempo. This technique serves as a workaround to avoid dynamic tempo changes, as seen during the outro of rubato-style tracks. For instance, it prevents the follower track from continuing with a slowed-down tempo of the soft leader. This corresponds to the behavior before Mixxx 2.4. Changes from explicit selected leaders are always applied. - + Tempo predhodne nežne vodilne skladbe na začetku prehoda se ohranja. Po prehodu bo sledeča skladba ohranila ta tempo. Takšen pristop se izogne dinamičnemu spreminjanju tempa, ki ga poznamo iz iztekov skladb v rubato slogu. Tako se na primer prepreči, da bi se naslednja skladba predvajala z upočasnjenim tempom vodilne skladbe. To ustreza načinu delovanja pred Mixxx 2.4. Spremembe iz eksplicitno izbranih vodilnih skladb bodo vedno uporabljene. Use steady tempo - + Uporabi stalni tempo @@ -6242,12 +6480,12 @@ Vedno lahko skladbe tudi povlečete in sputite, da podvojite nek predvajalnik. - + - + @@ -6298,64 +6536,64 @@ 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 - + Disabled - + Izklopljeno - + 2x MSAA - + 2x MSAA - + 4x MSAA - + 4x MSAA - + 8x MSAA - + 8x MSAA - + 16x MSAA - + 16x MSAA - + This skin does not support color schemes Ta preobleka ne podpira barvnih shem - + Information Informacija - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. - + Za delovanje novih krajevnih nastavitev, skaliranja ali nastavitev multi-vzorčenj, je potrebno Mixxx na novo zagnati. @@ -6405,17 +6643,17 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Exclude rhythmic channel when analysing stem file - + Med analizo stem datotek ne uporabi ritmičnih kanalov Disabled - + Izklopljeno Enforced - + Prisiljeno @@ -6581,67 +6819,97 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje.Poglejte priročnik za več podrobnosti - + 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 - + Item is not a directory or directory is missing - + Predmet ni mapa ali ta mapa manjka - + 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 (izvajalec, 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 skladbe nespremenjene - + Relink music directory to new location Preveži glasbeno mapo z novo lokacijo - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Izberi tipografijo zbirke @@ -6690,262 +6958,267 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje.Ob zagonu ponovno preveri mape - + Audio File Formats Formati zvočnih datotek - + Track Table View Prikaz skladb v tabeli - + Track Double-Click Action: Djeanje ob dvojnem kliku na skladbo: - + BPM display precision: Natančnost BPM prikaza: - + Session History Zgodovina sej - + Track duplicate distance Razdalja do podavajanja skladbe - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime Zabeleži ponovno predvajanje skladbe v zgodovino seanse zgolj, če je bilo vmes predvajanih najmanj N drugih skladb. - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Seznam zgodovine predvajanj z manj kot N skladbami bo izbrisan<br/><br/>Opomba: čiščenje bo potekalo ob zagonu ali zapiranju programa Mixxx. - + Delete history playlist with less than N tracks Izbriši seznam zgodovine predvajanj z manj kot N skladbami - + Library Font: Tipografija zibrke: - + + Show scan summary dialog + Prikaži dialog z zbirnimi podatki o pregledu + + + Grey out played tracks - + Posivi že predvajane skladbe - + Track Search - + Iskanje skladbe - + Enable search completions Omogoči zaključevanja iskanj - + Enable search history keyboard shortcuts Omogoči bližnjice tipk za zgodovino iskanj - + Percentage of pitch slider range for 'fuzzy' BPM search: - + Obseg drsnika za spreminjanje višine v procentih za "fuzzy" BPM iskanje: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Ta obseg se uporablja za 'fuzzy' - + Preferred Cover Art Fetcher Resolution Željena ločljivost zajemalnika naslovnic - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Zajemi naslovnice z coverartarchive.com s pomočjo metapodatkov z Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. Opomoba: ">1200px" lahko zajame zelo velike naslovnice. - + >1200 px (if available) >1200 px (če je na voljo) - + 1200 px (if available) 1200 px (če je na voljo) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Mapa z nastavitvami - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Mapa z Mixxx nastavitvami vsebuje podatkovno zbirko knjižnice, ralične nastavitvene datoteke, dnevnike, analitične podatke o skladbah, kot tudi po meri narejena mapiranja 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 - + Library Row Height: Višina vrstice zbirke: - + Use relative paths for playlist export if possible Če je mogoče, ob izvozu za sezname predvajanja uporabi relativne poti - + ... ... - + px px - + Synchronize library track metadata from/to file tags Uskladitev metapodatkov skladbe z oznakami v datotekah - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library Samodejno zapisovanje spremenjenih metapodatkov skladbe z oznake datotek ali ponovni uvoz posodobljenih oznak iz datotek v knjižnico - + Synchronize Serato track metadata from/to file tags (experimental) Uskladitev Serato metapodatkov skladbe z oznakami v datotekah (eksperimentalno) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. Obdrži barvo steze, ritmično mrežo, zaklep bpm, izhodiščne točke in zanke usklajene z oznakami datotek SERATO_MARKERS/MARKERS2.<br/><br/>OPOZORILO: Vklop te možnosti vklopi ponovni uvoz Serato metapodatkov iz datotek, ki so bile spremenjene izven Mixxx. Ponovni uvoz zamenja obstoječe metapodatke v Mixxx z metapodatki iz oznak v datoteki. Lastni metapodatki, ki niso vključeni v te oznake, kot npr. barva zank, bodo izgubljeni. - + Edit metadata after clicking selected track Urejanje metapodatkov po kliku na izbrano skladbo - + Search-as-you-type timeout: Dovoljen čas za iskanje med tipkanjem: - + ms ms - + Load track to next available deck Naloži skladbo v naslednji predvajalnik, ki je na voljo - + External Libraries Zunanje knjižnice - + You will need to restart Mixxx for these settings to take effect. Mixxx je potrebno ponovno zagnati, da bi te nastavitve začele delovati. - + Show Rhythmbox Library Pokaži Rhythmbox zbirko - + Track Metadata Synchronization / Playlists - + Sinhronizacija metapodatkov skladbe/ seznamov predvajanja - + Add track to Auto DJ queue (bottom) Dodaj skladbo v Samodejni DJ zaporedje (na dno) - + Add track to Auto DJ queue (top) Dodaj skladbo v zaporedje samodejnega DJ-a (na vrh) - + Ignore Prezri - + Show Banshee Library Pokaži Banshee zbirko - + Show iTunes Library Pokaži iTunes zbirko - + Show Traktor Library Pokaži Traktor zbirko - + Show Rekordbox Library Prikaži Rekordbox zbirko - + Show Serato Library Prikaži Serato zbirko - + All external libraries shown are write protected. Vse prikazane zunanje knjižnice so zaščitene pred pisanjem @@ -7065,7 +7338,7 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. Reset stem controls on track load - + Po nalaganju skladb ponastavi stem kontrole @@ -7290,33 +7563,33 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje. DlgPrefRecord - + Choose recordings directory Izberi mapo za snemanje - - + + Recordings directory invalid Neveljavna mapa za snemanje - + Recordings directory must be set to an existing directory. Mapa za snemanje mora biti nastavljena na obstoječo mapo - + Recordings directory must be set to a directory. Mapa za snemanje mora biti nastavljena na mapo - + Recordings directory not writable Mapa za snemanje ne dovoljuje zapisovanja - + You do not have write access to %1. Choose a recordings directory you have write access to. Nimate pravic za dostop do %1. Za snemanje izberite mapo, za katero imate dovoljenje za snemanje. @@ -7334,43 +7607,57 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje.Brskaj... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + To vključuje pot do datoteke za vsako skladbo v CUE datoteki. +Ta opcija zmanjša prenosnost CUE datotek in lahko razkrije osebne +podatke iz poti do datotek (npr. ime uporabnika) + + + + Enable File Annotation in CUE file + Vklopi označevanje datotek v CUE datoteki + + + + Quality Kakovost - + Tags Oznake - + Title Naslov - + Author Avtor - + Album Album - + Output File Format Izhodni format datoteke - + Compression Kompresija - + Lossy Z izgubami @@ -7385,12 +7672,12 @@ in vam omogoča, da prilagodite njihovo višino za harmonično miksanje.Mapa: - + Compression Level Stopnja kompresije - + Lossless Brez izgub @@ -7523,172 +7810,177 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Privzeto (dolg zamik) - + Experimental (no delay) Ekspermientalno (brez zamika) - + Disabled (short delay) Izklopljeno (kratek zamik) - + Soundcard Clock Ura zvočne kartice - + Network Clock Mrežna ura - + Direct monitor (recording and broadcasting only) Neposredni monitoring (samo pri snemanju in prenašanju) - + Disabled Izklopljeno - + Enabled Vklopljeno - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. Za vklop načrtovanja urnika v realnem času (trenutno izklopljeno) si oglejte %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. V %1 se nahaja seznam zvočnih kartic in kontrolerjev, ki so primerni za rabo z Mixxx. - + Mixxx DJ Hardware Guide Mixxx DJ vodnik po strojni opremi - - Information + + Find details in the Mixxx user manual - + + Information + Informacije + + + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + Za uveljavitev sprememb RubberBand nastavitev je potrebno Mixxx ponovno zagnati. - + auto (<= 1024 frames/period) samodejno (<= 1024 okvirjev/dobo) - + 2048 frames/period 2048 okvirjev/dobo - + 4096 frames/period 4096 okvirjev/dobo - + Are you sure? - + Ali ste prepričani? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Posredovanje stereo kanalov preko mono kanalov zaradi vzporednega procesiranja povzroči zmanjšanje združljivosti in razpršeno stereo sliko. Med snemanjem in prenosi to ni priporočljivo. - + Are you sure you wish to proceed? - + Ali res želite nadaljevati? - + No - + Ne - + Yes, I know what I am doing - + Da, vem kaj delam - + Microphone inputs are out of time in the record & broadcast signal compared to what you hear. Mikrofonski vhodi so zamaknjeni v signalu za snemanje in prenašanje časovno zamaknjeni in ne ustrezajo temu kar slišite. - + Measure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Izmerite latenco zvoka na krožni poti in jo vnesite zgoraj, za kompenzacijo latence mikrofona, da se poravna s časom mikrofona . - + Refer to the Mixxx User Manual for details. Preverite Mixxx uporabniški priročnik za več podrobnosti. - + Configured latency has changed. Nastavljena latenca je bila spremenjena. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Ponovno izmerite latenco kroženja zvoka in jo vnesite zgoraj za kompenzacijo latence mikrofona in poravnavo časa mikrofona. - + Realtime scheduling is enabled. Načrtovanje urnika v realnem času je vklopljeno - + Main output only Zgolj glavni izhod - + Main and booth outputs Glavni in dodatni izhod - + %1 ms %1 ms - + Configuration error Napaka v konfiguraciji @@ -7755,17 +8047,22 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Števec premajhnega toka v medpomnilniku - + 0 0 @@ -7790,12 +8087,12 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Vhod - + System Reported Latency Latenca, kot jo javlja sistem - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Povečajte medpomnilnik za zvok, če se števec za premajhen tok veča in je med predvajanjem slišati prasketanje. @@ -7817,7 +8114,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Dual-threaded Stereo - + Razdvojeno procesiran stereo @@ -7825,7 +8122,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Namigi in diagnostika - + Downsize your audio buffer to improve Mixxx's responsiveness. Zmanjšajte medpomnilnik za zvok, da bi izboljšali odzivnost Mixxx. @@ -7872,7 +8169,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Konfiguracija gramofonov - + Show Signal Quality in Skin Na preobleki prikaži kakovost signala @@ -7908,46 +8205,51 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh + Pitch estimator + Ocenjevalnik višine + + + Deck 1 Predvajalnik 1 - + Deck 2 Predvajalnik 2 - + Deck 3 Predvajalnik 3 - + Deck 4 Predvajalnik 4 - + Signal Quality Kakovost signala - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Poganja xwax - + Hints Nasveti - + Select sound devices for Vinyl Control in the Sound Hardware pane. Izberite zvočno napravo za gramofonsko upravljanje v panoju Strojna oprema za zvok. @@ -7955,58 +8257,58 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh DlgPrefWaveform - + Filtered Filtrirano - + HSV HSV - + RGB RGB - + Top - + Zgoraj - + Center - + Sredina - + Bottom - + Spodaj - + 1/3 of waveform viewer options for "Text height limit" - + 1/3 prikazovalnika valovne oblike - + Entire waveform viewer - + Celoten prikazovalnik valovne oblike - + 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. @@ -8024,22 +8326,17 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Gostota sličic - + OpenGL Status - + OpenGL status - + Displays which OpenGL version is supported by the current platform. Prikaže katera OpenGL različica je podprta na trenutni platformi. - - Normalize waveform overview - Normalizacija pregleda valovne oblike - - - + Average frame rate Povprečna gostota sličic @@ -8055,7 +8352,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Privzeta stopnja povečave - + Displays the actual frame rate. Prikaže dejansko gostoto sličic @@ -8072,7 +8369,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh This functionality requires waveform acceleration. - + Ta funkcionalnost potrebuje pospeševanje valovne oblike @@ -8090,19 +8387,19 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Nizko - + Show minute markers on waveform overview - + Na pregledu valovne oblike prikaže oznake za minute Use acceleration - + Uporabi pospeševanje High details - + Veliko detajlov @@ -8135,7 +8432,7 @@ Ciljna glasnost je približna in predpostavlja, da ostaneta predojačitev in izh Globalno vizualno poudarjanje - + 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. Pregled celotne valovne oblike prikazuje valovno obliko celotne skladbe. @@ -8144,7 +8441,7 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Enabled - + Vklopljeno @@ -8171,7 +8468,7 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Play marker hints - + Namigi predvajalnih oznak @@ -8181,45 +8478,45 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Preferred font size - + Želena velikost pisave Text height limit - + Omejitev višine teksta Time until next marker - + Čas do naslednje oznake Placement - + Umestitev pt - + pt - + Caching Prepomnilnik - + 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 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. - + Enable waveform caching Vklopi predpomnilnik valovne oblike - + Generate waveforms when analyzing library Med analiziranjem zbirke ustvari valovne oblike @@ -8231,18 +8528,18 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Scrolling Waveforms - + Drseče valovne oblike - + Type - + Vrsta Stereo coloration - + Stereo obarvanje @@ -8265,12 +8562,58 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Na valovni obliki premakne označevalec položaja predvajanja na levo, desno ali v sredino (privzeto). - + + Stem + Stem + + + + Channel opacity + Prekrivnost kanala + + + + Channel opacity (outline) + Prekrivnost kanala (obroba) + + + + Main stem opacity + Prekrivnost glavnega stem + + + + Outline stem opacity + Prekrivnost obrobe glavnega stem + + + + Move channel to foreground when volume is adjusted + Med spreminjanjem glasnosti premakni kanal v ospredje + + + Overview Waveforms + Pregled valovnih oblik + + + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings - + Clear Cached Waveforms Pobriši predmonilnik valovnih oblik @@ -8627,12 +8970,12 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Tags - + Oznake Cover - + Naslovnica @@ -8652,7 +8995,7 @@ Izbirajte med različnimi vrstami prikaza valovne oblike, ki se primarno razliku Metadata applied - + Dodani metapodatki @@ -8762,7 +9105,7 @@ Tega ni mogoče razveljaviti! BPM - + Location: Lokacija: @@ -8777,27 +9120,27 @@ Tega ni mogoče razveljaviti! Komentarij - + BPM BPM - + Sets the BPM to 75% of the current value. Nastavi BPM na 75% trenutne vrednosti. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Nastavi BPM na 50% trenutne vrednosti. - + Displays the BPM of the selected track. Prikaže BPM trenutno izbrane skladbe. @@ -8852,49 +9195,49 @@ Tega ni mogoče razveljaviti! Zvrst - + ReplayGain: ReplayGain normalizacija: - + Sets the BPM to 200% of the current value. Nastavi BPM na 200% trenutne vrednosti. - + Double BPM Podvoji BPM - + Halve BPM Razpolovi BPM - + Clear BPM and Beatgrid Počisiti BPM in ritmično mrežo - + Move to the previous item. "Previous" button Premik na prejšnji element. - + &Previous &Prejišnji - + Move to the next item. "Next" button Premik na naslednji element. - + &Next &Naslednji @@ -8919,27 +9262,32 @@ Tega ni mogoče razveljaviti! Barva - + Date added: Datum dodajanja: - + Open in File Browser Odpri v brskalniku datotek Samplerate: + Vzorčenje: + + + + Filesize: - + Track BPM: BPM skladbe: - + 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. @@ -8948,90 +9296,90 @@ Uporabite to nastavitev, če imajo vaše skladbe konstantni tempo (npr. večina Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s skladbami, v katerih se tempo spreminja. - + Assume constant tempo Predvidi konstantni tempo - + Sets the BPM to 66% of the current value. Nastavi BPM na 66% trenutne vrednosti. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. Nastavi BPM na 150% trenutne vrednosti. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. Nastavi BPM na 133% trenutne vrednosti. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Tapkajte v ritmu, da nastavite BPM na tempo, s katerim tapkate. - + Tap to Beat Tapkaj v ritmu - + Hint: Use the Library Analyze view to run BPM detection. Namig: Uporabite Zbirka Analiziraj, da zaženete prepoznavanje hitrosti BPM. - + Save changes and close the window. "OK" button Shrani spremembe in zapri okno - + &OK &OK - + Discard changes and close the window. "Cancel" button Zavrzi spremembe in zapri okno. - + Save changes and keep the window open. "Apply" button Shrani spremembe in pusti okno odprto. - + &Apply &Potrdi - + &Cancel &Prekini - + (no color) (brezbarvno) @@ -9041,156 +9389,156 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s Track Editor - + Urejevalnik skladb Title - + Naslov Artist - + Izvajalec Album - + ALbum Album Artist - + Izvajalec albuma Composer - + Skladatelj Year - + Leto Genre - + Žanr Key - + Ključ Grouping - + Skupina Track # - + Skladba # Comments - + Komentarji Re-Import Metadata from files - + Ponovni uvoz metapodatkov iz datotek Color - + Barva Duration: - + Dolžina: Filetype: - + Vrsta datoteke: BPM: - + BPM: Bitrate: - + Bitna hitrost: Samplerate: - + Vzorčenje: Location: - + Lokacija: Open in File Browser - + Odpri v brskalniku datotek Discard changes and reload saved values. "Reset" button - + Zavrzi spremembe in ponovno naloži shranjene vrednosti. &Reset - + &Poanastavi Discard changes and close the window. "Cancel" button - + Zavrzi spremembe in zapri okno. &Cancel - + &Prekini Save changes and keep the window open. "Apply" button - + Shrani spremembe in pusti okno odprto. &Apply - + &Prevzemi Save changes and close the window. "OK" button - + Zavrzi spremembe in zapri okno. &OK - + &V redu - + (no color) - + (brezbarvno) @@ -9390,29 +9738,29 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s EngineBuffer - + Soundtouch (faster) Soundtouch (hitreje) - + Rubberband (better) Rubberband (bolje) - + Rubberband R3 (near-hi-fi quality) Rubberband (skoraj hi-fi kakovost) - + Unknown, using Rubberband (better) Neznano, uporabljam rubberband (bolje) - + Unknown, using Soundtouch - + Neznano, uporaba Soundtouch @@ -9587,7 +9935,7 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s There was an error loading your iTunes library. Check the logs for details. - + iTune knjižnice ni bilo mogoče naložiti. Za podrobnosti preverite beležke dnevnika. @@ -9595,12 +9943,12 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s Change color - + Spremeni barvo Choose a new color - + Izberite novo barvo @@ -9608,32 +9956,32 @@ Večinoma ustrvarja bolj kakovostno ritmično mrežo, vendar ne deluje dobro s s Browse... - + Brskaj... No file selected - + nobena datoteka ni izbrana Select a file - + Izberite datoteko 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 @@ -9645,57 +9993,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9703,87 +10051,93 @@ OpenGL. Library - + This or a parent directory is already in your library. - + Ta mapa ali njen starš se že nahaja v knjižnici - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - + Ta ali na seznamu navedena mapa ne obstaja ali ni dostopna. +Prekinjam postopek v izogib nedoslednostim v knjižnici. - - + + This directory can not be read. - + Mape ni mogoče prebrati - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Neznana napaka. +Prekinjam postopek v izogib nedoslednostim v knjižnici. - + Can't add Directory to Library - + Mape ni mogoče dodati v knjižnico - + Could not add <b>%1</b> to your library. %2 - + <b>%1</b> ni bilo mogoče dodati v knjižnico. + +%2 - + Can't remove Directory from Library - + Mape ni mogoče odstraniti iz knjožnice - + An unknown error occurred. - + Zgodila se je neznana napaka - + This directory does not exist or is inaccessible. - + Ta mapa ne obstaja ali ni dostopna. - + Relink Directory - + Ponovna povezava z mapo - + Could not relink <b>%1</b> to <b>%2</b>. %3 - + Prevezava z <b>%1</b> na<b>%</b> ni uspela. + +%3 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. @@ -9865,7 +10219,7 @@ Ali bi jo res radi prepisali? Unset all - + Odznači vse @@ -9924,12 +10278,12 @@ Ali bi jo res radi prepisali? Skrite skladbe - + Export to Engine DJ Izvozi v Engine DJ - + Tracks Skladbe @@ -9937,37 +10291,37 @@ 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 @@ -9977,213 +10331,213 @@ Ali bi jo res radi prepisali? preobleka - + Allow Mixxx to hide the menu bar? - + Ali lahko Mixxx skrije meni? - + Hide Always show the menu bar? - + Skrij - + Always show - + Vedno prikaži - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Mixxx meni je skrit in njegov prikaz se preklopi z enim pritiskom na <b>Alt</b> tipko.<br><br>Kliknite<b>%1</b> za potrditev.<br><br>Kliknite<b>%2</b>, če tega ne želite, ker denimo Mixxx ne uporabljate s tipkovnico.<br><br>Nastavitev lahko kadarkoli spremenite v Nastavitve -> Vmesnik<br> - + Ask me again - + Ponovno me vprašaj - - + + 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? - + Scan took %1 - + Pregled je potreboval %1 - + No changes detected. - + Ni zaznanih sprememb. - + %1 tracks in total - + %1 vseh skladb - + %1 new tracks found - + %1 novih skladb - + %1 moved tracks detected - + Premaknjenih skladb: %1 - + %1 tracks are missing (%2 total) - + Manjkajočih skladb: %1 (vseh: %2) - + %1 tracks have been rediscovered - + Ponovno odkrite skladbe: %1 - + Library scan finished - + Pregled knjižnice je bil zaključen - + 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? @@ -10199,74 +10553,79 @@ Ali bi radi izbrali vhodno napravo? PlaylistFeature - + Lock Zakleni - - + + Playlists Seznami predvajanja Shuffle Playlist + Premešaj seznam predvajanja + + + + Adopt current order - + Unlock all playlists - + Odkleni vse sezname predvajanje - + Delete all unlocked playlists - + Izbriši vse sezname predvajanja - + Unlock Odkleni - - + + Confirm Deletion - + Potrdite izbris - + Do you really want to delete all unlocked playlists? - + Ali želite res izbrisati vse odklenjene sezname predvajanja? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Brisanje %1 odklenjenih seznamov predvajanja. <br>Tega dejanja ni mogoče razveljaviti! - + 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 @@ -10309,115 +10668,115 @@ Ali bi radi izbrali vhodno napravo? Mixxx Track Colors - + Mixxx barve skladb Rekordbox Track Colors - + Rekordbox barve skladb Serato DJ Pro Track Colors - + Serato barve skladb Traktor Pro Track Colors - + Traktor Pro barve skladb VirtualDJ Track Colors - + VirtualDJ barve skladb Mixxx Key Colors - + Mixxx obarvanje ključev Traktor Key Colors - + Mixxx obarvanje ključev Mixed In Key - Key Colors - + Mixed in Key - obarvanje ključev Protanopia / Protanomaly Key Colors - + Protanopia / Protanomaly obarvanje ključev Deuteranopia / Deuteranomaly Key Colors - + Deuteranopia / Deuteranomaly obarvanje ključev Tritanopia / Tritanomaly Key Colors - + Tritanopia / Tritanomaly obarvanje ključev 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 @@ -10531,69 +10890,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier Glavni - + Booth + Audio path indetifier Dodatni booth - + Headphones + Audio path indetifier Slušalke - + Left Bus + Audio path indetifier Levo vodilo - + Center Bus + Audio path indetifier Osrednje vodilo - + Right Bus + Audio path indetifier Desno vodilo - + Invalid Bus + Audio path indetifier Napačno vodilo - + Deck + Audio path indetifier Predvajalnik - + Record/Broadcast + Audio path indetifier Snemanje/Prenos - + Vinyl Control + Audio path indetifier Gramofonsko upravljanje - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier Pomožno AUX vodilo - + Unknown path type %1 + Audio path Neznana vrsta poti %1 @@ -10936,49 +11308,51 @@ Kadar je širina nič, omogoči ročno preletavanje preko celotnega razpona zami Širina - + Metronome Metronom - + + The Mixxx Team - + Mixxx ekipa - + Adds a metronome click sound to the stream V tok doda zvok klikanja metronoma - + BPM BPM - + Set the beats per minute value of the click sound Določi hitrost klikanja metronoma v BPM - + Sync Sinhronizacija - + Synchronizes the BPM with the track if it can be retrieved Sinhronizira tempo v BPM, če ga je mogoče razbrati iz skladbe. - + + Gain - + Jakost - + Set the gain of metronome click sound - + Določi jakost klikanja metronoma v BPM @@ -11543,7 +11917,7 @@ Sredina: ne spreminja originalnega zvoka. A gentle 2-band parametric equalizer based on biquad filters. It is designed as a complement to the steep mixing equalizers. - + Nežen 2-stezni parametrični izravnalnik, ki temelji na biquad filtrih. Narejen je kot komplement ostrim izravnalnikom za miksanje. @@ -11779,14 +12153,14 @@ Popolnoma na desni: konec periode učinka 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. @@ -11926,7 +12300,7 @@ Namig: kompenzira "veveričji" ali "renčeč" glasOjačenje, ki bo dodano zvočnemu signalu. Večja, kot je vrednost, bolj bo zvok popačen. - + Passthrough Prehod @@ -11959,215 +12333,299 @@ Namig: kompenzira "veveričji" ali "renčeč" glas Sampler %1 - + Vzorčevalnik %1 Compressor - + Kompresor Auto Makeup Gain - + Samodejno ojačanje Makeup - + Ojačitev The Auto Makeup button enables automatic gain adjustment to keep the input signal and the processed output signal as close as possible in perceived loudness - + Samodejna ojačitev vklopi samodejno spreminjanje jakosti, ki ohranja vhodni signal +in procesirani izhodni na približno enakih nivojih zaznane glasnosti Off - + Izklopljeno On - + Vklopljeno + + + + Auto Gain Control + Samodejni nadzor jakosti + + + + AGC + AGC + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + Samodejni nadzor jakost (AGC) samodejno spreminja jakost avočnega signala za konsistenten izhodni nivo. + + + Threshold (dBFS) - + Prag (dBFS) + Threshold - + Prag + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + Regulator praga spreminja nivo preko katerega učinek začne delovati in vplivati na izhodni signal + + + + Target (dBFS) + Cilj (dBFS) + + + + Target + Cilj + + + + The Target knob adjusts the desired target level of the output signal + Regulator Cilj spreminja želeni ciljni nivo izhodnega signala + + + + Gain (dB) + Jakost (dB) + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + Regulator za jakost spreminja največjo stopnjo jakosti, ki jo bo učinek uporabil + + + + Knee (dB) + Pregib (dB) + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + Regulator za pregib definira območje okoli praga, kjer se bodo spremembe poznale postopno, +kar zagotavlja mehkejše prehode in prepreči nenadne sunke v nivojih. + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + Regulator za napad spreminja čas, ki mine preden samodejna ojačitev +začne delovati, potem ko signal preseže prag + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + Regulator za spust določa čas, ki mine, da se samodejna jakost povrne na izhodišče, +potem ko se signal vrne pod prag. Kratek čas spusta lahko pri določenih vrstah zvoka povzroči +učinek 'pumpanja' in/ali popačenje. The Threshold knob adjusts the level above which the compressor starts attenuating the input signal - + Prag določi mejo nivoja, preko katere začne kompresor stiskati vhodni signal Ratio (:1) - + Razmerje (:1) Ratio - + Razmerje The Ratio knob determines how much the signal is attenuated above the chosen threshold. For a ratio of 4:1, one dB remains for every four dB of input signal above the threshold. At a ratio of 1:1 no compression is happening, as the input is exactly the output. - + Razmerje določa stopnjo zmanjšanja signala, ki je preko praga. +Razmerje 4:1 pomeni, da se ohrani en decibel za vsake 4 decibele signala nad pragom. +Razmerje 1:1 pomeni,da je izhod enak vhodu in da se signal sploh ne stisne. Knee (dBFS) - + Koleno (dBFS) + Knee - + Koleno The Knee knob is used to achieve a rounder compression curve - + Koleno se + Attack (ms) - + Napad (ms) + Attack - + Napad The Attack knob sets the time that determines how fast the compression will set in once the signal exceeds the threshold - + Napad določa čas, ki poteče, da se signal, ki gre preko praga, začne tudi zares stiskati. + Release (ms) - + Spust (ms) + Release - + Spust The Release knob sets the time that determines how fast the compressor will recover from the gain reduction once the signal falls under the threshold. Depending on the input signal, short release times may introduce a 'pumping' effect and/or distortion. - + Spust določa koliko časa po tem, ko se signal vrne poda prag, kompresor še deluje. +Kratek čas spusta lahko pri določenih vrstah zvoka povzroči učinek 'pumpanja' in/ali popačenje. Level - + Nivo The Level knob adjusts the level of the output signal after the compression was applied - + Nivo določi stopnjo ojačitve izhodnega signala po tem, ko je bil ta stisnjen s kompresorjem various - + različne - + built-in - + vgrajene - + missing - + manjkajoče Distribute stereo channels into mono channels processed in parallel. - + Posreduje stereo kanale preko mono kanalov, ki se procesirajo vzporedno. Warning! - + Opozorilo! Processing stereo signal as mono channel may result in pitch and tone imperfection, and this is mono-incompatible, due to third party limitations. - + Procesiranje stereo kanalov kot mono kanalov lahko povzroči odstopanja v višini in tonu. Zaradi zunanjih omejitev je ta postopek tudi nezdružljiv s pravim mono. Dual threading mode is incompatible with mono main mix. - + Razdvojeno procesiranje ni združljivo z glavnim mono miksom. Dual threading mode is only available with RubberBand. - + Razdvojeno procesiranje je na voljo le z RubberBand. Stem #%1 - + Stem #%1 - + Empty - + Prazno - + Simple - + Preprosto - + Filtered - + Filtrirano - + HSV - + HSV - + VSyncTest - + VSyncTest - + RGB - + RGB - + Stacked - + Skupek - + Unknown - + neznano @@ -12382,7 +12840,7 @@ may introduce a 'pumping' effect and/or distortion. Unlock all child playlists - Odkleni vse potoce seznama predvajanje + Odkleni vse potomce seznama predvajanje @@ -12426,193 +12884,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx je zaznal težavo - + Could not allocate shout_t Ni bilo mogoče določiti shout_t - + Could not allocate shout_metadata_t Ni bilo mogoče določiti shout_metadata_t - + Error setting non-blocking mode: Napaka pri nastavljanju načina brez blokov: - + Error setting tls mode: Napaka pri nastavljanju tega modusa: - + Error setting hostname! Napaka pri poimenovanju gostitelja! - + Error setting port! Napaka pri nastavljanju vrat! - + Error setting password! Napaka pri določanju gesla! - + Error setting mount! Napaka pri vpenjanju! - + Error setting username! Napaka pri določanju uporabniškekga imena! - + Error setting stream name! Napaka pri določanju imena toka! - + Error setting stream description! Napaka pri določanju opisa toka! - + Error setting stream genre! Napaka pri določanju žanra toka! - + Error setting stream url! Napaka pri določanju url naslova toka! - + Error setting stream IRC! Napaka pri določanju IRC za tok! - + Error setting stream AIM! Napaka pri določanju AIM za tok! - + Error setting stream ICQ! Napaka pri določanju ICQ za tok! - + Error setting stream public! Napaka pri nastavljanju toka kot javnega! - + 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! - + Broadcasting at 96 kHz with Ogg Vorbis is not currently supported. Please try a different sample rate or switch to a different encoding. Oddajanje s frekvenco vzorčenja 96 kHz z uprabo kodeka Ogg Vorbisa trenutno ni podprto. Prosimo izberite drugo frekvenco vzorčenja ali drug enkoder. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Več o tem si preberite na https://github.com/mixxxdj/mixxx/issues/5701 - + Unsupported sample rate Frekvenca vzorčenja ni podprta - + Error setting bitrate Napaka pri določanju bitne hitrosti! - + Error: unknown server protocol! Napaka: neznan strežniški protokol! - + Error: Shoutcast only supports MP3 and AAC encoders Napaka: Shoutcast podpira le MP3 in AAC kodirnike - + Error setting protocol! Napaka pri določanju protokola! - + Network cache overflow Presežena količina za mrežni medpomnilnik! - + Connection error Napaka pri povezovanju - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Ena od povezav za oddajanje v živo je povzročila naslednjo napako:<br><b>Napaka pri povezavi '%1':</b><br> - + Connection message Sporočilo povezave - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Sporočilo povezave za oddajanje v živo '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Izgubljena povezava s pretočnim strežnikom in %1 neuspelih poskusov ponovnega povezovanja. - + Lost connection to streaming server. Izgubljena povezava s pretočnim strežnikom. - + Please check your connection to the Internet. Preverite internetno povezavo. - + Can't connect to streaming server Ni se mogoče povezati s pretočnim strežnikom. - + Please check your connection to the Internet and verify that your username and password are correct. Preverite internetno povezavo in poskrbite, da sta uprabniško ime in geslo pravilna. @@ -12620,7 +13078,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrirano @@ -12628,23 +13086,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device naprava - + An unknown error occurred Zgodila se je neznana napaka - + Two outputs cannot share channels on "%1" Dva izhoda si ne moreta deliti kanalov na "%1" - + Error opening "%1" Napaka pri odpiranju "%1" @@ -12712,22 +13170,22 @@ may introduce a 'pumping' effect and/or distortion. Reading track for fingerprinting failed. - + Branje skladbe za prepoznavo ni uspelo Identifying track through AcoustID - + Identifikacija skladbe preko Acoustid Could not identify track through AcoustID. - + Identifikacija skladbe preko Acoustid ni uspela Could not find this track in the MusicBrainz database. - + Skladba ni bila najdena v podatkovni baze MusicBrainz. @@ -12829,7 +13287,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vrtenje vinilne plošče @@ -13011,7 +13469,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Naslovnica @@ -13201,250 +13659,250 @@ may introduce a 'pumping' effect and/or distortion. Dokler je vklopljen postavi jakost za nizek filter na nič. - + Displays the tempo of the loaded track in BPM (beats per minute). Prikaže hitrost naložene skladbe v BPM (udarci na sekundo) - + Tempo Tempo - + Key The musical key of a track Tonaliteta - + BPM Tap Tapkanje tempa v BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Ob ponavljajočem se tapkanju prilagodi hitrost v BPM na hitrost tapkanja. - + Adjust BPM Down Prilagodi BPM navzdol - + When tapped, adjusts the average BPM down by a small amount. Ob tapkanju, spremeni povprečni BPM malo navzdol. - + Adjust BPM Up Prilagodi BPM navzgor - + When tapped, adjusts the average BPM up by a small amount. Ob tapkanju, spremeni povprečni BPM malo navzgor. - + Adjust Beats Earlier Zamakni dobe nazaj - + When tapped, moves the beatgrid left by a small amount. Ob tapkanju, pomakne ritmično mrežo malo v levo. - + Adjust Beats Later Zamakni dobe naprej - + When tapped, moves the beatgrid right by a small amount. Ob tapkanju, pomakne ritmično mrežo malo v desno. - + Tempo and BPM Tap Tempo in BPM tapkanje - + Show/hide the spinning vinyl section. Prikaži/skrij razdelek z vrtečim se vinilno ploščo - + Keylock Zaklep tonalitete - + Toggling keylock during playback may result in a momentary audio glitch. Preklapljanje zaklepa tonalitete med predvajanjem lahko povzroči kratko napako pri predvajanju - + Toggle visibility of Loop Controls Preklopi vidnost kontrol zanke - + Toggle visibility of Beatjump Controls Preklopi vidnost skokov po ritmu - + Toggle visibility of Rate Control Preklopi vidnost nadzora stopnje - + Toggle visibility of Key Controls Preklopi vidnost ključnih kontrol - + (while previewing) (med predposlušanjem) - + Places a cue point at the current position on the waveform. Vstavi cue iztočnico na trenutno pozicijo na valovni obliki. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). Zaustavi skladbo na cue iztočnici ali skoči na cue iztočnico in predvaja po spustu (CUP način). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). Določi cue iztočnico (Pioneer/Mixxx/Numark način), določi cue iztočnico in predvajaj po spustu (CUP način) ali predposlušaj od tam (Denon način). - + Is latching the playing state. zaklene stanje predvajanja. - + Seeks the track to the cue point and stops. Prevrti sklado do cue iztočnice in se zaustavi. - + Play Predvajaj - + Plays track from the cue point. Predvaja skladbo od cue izotčnice. - + 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!) (Ta preobleka bi morala biti posodobljena, da bi lahko uporabljali zaklpe sinhronizacije!) - + Enable Sync Lock Vklopi zaklep sinhronizacije - + Tap to sync the tempo to other playing tracks or the sync leader. Tapkaj za sinhronizacijo tempa glede na druge predvajane skladbe vodiča sinhronizacije. - + Enable Sync Leader Vklopi vodiča sinhornizacije - + When enabled, this device will serve as the sync leader for all other decks. Če je vklopljeno, bo ta naprava služila kot vodič sinhronizacije za vse ostale predvajalnike. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + To je pomembno, kadar je dinamična tempo skladba naložena v vodilni predvajalnik za sinhronizacijo. V tem primeru bodo druge sinhronizirane naprave prevzele spreminjajočo se hitrost. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. Spremeni hitrost predvajanja skladbe (vpliva tako na tempo, kot tudi tonaliteto). Če je vklopljen zaklep tonalitete, se spreminja zgolj tempo. - + Tempo Range Display Prikaz razpona tempa - + Displays the current range of the tempo slider. Prikaže trenutni razpon drsnika tempa. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). Ponovno naloži zadnjo izvrženo skladbo (iz poljubnega predvajalnika), če ni naložena nobena skladba. - + Delete selected hotcue. Izbriši izbrano hotcue iztočnico. - + Track Comment Komentar k skladbi - + Displays the comment tag of the loaded track. Prikaže oznako komentarja naložene skladbe. - + Opens separate artwork viewer. Odpre ločen prikaz naslovnic. - + Effect Chain Preset Settings Nastavitve predlog verig učinkov - + Show the effect chain settings menu for this unit. Prikaže meni z nastavitvami verige učinkov za to enoto. - + Select and configure a hardware device for this input Izberite in nastavite strojno napravo za ta vhod - + Recording Duration Dolžina snemanja Select and click: Show inline value editor - + Izberi in klikni: Prikaži urejevalnik vrednosti v vrstici @@ -13556,7 +14014,7 @@ may introduce a 'pumping' effect and/or distortion. Show/hide the stem mixing controls section - + Prikaži/skrij razdelek za upravljanje stem miksa @@ -13597,1013 +14055,1048 @@ may introduce a 'pumping' effect and/or distortion. If keylock is disabled, pitch is also affected. - + Če je zaklep ključa izklopljen, to vpliva na višino. Speed Up - + Psopeši Raises the track playback speed (tempo). - + Poveča hitrost predvajanja (tempo) Raises playback speed in small steps. - + Poveča hitrost predvajanja v majhnih korakih. Slow Down - + Upočasni Lowers the track playback speed (tempo). - + Zmanjša hitrost predvajanja (tempo) Lowers playback speed in small steps. - + Zmanjša hitrost predvajanja v majhnih korakih. Speed Up Temporarily (Nudge) - + Začasno pospeši (Porini) Holds playback speed higher while active (tempo). - + Ko je aktivno poveča hitrost predvajanja (tempo) Holds playback speed higher (small amount) while active. - + Ko je aktivno (rahlo) poveča hitrost predvajanja. Slow Down Temporarily (Nudge) - + Začasno upočasni (Porini) Holds playback speed lower while active (tempo). - + Ko je aktivno zmanjša hitrost predvajanja (tempo) Holds playback speed lower (small amount) while active. - + Ko je aktivno (rahlo) zmanjša hitrost predvajanja. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + Ob ponavljajočem se tapkanju prilagodi tempo na hitrost tapkanja v BPM. + + + + Click to open the tempo/BPM editor - - Tempo Tap + + It also shows a colored bar if Key colors are enabled in the Preferences. - - Rate Tap and BPM Tap + + The bar will be split vertically if the track's key is in between full keys. - + + Tempo Tap + Tapkanje tempa + + + + Rate Tap and BPM Tap + Tapkanje stopnje in BPM + + + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. Prilagodi ritmično mrežo za točno pol dobe. Uporabno le za skladbe s konstantnim tempom. - + Revert last BPM/Beatgrid Change Povrni zadnjo spremembo BPM/ritmične mreže - + Revert last BPM/Beatgrid Change of the loaded track. Povrni zadnjo spremembo BPM/ritmične mreže naložene skladbe. - - + + Toggle the BPM/beatgrid lock Preklopi zaklep BPM/ritmične mreže - + Tempo and Rate Tap - + Tapkanje tempa in stopnje - + Tempo, Rate Tap and BPM Tap - + Tapkanje tempa, stopnje in BPM - + Shift cues earlier Premakni iztočnice na prej - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. Premakne iztočnice, ki so uvožene iz Serata ali Rekordbox-a, če so rahlo časovno neusklajene. - + Left click: shift 10 milliseconds earlier Levi klik: premakni za 10 milisekund nazaj - + Right click: shift 1 millisecond earlier Desni klik: premakni za 1 milisekundo nazaj - + Shift cues later Premakni iztočnice na kasneje - + Left click: shift 10 milliseconds later Levi klik: premakni za 10 milisekund naprej - + Right click: shift 1 millisecond later Desni klik: premakni za 1 milisekundo naprej - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. Sem povlecite hotcue gumb za nadaljevanje predvajanja potem, ko izpustite Hotcue - + Hint: Change the default cue mode in Preferences -> Decks. - + Namig: Privzeti način za cue iztočnice se določi v Nastavitve -> Predvajalniki - + 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. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + Ponovno naloži zadnjo zamenjano skladbo. Če nobena skladba ni naložena naloži drugo zadnjo odstranjeno skladbo. + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. Če je hotcue iztočnica začetek zanke, preklopi zanko in skoči nanjo, če je zanka za položajem predvajanja. - + If the play position is inside an active loop, stores the loop as loop cue. - + Če se položaj predvajanja nahaja v aktivni zanki, se zanka shrani kot cue zanka. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. Povlecite za gumb na drug Hotcue gumb, da ga prestavite tja (spremeni se mu indeks). Če je druga hotcue iztočnica nastavljena, se zamenjata. - + Expand/Collapse Samplers - + Razširi/skrči vzorčevalnike - + Toggle expanded samplers view. - + Preklop velikosti prikaza vzorčevalnikov. - + Displays the duration of the running recording. Prikaže čas trajanja snemanja, ki se trenutno izvaja. - + Auto DJ is active Samodejni DJ je aktiven - + Red for when needle skip has been detected. - + Rdeče, če je bil zaznan preskok igle. - + Hot Cue - Track will seek to nearest previous hotcue point. Hot Cue - Skladba se bo prevrtela na najbližjo prejšnjo hotcue iztočnico - + Sets the track Loop-In Marker to the current play position. Postavi vhodno točko zanke na trenutno pozicijo predvajanja. - + Press and hold to move Loop-In Marker. Pritisnite in držite za premik vhodne točke zanke - + Jump to Loop-In Marker. Skoči na vhodno točko zanke. - + Sets the track Loop-Out Marker to the current play position. Postavi izhodno oznako zanke na trenutno pozicijo predvajanja. - + Press and hold to move Loop-Out Marker. Pritisnite in držite za premik izhodne oznake zanke. - + Jump to Loop-Out Marker. Skoči na izhodno oznako zanke. - + If the track has no beats the unit is seconds. Če steza nima dob, je enota v sekundah - + Beatloop Size Velikost ritmične zanke - + Select the size of the loop in beats to set with the Beatloop button. Izberi velikost zanke v dobah, ki se jo določi z gumbom Ritmičnazanka. - + Changing this resizes the loop if the loop already matches this size. Spreminjanje tega spremeni velikost zanke, če zanka že ustreza tej velikosti. - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. Prepolovi velikost obstoječe ritmične zanke ali prepolovi velikost naslednje ritmične zanke, ki se jo določi z gumbom Ritmična zanka - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. Podvoji velikost obstoječe ritmične zanke ali podvoji velikost naslednje ritmine zanke, ki se jo določi z gumbom Ritmična zanka. - + Start a loop over the set number of beats. Zaženi zanko preko nastavljenega števila dob. - + Temporarily enable a rolling loop over the set number of beats. Začasen vklop kotaleče se zanke preko nastavljenega števila dob. - + Beatloop Anchor Sidro ritmične zanke - + Define whether the loop is created and adjusted from its staring point or ending point. - + Določi ali je se zanka ustvari in spreminja glede na začetno ali končno točko. - + Beatjump/Loop Move Size Skok po ritmu/Velikost premika zanke - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. Izbor števila dob za skok ali premik zanke z gumboma Skok po ritmu naprej/nazaj. - + Beatjump Forward Skok po ritmu naprej - + Jump forward by the set number of beats. Skoči naprej za izbrano število dob. - + Move the loop forward by the set number of beats. Premakni zanko naprej za nastavljeno število dob. - + Jump forward by 1 beat. Skoči naprej za 1 dobo. - + Move the loop forward by 1 beat. Premakni zanko naprej za 1 dobo. - + Beatjump Backward Skok po ritmu nazaj - + Jump backward by the set number of beats. Skoči nazaj za izbrano število dob. - + Move the loop backward by the set number of beats. Premakni zanko nazaj za nastavljeno število dob. - + Jump backward by 1 beat. Skoči nazaj za 1 dobo. - + Move the loop backward by 1 beat. Premakni zanko nazaj za 1 dobo. - + Reloop Ponovi zanko - + If the loop is ahead of the current position, looping will start when the loop is reached. Če se zanka nahaja naprej od trenutne pozicije, se bo ponavljanje zanke začelo, ko bo dosežena zanka. - + Works only if Loop-In and Loop-Out Marker are set. Deluje samo, če sta postavljeni oznaki V zanko in Iz zanke - + Enable loop, jump to Loop-In Marker, and stop playback. Vklopi zanko, skoči na oznako V zanko in ustavi predvajanje. - + Displays the elapsed and/or remaining time of the track loaded. Prikaže pretekel in/ali preostali čas naložene skladbe. - + Click to toggle between time elapsed/remaining time/both. Kliknite za prekapljanje med preteklim in preostalim časom ali za prikaz obojega. - + Hint: Change the time format in Preferences -> Decks. Namig: časovni format se spreminja v Nastavitve -> Predvajalniki. - + Show/hide intro & outro markers and associated buttons. Prikaži/ skrij oznake za uvod in zaključek ter pripadajoče gumbe. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker Oznaka začetka uvoda - - - - + + + + If marker is set, jumps to the marker. Če je oznaka postavljena, skoči na oznako. - - - - + + + + If marker is not set, sets the marker to the current play position. Če oznaka ni postavljena, postavi oznako na trenutni položaj predvajanja. - - - - + + + + If marker is set, clears the marker. Če je oznaka postavljena, pobriše oznako. - + Intro End Marker Oznaka konca uvoda - + Outro Start Marker Outro start oznaka - + Outro End Marker Outro konec oznaka - + Mix Miks - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit Prilagodi mešanje surovega (vhodnega) signala z obogatenim (izhodnim) signalom efekt-enote - + D/W mode: Crossfade between dry and wet D/W način: Preliv med surovim in obogatenim - + D+W mode: Add wet to dry D+W način: Dodaj obogateno v surovo - + Mix Mode Način miksanja - + Adjust how the dry (input) signal is mixed with the wet (output) signal of the effect unit Prilagodi mešanje surovega (vhodnega) signala z obogatenim (izhodnim) signalom učinka - + 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. Surov/obogaten način (prekrižane linije): Regulator miksa prehaja med surovim in obogatenim zvokom. To se uporablja za spreminjanje zvoka skladbe s pomočjo izravnalnika in filter efektov. - + 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. Surov+obogaten način (flat dry line): Regulator miksa dodaja obogaten zvok v surovega. To se uporablja za spreminjanje zgolj z učinki obogatenega signala (wet) preko izravnalnika in filtrirnih učinkov. - + Route the main mix through this effect unit. Usmeri glavni miks skozi to efekt-enoto. - + Route the left crossfader bus through this effect unit. Usmeri vodilo levega navzkrižnega drsnika skozi to FX enoto. - + Route the right crossfader bus through this effect unit. Usmeri vodilo desnega navzkrižnega drsnika skozi to FX enoto. - + Right side active: parameter moves with right half of Meta Knob turn Desna stran je aktivna: parameter se spreminja z desno polovico zasuka meta-regulatorja - + Stem Label - + Stem oznaka - + Name of the stem stored in the stem file - + Ime stema shranjenega v stem datoteki - + Text is displayed in the stem color stored in the stem file - + Tekst se prikazuje v stem barvi, ki je shranjena v stem datoteki - + this stem color is also used for the waveform of this stem - + Ta stem barva se prav tako uporablja za valovno obliko tega stema - + Stem Mute - + Utišaj stem - + Toggle the stem mute/unmuted - + Preklop slišnosti tem-a - + Stem Volume Knob - + Stem regulator glasnosti - + Adjusts the volume of the stem - + Spreminjanje glasnosti stem-a - + Skin Settings Menu Menu za nastavitve preobleke - + Show/hide skin settings menu Prikaži/skrij nastavitve preobleke - + Save Sampler Bank Shrani banko vzorcev - + Save the collection of samples loaded in the samplers. Prikaži zbirko vzorcev, ki so naloženi v vzorčevalnik. - + Load Sampler Bank Naloži banko vzorcev - + Load a previously saved collection of samples into the samplers. Naloži predhodno shranjeno zbirko vzorcev v vzorčevalnik. - + Show Effect Parameters Prikaži parametre učinka - + Enable Effect Vklopi učinek - + Meta Knob Link Meta-regulator povezava - + Set how this parameter is linked to the effect's Meta Knob. Določi, kako je ta parameter povezana z meta regulatorjem efekta. - + Meta Knob Link Inversion Meta-regulator obrnjena povezava - + Inverts the direction this parameter moves when turning the effect's Meta Knob. Obrne smer v katero se premika ta parameter, ko obračamo meta regulator učinka. - + Super Knob Super regulator - + Next Chain Naslednja veriga - + Previous Chain Predhodna veriga - + Next/Previous Chain Naslednja/predhodna veriga - + Clear Počisti - + Clear the current effect. Izbriši trenutni učinek. - + Toggle Preklopi - + Toggle the current effect. Preklopi trenutni efekt. - + Next Naslednji - + Clear Unit Počisti enoto - + Clear effect unit. Počisti FX enoto - + Show/hide parameters for effects in this unit. Prikaži/skrij parametre za učinke v tej enoti. - + Toggle Unit Preklopi enoto - + Enable or disable this whole effect unit. Vklopi ali izklopi celotno FX enoto - + Controls the Meta Knob of all effects in this unit together. Hkrati nadzoruje meta gumb vseh učinkov v tej enoti. - + Load next effect chain preset into this effect unit. Naloži naslednjo predlogo verige učinkov v to FX enoto. - + Load previous effect chain preset into this effect unit. Naloži prejšnjo predlogo verige učinkov v to FX enoto. - + Load next or previous effect chain preset into this effect unit. Naloži naslednjo ali prejšnjo predlogo verige učinkov v to FX enoto. - - - - - - - - - + + + + + + + + + Assign Effect Unit Dodeli FX enoto - + Assign this effect unit to the channel output. Dodeli FX enoto izhodu kanala - + Route the headphone channel through this effect unit. Usmeri kanal za slušalke skozi to FX enoto - + Route this deck through the indicated effect unit. Usmeri ta predvajalnik skozi označeno FX enoto. - + Route this sampler through the indicated effect unit. Usmeri ta vzorčevalnik skozi označeno FX enoto. - + Route this microphone through the indicated effect unit. Usmeri ta mikrofon skozi označeno FX enoto. - + Route this auxiliary input through the indicated effect unit. Usmeri ta pomožni AUX vhod skozi označeno FX enoto - + The effect unit must also be assigned to a deck or other sound source to hear the effect. Da bi učinek slišali, mora biti FX enota dodeljena nekemu predvajalniku ali drugemu viru zvoka. - + Switch to the 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 the next or previous effect. Preklopi na naslednji ali prejšnji učinek - + Meta Knob Meta-regulator - + Controls linked parameters of this effect Nadzoruje povezane parametre tega efekta - + Effect Focus Button Gumb za fokusiranje učinka - + Focuses this effect. Fokus na ta učinek - + Unfocuses this effect. Odfokusira ta efekt - + Refer to the web page on the Mixxx wiki for your controller for more information. Za več informacij o vašem kontrolerju, preverite spletno stran na Mixxx wikiju. - + Effect Parameter Parametri učinka - + Adjusts a parameter of the effect. Spreminja parameter učinka. - + Inactive: parameter not linked Nekativno: parameter ni povezan - + Active: parameter moves with Meta Knob Aktivno: Parameter se spreminja z meta-regulatorjem - + Left side active: parameter moves with left half of Meta Knob turn Desna stran je aktivna: parameter se spreminja z levo polovico zasuka meta-regulatorja - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half Leva in desna stran sta aktivni: parameter se veča z levo polovico zasuka in manjša s desno polovico zasuka meta regulatorja - - + + Equalizer Parameter Kill Izniči parametre izravnalnika - - + + Holds the gain of the EQ to zero while active. Drži jakost izravnalnika na ničli, dokler je aktiven. - + Quick Effect Super Knob Super-regulator za hitri učinek. - + Quick Effect Super Knob (control linked effect parameters). Super regulator za hitre učinke (nadzoruje povezane parametre učinka). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Namig: Privzeti način za hitri efekt se doliči na Nastavitve -> Izravnalniki. - + Equalizer Parameter Parametri izravnalnika - + Adjusts the gain of the EQ filter. Prilagodi jakost za izravnalnik - + Hint: Change the default EQ mode in Preferences -> Equalizers. Namig: Privzeti EQ način se določi v Nastavitve -> Izravnalniki. - - + + Adjust Beatgrid Prestavi ritmično mrežo. - + Adjust beatgrid so the closest beat is aligned with the current play position. Prilagodi ritmilno mrežo, tako da je najbližja doba poravnana s trenutnim položajem predvajanja. - - + + Adjust beatgrid to match another playing deck. Prilagodi ritmično mrežo, da se bo ujemala z drugim dejavnim predvajalnikom. - + If quantize is enabled, snaps to the nearest beat. Če je kvantizacija vklopljena, skoči na najbližjo dobo. - + Quantize Kvantizacija - + Toggles quantization. Vklopi ali izklopi kvantizacijo. - + Loops and cues snap to the nearest beat when quantization is enabled. Ponavlja zanko in skače na izhodišče najbližje dobe, kadar je kvantizacija vklopljena. - + Reverse Obrni - + Reverses track playback during regular playback. Obrne smer predvajanja med predvajanjem. - + Puts a track into reverse while being held (Censor). Skladba se vrti nazaj, dokler je gumb pritisnjen (Censor) - + Playback continues where the track would have been if it had not been temporarily reversed. Nadaljuje tam, kjer bi skladba bila, če ne bi bila začasno predvajana nazaj. - - - + + + Play/Pause Predvajaj/Pavza - + Jumps to the beginning of the track. Skok na začetek skladbe. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Sinhronizira tempo (BPM) in fazo z drugo skladbo, če je tempo razbran iz obeh. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Sinhronizira tempo (BPM) z drugo skladbo, če je tempo razbran iz obeh. - + Sync and Reset Key Sinhroniziraj in ponastavi tonaliteto - + Increases the pitch by one semitone. Poveča višino za en polton. - + Decreases the pitch by one semitone. Zmanjša višino za en polton. - + Enable Vinyl Control Vklopi gramofonsko upravljanje - + When disabled, the track is controlled by Mixxx playback controls. Ko je izklopljeno, se skladbo nadozoruje preko Mixxx predvajalnih kontrol. - + When enabled, the track responds to external vinyl control. Kadar je vklopljeno, se skladba odziva na zunanjo gramofonsko upravljanje. - + Enable Passthrough Vklopi prehod signala - + Indicates that the audio buffer is too small to do all audio processing. Ponazarja, da je medpomnilnik za zvok premajhen, da bi lahko obdelal ves zvok. - + Displays cover artwork of the loaded track. Prikaže naslovnico naložene skladbe. - + Displays options for editing cover artwork. Prikaže možnosti urejanja naslovnice. - + Star Rating Ocena v zvezdicah - + Assign ratings to individual tracks by clicking the stars. Ocenjevanje posameznih skladb s klikanjem na zvezde. @@ -14738,33 +15231,33 @@ To se uporablja za spreminjanje zgolj z učinki obogatenega signala (wet) preko Moč pritajevanja mikrofona pri preglasitvi - + Prevents the pitch from changing when the rate changes. Prepreči spreminjanje višine, kadar se spremeni stopnja. - + Changes the number of hotcue buttons displayed in the deck Spremeni število gumbov hotcue iztočnic, ki so prikazane v predvajalniku. - + Starts playing from the beginning of the track. Začne predvajanje od začetka skladbe. - + Jumps to the beginning of the track and stops. Skoči na začetek skladbe in ustavi. - - + + Plays or pauses the track. Predvaja ali pavzira skladbo. - + (while playing) (ko predvaja) @@ -14784,215 +15277,215 @@ To se uporablja za spreminjanje zgolj z učinki obogatenega signala (wet) preko Merilnik glasnosti za glavni D kanal - + (while stopped) (ko je zaustavljen) - + Cue Cue iztočnica - + Headphone Slušalke - + Mute Tiho - + Old Synchronize Stara sinhronizacija - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Sinhronizira tempo glede na prvi predvajalnik (v številčnem zaporedju), ki predvaja skladbo in ima prebran tempo v BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Če noben predvajalnik ne igra, se sinhronizacija izvede glede na prvi predvajalnik, ki ima določen tempo v BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Držite vsaj sekundo, da bi zaklenili sinhornizacijo za ta predvajalnik. - + 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. Predvajalniki z zaklenjeno sinhronizacijo bodo igrali z enakim tempom. Predvajalniki, ki imajo vklopljeno tudi kvantizacijo bodo vedno imeli poravnane dobe. - + Resets the key to the original track key. Ponastavi tonaliteto na orignalno tonaliteto skladbe. - + Speed Control Nnadzor hitrosti - - - + + + Changes the track pitch independent of the tempo. Spremeni višino skladbe neodvisno od tempa. - + Increases the pitch by 10 cents. Poveča višino za 10 centov. - + Decreases the pitch by 10 cents. Zmanjša višino za 10 centov. - + Pitch Adjust Prilagajanje višine - + Adjust the pitch in addition to the speed slider pitch. Prilagodi višino skupaj z višino drsnika za višino. - + Opens a menu to clear hotcues or edit their labels and colors. Odpre meni za brisanje hotcue iztočnic ali urejanje njihovih oznak in barv. - + Drag this button onto a Play button while previewing to continue playback after release. Povlecite ta gumb na gumb za predvajanje med predposlušanjem, da nadaljujete s predvajanjem potem, ko ga izpustite. - + Dragging with Shift key pressed will not start previewing the hotcue. Če med vlečenjem držite shift, se ne bo vklopilo predposlušanje hotcue iztočnice. - + Record Mix Posnemi miks - + Toggle mix recording. Preklopi snemanje miksa. - + Enable Live Broadcasting Vklopi oddajanje v živo - + Stream your mix over the Internet. Prenašajte svoj miks pretočno preko spleta. - + Provides visual feedback for Live Broadcasting status: Omogoča vizualno povratno informacijo za status oddajanja v živo: - + disabled, connecting, connected, failure. onemogočeno, povezovanje, povezano, neuspešno. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Če je vklopljeno, predvajalnik neposredno predvaja zvok, ki prihaja na vhod gramofona. - + Playback will resume where the track would have been if it had not entered the loop. Predvajanje se bo nadaljevalo tam, kjer bi se skladba nahajala, če se ne bi zagnala zanka. - + Loop Exit Zapusti zanko - + Turns the current loop off. Izklopi trenutno zanko - + Slip Mode Drsni način - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Če je aktivno se predvajanje med izvajanjem zanke, drgnjenjem, igranjem nazaj, ... nadaljuje tišje, v ozadju. - + Once disabled, the audible playback will resume where the track would have been. Ko je enkrat izklopljeno, se predvajanje zvoka nadaljuje tam, kjer bi se skladba nahajala. - + Track Key The musical key of a track Tonaliteta skladbe - + Displays the musical key of the loaded track. Prikazuje glasbeno tonaliteto skladbe, ki je naložena. - + Clock Ura - + Displays the current time. Prikaže trenutni čas - + Audio Latency Usage Meter Merilnik deleža zvočne latence - + Displays the fraction of latency used for audio processing. Prikazuje delež latence, ki se porabi za procesiranje zvoka. - + A high value indicates that audible glitches are likely. Velika vrednost nakazuje na to, da so napake verjetne. - + Do not enable keylock, effects or additional decks in this situation. V takšni situaciji ne uporabljajte zaklepa tonalitete, učinkov ali dodatnih predvajalnikov. - + Audio Latency Overload Indicator Indikator presežene zvočne latence @@ -15032,259 +15525,259 @@ To se uporablja za spreminjanje zgolj z učinki obogatenega signala (wet) preko Aktivirajte gramofonsko upravljanje iz Menu -> Možnosti. - + Displays the current musical key of the loaded track after pitch shifting. Prikazuje trenutno glasbeno tonaliteto naložene skladbe po spreminjanju višine. - + Fast Rewind Hitro previjanje nazaj - + Fast rewind through the track. Hitro previjanje nazaj skozi skladbo. - + Fast Forward Hitro previjanje naprej - + Fast forward through the track. Hitro vrtenje naprej skozi skladbo. - + Jumps to the end of the track. Skoči na konec skladbe. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Določi višino na tonaliteto, ki omogoča harmoničen prehod iz druge skladbe. Za to morata biti prepoznani tonaliteti v obeh pripadajočih predvajalnikih. - - - + + + Pitch Control Nadzor višine - + Pitch Rate Sprememba višine - + Displays the current playback rate of the track. Prikaže trenutno stopnjo predvajanja za skladbo. - + Repeat Ponavljanje - + When active the track will repeat if you go past the end or reverse before the start. Če je aktivno, se bo skldaba ponovila, če greste preko konca ali se bo obrnila pred štartom. - + Eject Izvrzi - + Ejects track from the player. Izvrže skladbe iz predvajalnika. - + Hotcue Hotcue iztočnica - + If hotcue is set, jumps to the hotcue. Če je postavljena hotcue iztočnica, skoči na njo. - + If hotcue is not set, sets the hotcue to the current play position. Če hotcue iztočnica ni postavljena, jo postavi na trenutno pozicijo predvajanja. - + Vinyl Control Mode Način gramofonskega upravljanja - + Absolute mode - track position equals needle position and speed. Absolutni način - pozicija v skladbi sovpada s pozicijo igle in hitrostjo. - + Relative mode - track speed equals needle speed regardless of needle position. Relativni način - hitrost skladbe je enaka hitrosti igle, ne glede na pozicijo igle. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Konstantni način - hitrost skladbe je enaka zadnji poznani enakomerni hitrosti, ne glede na stanje igle. - + Vinyl Status Status gramofona - + Provides visual feedback for vinyl control status: Daje vizualno povratno informacijo o statusu gramofonskega upravljanja: - + Green for control enabled. Zelena, če je kontrola vklopljena - + Blinking yellow for when the needle reaches the end of the record. Utripajoča rumena, kadar igla doseže konec plošče. - + Loop-In Marker Oznaka V zanko - + Loop-Out Marker Oznaka iz zanke - + Loop Halve Polovična zanka - + Halves the current loop's length by moving the end marker. Razpolovi trenutno dolžino zanke, tako da premakne zaključno oznako - + Deck immediately loops if past the new endpoint. Predvajalnik takoj zažene zanko, če gre mimo nove zaključne oznake. - + Loop Double Dvojna zanka - + Doubles the current loop's length by moving the end marker. Podvoji trenutno dolžino zanke, tako da premakne zaključno oznako. - + Beatloop Ritmična zanka - + Toggles the current loop on or off. Vklopi ali izklopi trenutno zanko - + Works only if Loop-In and Loop-Out marker are set. Deluje le, če sta postavljeni oznaki V zanko in Iz zanke. - + Vinyl Cueing Mode Gramofonski način cue iztočnic - + Determines how cue points are treated in vinyl control Relative mode: Določa, kako bodo cue iztočnice obravnavane z relativnem načinu gramofonskega načina: - + Off - Cue points ignored. Izklop - cue iztočnice se ne upoštevajo - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Ena cue iztočnica - Če se igla spusti za cue iztočnico, se bo skladba prevrtela na to izotčnico. - + Track Time Čas skladbe - + Track Duration Dolžina skladbe - + Displays the duration of the loaded track. Prikaže dolžino naložene skladbe. - + Information is loaded from the track's metadata tags. Informacije so naložene iz metapodatkov skladbe. - + Track Artist Izvajalec skladbe - + Displays the artist of the loaded track. Prikaže izvajalca naložene skladbe. - + Track Title Naslov skladbe - + Displays the title of the loaded track. Prikaže naslov naložene skladbe. - + Track Album Album skladbe - + Displays the album name of the loaded track. Prikaže album naložene skladbe. - + Track Artist/Title Izvajalec/Naslov skladbe - + Displays the artist and title of the loaded track. Prikaže izvajalca in naslov naložene skladbe. @@ -15317,22 +15810,22 @@ To se uporablja za spreminjanje zgolj z učinki obogatenega signala (wet) preko Replace Existing File? - + Zamenjam obstoječo datoteko? "%1" already exists, replace? - + "%1" že obstaja. Prepišem? &Replace - + &Zamenjaj Apply to all files - + Uporabi za vse datoteke @@ -15431,7 +15924,7 @@ To se uporablja za spreminjanje zgolj z učinki obogatenega signala (wet) preko frameSwapped-signal driven phase locked loop - + Na frameSwapped-signal temelječa fazno zaklenjena zanka @@ -15515,47 +16008,75 @@ Tega ni mogoče razveljaviti! WCueMenuPopup - + Cue number Številka iztočnice - + Cue position Položaj iztočnice - + Edit cue label Uredi oznako cue iztočnice - + Label... Oznaka... - + Delete this cue Izbriši to iztočnico - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size - - Left-click: Use the old size or the current beatloop size as the loop size - Levi klik: Uporabi staro velikost trenutne ritmične zanke za velikost zanke + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + - - Right-click: Use the current play position as loop end if it is after the cue + + Turn this cue into a saved backward jump (one shot loop). - + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 Hotcue iztočnica #%1 @@ -15570,7 +16091,7 @@ Tega ni mogoče razveljaviti! Rename Preset - + Preimenuje predlogo @@ -15680,323 +16201,363 @@ Tega ni mogoče razveljaviti! + Search in Current View... + Iskanje v trenutnem prikazu... + + + + Search for tracks in the current library view + Iskanje skladb v trenutnem prikazu knjižnice + + + + Ctrl+f + Ctrl+f + + + + Search in Tracks Library... + Iskanje v knjižnici skladb... + + + + Search in the internal track collection under "Tracks" in the library + Iskanje v interni zbirki skladb pod "Skladbe" v knjižnici + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + Create &New Playlist Ustvari &nov seznam predvajanja - + Create a new playlist Ustvari nov seznam predvajanja - + Ctrl+n Ctrl+n - + Create New &Crate Ustvari nov &zaboj - + Create a new crate Ustvari nov zaboj - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Prikaz - + Auto-hide menu bar - + Samodejno skrij meni - + Auto-hide the main menu bar when it's not used. - + Samodejno skrije meni, ko ni v rabi. - + May not be supported on all skins. Morda ni podprto v vseh preoblekah. - + Show Skin Settings Menu Prikaži nastavitve za preobleko - + Show the Skin Settings Menu of the currently selected Skin Prikaže menu z nastavitvami za trenutno preobleko. - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Prikaži mikrofonski razdelek - + Show the microphone section of the Mixxx interface. V vmesniku Mixxx prikaži razdelek za upravlljanje mikrofonov. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Prikaži razdelek za gramofonsko upravljanje - + Show the vinyl control section of the Mixxx interface. V vmesniku Mixxx prikaži razdelek za gramofonsko upravljanje. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Prikaži predvajalnik za predposlušanje - + Show the preview deck in the Mixxx interface. V Mixxx vmesniku prikaže predvajalnik za predposlušanje. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Prikaži naslovnico - + Show cover art in the Mixxx interface. V Mixxx vmesniku prikaže naslovnice. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Povečaj zbirko - + Maximize the track library to take up all the available screen space. Poveča zbirko skladb preko celega zaslona - + Space Menubar|View|Maximize Library + Prostor + + + + Show Auto DJ - + + Switch to the Auto DJ view. + + + + &Full Screen &Cel zaslon - + Display Mixxx using the full screen Prikaže Mixxx preko celega zaslona - + &Options &Možnosti - + &Vinyl Control &Gramofonsko upravljanje - + Use timecoded vinyls on external turntables to control Mixxx Upravljanje Mixxx z uporabo časovno kodiranih vinilnih plošče na zunanjih gramofonih. - + Enable Vinyl Control &%1 Vklopi gramofonsko upravljanje &%1 - + &Record Mix &Snemaj miks - + Record your mix to a file Snema miks v datoteko. - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Vklopi o&ddajanje v živo - + Stream your mixes to a shoutcast or icecast server Prenašaj svoje mikse na Shoutcast ali Icecast strežnik - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Vklopi &bližnjice na tipkovnici - + Toggles keyboard shortcuts on or off Vklopi ali izklopi bližnjice na tipkovnici. - + Ctrl+` Ctrl+` - + &Preferences &Nastavitve - + Change Mixxx settings (e.g. playback, MIDI, controls) Spremeni Mixxx nastavitve (npr. predvajanje, MIDI, kontrole) - + &Developer &Razvijalec - + &Reload Skin &Naloži preobleko - + Reload the skin Ponovno naloži preobleko - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Razvojna &orodja - + Opens the developer tools dialog Odpre dialog razvojnih orodji - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket Stat.: &Eksperimentalno vedro - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Vklopi eksperimentalni način delovanja. Zbira statistiko v EXPERIMENT vedro za sledenje . - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket Stat.: &Osnovno vedro - + Enables base mode. Collects stats in the BASE tracking bucket. Vklopi bazični način delovanja. Statistiko zbira v osnovno vedro za sledenje. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled Vklopi raz&hroščevalnik - + Enables the debugger during skin parsing Med preverjanjem preobleke vklopi razhroščevalnik. - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Pomoč - + Show Keywheel menu title Prikaži kvintni krog @@ -16013,74 +16574,74 @@ Tega ni mogoče razveljaviti! Izvozi knjižnico v Engine DJ format - + Show keywheel tooltip text Prikaže kvintni krog - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Podpora &skupnosti - + Get help with Mixxx Poiščite pomoč za Mixxx - + &User Manual &Uporabniška navodila - + Read the Mixxx user manual. Preberite navodila za rabo Mixxx - + &Keyboard Shortcuts &Bližnjice na tipkovnici - + Speed up your workflow with keyboard shortcuts. Pohitrite delo z rabo bližnjic. - + &Settings directory Mapa za na&stavitve - + Open the Mixxx user settings directory. Odpre mapo z nastavitvami za Mixxx. - + &Translate This Application Prevedi &to aplikacijo - + Help translate this application into your language. Pomagajte prevesti ta program v svoj jezik. - + &About O progr&amu - + About the application O programu @@ -16088,25 +16649,25 @@ Tega ni mogoče razveljaviti! WOverview - + Passthrough 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... @@ -16115,25 +16676,13 @@ Tega ni mogoče razveljaviti! WSearchLineEdit - - Clear input - Clear the search bar input field - Počisti vhod - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Iskanje - + Clear input Počisti vhod @@ -16144,93 +16693,87 @@ Tega ni mogoče razveljaviti! Iskanje... - + Clear the search bar input field Počisti vnos iskalnika - - Enter a string to search for - Tukaj vnesite iskalni niz + + Return + Vrni se - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Uporabite operatorje, kot so bpm:115-128, atrist:BooFar,-year:1990 + + Enter a string to search for. + Vnesite iskalni niz. - - For more information see User Manual > Mixxx Library - Za več informaciji glej Uporabniška navodila>Mixxx zbirka + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + Uporabite operatorje, kot so bpm:115-128, atrist:BooFar,-year:1990. - Shortcut - Bližnjica + See User Manual > Mixxx Library for more information. + Za več podatkov glej User Manual > Mixxx Library - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + Fokus/izberi vse (iskanje v trenutnem prikazu) - - Focus - Give search bar input focus - Fokus + + Focus/Select All (Search in 'Tracks' library view) + Fokus/izberi vse (iskanje v prikazu knjižnice 'Skladbe') - - - Ctrl+Backspace - + + Additional Shortcuts When Focused: + Dodatne bljižnice, ko je fokusirano: - Shortcuts - Bližnjice + Trigger search before search-as-you-type timeout or focus tracks view afterwards + Sproži iskanje pred iztekom časa za išči-ko-tipkaš ali po tem fokusiraj prikaz skladb - Return - Vrni se + Esc or Ctrl+Return + Esc ali Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - Sproži iskanje pre iztekom časa za išči-ko-tipkaš ali po tem skoži na prikaz skladbe + Immediately trigger search and focus tracks view + Exit search bar and leave focus + Takoj zaženi iskanje in fokusiraj prikaz skladb - + Ctrl+Space - + ctrl+preslednica - + Toggle search history Shows/hides the search history entries Preklopi zgodovino iskanj - + Delete or Backspace - + Delete ali Backspace - - Delete query from history - Izbris poizvedbe iz zgodovine + + in search history + v zgodovini iskanj - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Zapusti iskanje + + Delete query from history + Izbris poizvedbe iz zgodovine @@ -16308,631 +16851,646 @@ Tega ni mogoče razveljaviti! &Search selected - + &Iskanje izbranih WTrackMenu - + Load to Naloži v - + Deck Predvajalnik - + Sampler Vzročevalnik - + Add to Playlist Dodaj v seznam predvajanja - + Crates Zaboji - + Metadata Metapodatki - + Update external collections Osveži zunanje zbirke - + Cover Art Naslovnica - + Adjust BPM Prilagodi BPM - + Select Color Izberi barvo - - + + Analyze Analiziraj - - + + Delete Track Files Izbriši datoteke skladbe - + Add to Auto DJ Queue (bottom) Dodaj k zaporedju samodejnega DJ-a (na dno) - + Add to Auto DJ Queue (top) Dodaj k zaporedju samodejnega DJ-a (na vrh) - + Add to Auto DJ Queue (replace) Dodaj v zaporedje samodejnega DJ-a (zamenjaj) - + Preview Deck Predvajalnik za predposlušanje - + Remove Odstrani - + Remove from Playlist Odstrani iz seznama predvajanja - + Remove from Crate Odstrani iz zaboja - + Hide from Library Skrij iz zbirke - + Unhide from Library Pokaži v zbirki - + Purge from Library Pobriši iz zbirke - + Move Track File(s) to Trash Premakni datoteke skladb(e) v koš - + Delete Files from Disk Izbriši datoteke z diska - + Properties Lastnosti - + Open in File Browser Odpri v brskalniku datotek - + Select in Library Izberi v knjižnici - + Import From File Tags naloži iz oznak v datoteki - + Import From MusicBrainz Naloži iz MusicBrainz - + Export To File Tags Izvozi oznake v datoteko - + BPM and Beatgrid BPM in ritmična mreža - + Play Count Števec predvajanj - + Rating Ocena - + Cue Point Cue iztočnica - - + + Hotcues Hotcue iztočnice - + Intro Uvod - + Outro Zaključek - + Key Tonaliteta - + ReplayGain ReplayGain - + Waveform Valovna oblika - + Comment Komentar - + All Vse - + Sort hotcues by position (remove offsets) Sortiranje hotcue iztočnic po položaju (odstrani odmike) - + Sort hotcues by position Sortiranje hotcue iztočnic po položaju - + Lock BPM Zakleni BPM - + Unlock BPM Odkleni BPM - + Double BPM Podvoji BPM - + Halve BPM Razpolovi BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat Pomakni ritmično mrežo za pol dobe - + Reanalyze Ponovno analiziraj - + Reanalyze (constant BPM) Ponovno analiza (konstantni BPM) - + Reanalyze (variable BPM) Ponovno analiza (spremenljivi BPM) - + Update ReplayGain from Deck Gain Posodobi ReplayGain glede na jakost predvajalnika - + Deck %1 Predvajalnik %1 - + Importing metadata of %n track(s) from file tags Uvažanje metapodatkov %n skladbe iz oznak v datotekiUvaž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 datotekeOznač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 - + Undo BPM/beats change of %n track(s) Razveljavi spremembo BPM/dob za %n skladboRazveljavi spremembo BPM/dob za %n skladbiRazveljavi spremembo BPM/dob za %n skladbeRazveljavi spremembo BPM/dob za %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 rating of %n track(s) - + Nastavitev ocen za %n skladboNastavitev ocen za %n skladbiNastavitev ocen za %n skladbeNastavitev ocen za %n skladb - + Setting color of %n track(s) Določanje barve %n skladbeDoločanje barve %n skladbDoločanje barve %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 skladbeBrisanje ocen za %1 skladbBrisanje ocen za %1 skladbBrisanje ocen za %1 skladb - + Clearing comment of %n track(s) Čiščenje komentarjev za %n skladbeČiščenje komentarjev za %n skladbČiščenje komentarjev za %n skladbČiščenje komentarjev za %n skladb - + Removing main cue from %n track(s) Odstranjevanje glavne iztočnice %n skladbOdstranjevanje 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 - + Sorting hotcues of %n track(s) by position (remove offsets) Sortiranje hotcue iztočnic %n skladbe po položaju (odstrani odmike)Sortiranje hotcue iztočnic %n skladb po položaju (odstrani odmike)Sortiranje hotcue iztočnic %n skladb po položaju (odstrani odmike)Sortiranje hotcue iztočnic %n skladb po položaju (odstrani odmike) - + Sorting hotcues of %n track(s) by position Sortiranje hotcue iztočnic %n skladbe po položajuSortiranje hotcue iztočnic %n skladb po položajuSortiranje hotcue iztočnic %n skladb po položajuSortiranje hotcue iztočnic %n skladb po položaju - + 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 jakosti ponovitev %n skladbePonastavljanje jakosti ponovitev %n skladbPonastavljanje jakosti ponovitev %n skladbPonastavljanje jakosti 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 - + Move these files to the trash bin? - + Premaknem te datoteke v koš? - + Permanently delete these files from disk? Trajno izbrišem datoteke z diska? - - + + This can not be undone! Tega ni mogoče razveljaviti! - + Cancel Prekliči - + Delete Files Izbriši datoteke - + Okay V redu - + Move Track File(s) to Trash? Premaknem datoteke skladb(e) v koš? - + Track Files Deleted Datoteke skladb so bile izbrisane - + Track Files Moved To Trash Datoteke skladb so bile premaknjen v koš - + %1 track files were moved to trash and purged from the Mixxx database. %1 skladb je bilo premaknjenih v koš in izbrisanih iz Mixxx baze podatkov. - + %1 track files were deleted from disk and purged from the Mixxx database. %1 datoek skladb je bilo izbrisanih z diska in odstranjenih iz Mixxx baze podatkov - + Track File Deleted Datoteke skladbe je bila izbrisana - + Track file was deleted from disk and purged from the Mixxx database. Datoteka skladbe je bila izbirsana z diska in odtrsanjena iz Mixxx zbirke podatkov - + The following %1 file(s) could not be deleted from disk Teh %1 datotek ni bilo mogoče izbrisati z diska - + This track file could not be deleted from disk Te glasbene datoteke ni bilo mogoče izbrisati z diska - + Remaining Track File(s) Preostalo zvočnih datotek - + Close Zapri - + Clear Reset metadata in right click track context menu in library - + Počisti - + Loops Zanke - + Clear BPM and Beatgrid Počisiti BPM in ritmično mrežo - + Undo last BPM/beats change Povrni zadnjo spremembo BPM/ritmične mreže - + Move this track file to the trash bin? - + Premaknem datoteko te skladbe v koš? - + Permanently delete this track file from disk? - + Trajno izbrišem to skladbo z diska? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + Vsi predvajalniki, ki imajo naloženo to skladbo, bodo zaustavljeni, skladbe pa bodo odstranjene iz njih. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Vsi predvajalniki, ki imajo naloženo to skladbo, bodo zaustavljeni, skladbe pa bodo odstranjene iz njih. - + Removing %n track file(s) from disk... Odstranjevanje %n skladb z diska... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Opomba: Če ste v računalniškem alio snemalnem prikazu, morate ponovno klikniti na trenutni prikaz, da vidite spremembe. - + Track File Moved To Trash Datoteka skladbe je premaknjena v koš - + Track file was moved to trash and purged from the Mixxx database. Datoteka skladbe je bila premaknjena v koš in izbrisana iz Mixxx baze podatkov. - + Don't show again during this session - + Tega ne sprašuje med to sejo - + The following %1 file(s) could not be moved to trash Teh %1 datotek(e) ni bilo mogoče premakniti v koš - + This track file could not be moved to trash Te datoteke skladbe ni bilo mogoče premakniti v koš + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + 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 @@ -16942,7 +17500,7 @@ Tega ni mogoče razveljaviti! title - + naslov @@ -16950,73 +17508,73 @@ Tega ni mogoče razveljaviti! Load for stem mixing - + Naloži za stem miksanje Load pre-mixed stereo track - + Naloži vnaprej zmiksano stereo skladbo Load the "%1" stem - + Naloži stem "%1" Load multiple stem into a stereo deck - + V stereo predvajalnik naloži več stem-ov Select stems to load - + Izbira stemov za nalaganje Release "CTRL" to load the current selection - + Spustite "ctrl" za nalaganje trenutnega izobra Use "CTRL" to select multiple stems - + Uporabite "ctrl" za izbor več stemov WTrackTableView - + Confirm track hide Potrditev skritja skladbe - + Are you sure you want to hide the selected tracks? Ali res želite skriti izbrane skladbe? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Ali res želite odstraniti izbrane skladbe iz zaporedja Samodejnega DJ? - + Are you sure you want to remove the selected tracks from this crate? Ali res želite odstraniti izbrane skladbe iz tega zaboja? - + Are you sure you want to remove the selected tracks from this playlist? Ali res želite odstraniti izbrane skladbe s tega seznama? - + Don't ask again during this session Ne sprašuj med to sejo - + Confirm track removal Potrditev odstranitve skladb @@ -17024,14 +17582,14 @@ Tega ni mogoče razveljaviti! WTrackTableViewHeader - + Show or hide columns. Prikaži ali skrij stolpce. - + Shuffle Tracks - + Premešaj skladbe @@ -17067,22 +17625,22 @@ Tega ni mogoče razveljaviti! 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. @@ -17102,17 +17660,17 @@ Pritisnite OK za izhod. Crates - + Zaboji Playlists - + Seznami predvajanja Selected crates/playlists - + Izbrani zabojniki/seznami predvajanja @@ -17191,7 +17749,8 @@ Pritisnite OK za izhod. Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message - + Neuspešen izvoz skladbe %1-%2: +%3 @@ -17204,7 +17763,7 @@ Pritisnite OK za izhod. Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Izvoženo skladb:%1; zabojev:%2; seznamov: %3 @@ -17238,6 +17797,24 @@ Pritisnite OK za izhod. Omrežna zahteva ni bila zagnana + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17246,4 +17823,27 @@ Pritisnite OK za izhod. Ni naloženih učinkov. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_sn.qm b/res/translations/mixxx_sn.qm index 184c87ebb61f..538b59d770c6 100644 Binary files a/res/translations/mixxx_sn.qm and b/res/translations/mixxx_sn.qm differ diff --git a/res/translations/mixxx_sn.ts b/res/translations/mixxx_sn.ts index e688c2a04bcc..60cd809ab364 100644 --- a/res/translations/mixxx_sn.ts +++ b/res/translations/mixxx_sn.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Homwe - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Bvisa homwe iyi senzvimbo yemimhanzi - + Auto DJ Zviridze wega - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Shandisa homwe iyi senzvimbo yemimhanzi @@ -149,28 +157,28 @@ 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 @@ -180,12 +188,12 @@ Shandura zita - + Lock Kiya - + Duplicate Dzokorora @@ -206,24 +214,24 @@ 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 @@ -233,70 +241,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Chidhindo chemusi @@ -317,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Tatadza kuridza rwiyo. @@ -325,137 +340,142 @@ BaseTrackTableModel - + Album Bhama - + Album Artist Muimbi webhama - + Artist Muimbi - + Bitrate Bitrate - + BPM Mutinhimira - + Channels - + Color - + Comment Pfungwa - + Composer Munyori - + Cover Art Mufananidzo webhama - + Date Added Musi wekuunzwa - + Last Played - + Duration Hurebu - + Type Rudzi - + Genre Rudzi - + Grouping Maunganidzirwo - + Key Key - + Location Nzvimbo - + + Overview + + + + Preview Teerera - + Rating Rikudzo - + ReplayGain Hudzamu Hwerwiyo - + Samplerate - + Played Rwaridzwa - + Title Zita - + Track # Nziyo # - + Year Gore - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -477,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Tatadza kushandisa password yako yakachengetedzwa: keychain yaramba kubatika. - + Secure password retrieval unsuccessful: keychain access failed. Tatadza kuburitsa password yako yakachengetedzwa: keychain yaramba kubatika. - + Settings error MaSettings aramba kuita - + <b>Error with settings for '%1':</b><br> <b>Pane zvanetsa nema settings e '%1':</b><br> @@ -543,67 +563,77 @@ BrowseFeature - + Add to Quick Links Kanda kune kweZvepedo - + Remove from Quick Links Bvisa kune Zvepedo - + Add to Library Isa mubumbiro - + Refresh directory tree - + Quick Links Zvepedo - - + + Devices maDevice - + Removable Devices maDevice anobvisika - - + + Computer Kompiyuta - + 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 - + "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. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -713,12 +743,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. @@ -749,87 +779,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -839,27 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -952,2535 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Output yemaHeadphone - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Mupaka %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Mupaka wenzwisa %1 - + Microphone %1 Maikrophone %1 - + Auxiliary %1 Auxiliary %1 - + Reset to default Dzosera padzatanga zviri - + Effect Rack %1 MaEffect %1 - + Parameter %1 Paramita %1 - + Mixer Mixa - - + + Crossfader Krosfedha - + Headphone mix (pre/main) Mix yekumaHeadphone (nzwisa/kunze) - + Toggle headphone split cueing Batidza kuti unzwe kumaHeaphone zvisinga nzwikwe nechaunga - + Headphone delay Delay yekumaHeadphone - + Transport Tiranzipoti - + Strip-search through track Mhanyisa pakati perwiyo - + Play button Bhatani rekuridza - - + + Set to full volume Isa vhoriume kumusoro - - + + Set to zero volume Nyararidza vhoriume - + Stop button Bhatani rekumisa rwiyo - + Jump to start of track and play Enda panotangira rwiyo uridze - + Jump to end of track Enda panoperera rwiyo - + Reverse roll (Censor) button Bhatani rekudzora kumashure uchiridza (kusensa) - + Headphone listen button Bhatani rekudzwisa kumaHeadphone - - + + Mute button Bhatani rekunyararidza - + Toggle repeat mode Batidza dzokororo - - + + 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 - + Toggle slip mode Batidza slip mode - - + + BPM Mutinhimira - + Increase BPM by 1 Wedzera mutinhimira ne 1 - + Decrease BPM by 1 Dzikisa mutinhimira ne 1 - + Increase BPM by 0.1 Wedzera mutinhimira ne 0.1 - + Decrease BPM by 0.1 Dzikisa mutinhimira ne 0.1 - + BPM tap button Bhatani rekubata mutinhimira - + Toggle quantize mode Batidza nangiso - + One-time beat sync (tempo only) Sync yemutinhimira (kufambisa chete) - + One-time beat sync (phase only) Sync yemutinhimira (kuenderana chete) - + Toggle keylock mode Batidza keylock - + Equalizers 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 - + Slot %1 Slot %1 - + Headphone Mix Mix yekumaHeadphone - + Headphone Split Cue Mateerero ekumaHeadphone - + Headphone Delay Delay yekumaHeadphone - + Play Ridza - + Fast Rewind Dzora shure nekukurumidza - + Fast Rewind button Bhatani rekudzora shure nekukurumidza - + Fast Forward Mhanyisa mberi - + Fast Forward button Bhatami rekumhanyisa mberi - + Strip Search - + Play Reverse Ridza zvichidzokera shure - + Play Reverse button Bhatani rekuridza zvichidzokera shure - + Reverse Roll (Censor) Dzora kumashure uchiridza (kusensa) - + Jump To Start Jambira pekutangidza - + Jumps to start of track Enda panotangira rwiyo - + Play From Start Ridza kubvira pekutangira - + Stop Mira - + Stop And Jump To Start Mira uende pekutangidza - + Stop playback and jump to start of track Mira kuridza uende panotangira rwiyo - + Jump To End Enda kumagumo - + Volume Vhoriume - - - + + + Volume Fader Pekuwedzera nekudzora vhoriume - - + + Full Volume Vhoriume yakaguma - - + + Zero Volume Vhoriume yakanyarara - + Track Gain Simbiso yenziyo - + Track Gain knob Chesimbiso yenziyo - - + + Mute Nyararidza - + Eject Bvisa - - + + Headphone Listen Teerero yekumaHeadphone - + Headphone listen (pfl) button Bhatani rekudzwisa kumaHeadphone (pfl) - + Repeat Mode Dzokororo - + Slip Mode Slip Mode - - + + Orientation Nangiso - - + + Orient Left Nangisa kuruboshwe - - + + Orient Center Nangisa pakati - - + + Orient Right Nangisa kurudyi - + BPM +1 Mutinhimira +1 - + BPM -1 Mutinhimira -1 - + BPM +0.1 Mutinhimira +0.1 - + BPM -0.1 Mutinhimira -0.1 - + BPM Tap Bata Mutinhimira - + Adjust Beatgrid Faster +.01 Wedzera beatgrid +.01 - + Increase track's average BPM by 0.01 Wedzera mutinhimira werwiyo ne 0.01 - + Adjust Beatgrid Slower -.01 Dzora beatgrid -.01 - + Decrease track's average BPM by 0.01 Dzikisa mutinhimira werwiyo ne 0.01 - + Move Beatgrid Earlier Fambisa beatgrid kuruboshwe mbichana - + Adjust the beatgrid to the left Fambisa beatgrid kuruboshwe - + Move Beatgrid Later Fambisa beatgrid kurudyi mbichana - + Adjust the beatgrid to the right Fambisa beatgrid kurudyi - + Adjust Beatgrid Gadzirisa beatgrid - + Align beatgrid to current position Nangisa beatgrid nepane rwiyo izvozvi - + Adjust Beatgrid - Match Alignment Gadzirisa beatgrid - teedzera nanganiso - + Adjust beatgrid to match another playing deck. Gadzirisa beatgrid kufananidza nerwiyo ririkurira. - + Quantize Mode Nanganidzo - + Sync Sync - + Beat Sync One-Shot Synca one-shot pabeat - + Sync Tempo One-Shot Synca one-shot patempo - + Sync Phase One-Shot 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 - + High EQ Matwita - + Mid EQ Mid - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 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 - + 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 - + 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 - + Headphone Gain Udzamu hwekumaHeadphone - + Headphone gain Udzamu hwekumaHeadphone - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + Playback Speed Mamhanyiro ekuridza - + Playback speed control (Vinyl "Pitch" slider) Chekushangura mamhanyiro ekuridza (Pitch slider yemarekodhi) - + 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) - - + + Adjust %1 Gadzirisa %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Dzima %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3493,6 +3583,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3595,32 +3838,32 @@ trace - Above + Profiling messages 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. @@ -3628,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3664,13 +3907,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Bvisa - + Create New Crate Gadzira Homwe Itsva @@ -3680,55 +3923,55 @@ trace - Above + Profiling messages 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 @@ -3738,74 +3981,74 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) Mutsetse weM3U (*.m3u) - + 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. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. - + A crate by that name already exists. @@ -3900,12 +4143,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4024,72 +4267,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Auto DJ Fade Modes Full Intro + Outro: @@ -4120,80 +4363,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Zviridze wega - + Shuffle - + 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. @@ -4416,37 +4659,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4485,17 +4728,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4691,122 +4934,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Zvaramba kuita - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4819,27 +5079,27 @@ Two source connections to the same server that have the same mountpoint can not Mamiriro ezveKushamarara - + Mixxx Icecast Testing - + Public stream - + http://www.mixxx.org - + Stream name - + 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. @@ -4879,67 +5139,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website - + Live mix - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Rudzi - + Use UTF-8 encoding for metadata. - + Description Dudziro @@ -4965,42 +5230,42 @@ Two source connections to the same server that have the same mountpoint can not - + Server connection - + Type Rudzi - + Host - + Login - + Mount - + Port - + Password - + Stream info @@ -5010,17 +5275,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5079,13 +5344,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5130,17 +5396,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5148,113 +5419,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5267,105 +5538,110 @@ Apply settings and continue? - + Enabled Chiri kushandisika - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: - + Support: - + Screens preview - + Input Mappings - - + + Search - - + + Add - - + + Remove Bvisa @@ -5380,22 +5656,22 @@ Apply settings and continue? Mamiriro emaKontrola - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5405,28 +5681,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All - + Output Mappings @@ -5441,21 +5717,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5585,6 +5861,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5614,137 +5900,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -6176,62 +6462,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6458,67 +6744,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - - Item is not a directory or directory is missing + + Item is not a directory or directory is missing + + + + + 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 - - Choose a music directory + + Leave Tracks Unchanged - - Confirm Directory Removal + + Relink music directory to new location - - 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. + + Black - - 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. + + ExtraBold - - Hide Tracks + + Bold - - Delete Track Metadata + + SemiBold - - Leave Tracks Unchanged + + Medium - - Relink music directory to new location + + Light - + Select Library Font @@ -6567,262 +6883,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible - + ... - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms - + Load track to next available deck - + External Libraries - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Show iTunes Library - + Show Traktor Library - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. @@ -7167,33 +7488,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Sarudza mekuisa marecording - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7211,43 +7532,55 @@ and allows you to pitch adjust them for harmonic mixing. - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality - + Tags - + Title Zita - + Author - + Album Bhama - + Output File Format - + Compression - + Lossy @@ -7262,12 +7595,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7398,173 +7731,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Chiri kushandisika - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7582,131 +7919,136 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7748,7 +8090,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7784,46 +8126,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + Hints Matips - + Select sound devices for Vinyl Control in the Sound Hardware pane. Sarudza madevice ekushandsa nemarekodhi kune panel reZvekuridzisa. @@ -7831,57 +8178,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7894,250 +8242,297 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. - - - - - Waveform + + OpenGL Status - - Normalize waveform overview + + Displays which OpenGL version is supported by the current platform. - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + + Overview Waveforms + + + + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8145,47 +8540,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Zvekuridzisa - + Controllers - + Library Laibhurari - + Interface - + Waveforms - + Mixer Mixa - + Auto DJ Zviridze wega - + Decks - + Colors @@ -8220,47 +8615,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Maeffect - + 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> - + Vinyl Control Shandisa marekodhi - + Live Broadcasting - + Modplug Decoder @@ -8293,22 +8688,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8616,284 +9011,289 @@ This can not be undone! - + Filetype: - + BPM: - + Location: - + Bitrate: - + Comments - + BPM Mutinhimira - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Nziyo # - + Album Artist Muimbi webhama - + Composer Munyori - + Title Zita - + Grouping Maunganidzirwo - + Key Key - + Year Gore - + Artist Muimbi - + Album Bhama - + Genre Rudzi - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + + Filesize: + + + + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -9050,7 +9450,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9252,27 +9652,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9416,38 +9816,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. Check the logs for details. @@ -9455,12 +9855,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9468,18 +9868,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9487,15 +9887,15 @@ 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 @@ -9506,57 +9906,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9564,62 +9964,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9629,22 +10029,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9691,27 +10091,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9771,22 +10171,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9794,210 +10194,251 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10013,13 +10454,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Kiya - - + + Playlists @@ -10029,32 +10470,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Sunungura - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -10153,58 +10625,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 @@ -10318,69 +10790,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Shandisa marekodhi - + Microphone + Audio path indetifier - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10709,47 +11194,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM Mutinhimira - + Set the beats per minute value of the click sound - + Sync Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11533,19 +12020,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Mupaka %1 @@ -11678,7 +12165,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11709,7 +12196,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11746,15 +12233,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11783,6 +12341,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11793,11 +12352,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11809,11 +12370,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11842,12 +12405,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11882,42 +12445,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11975,54 +12538,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12157,19 +12720,19 @@ may introduce a 'pumping' effect and/or distortion. Kiya - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12178,193 +12741,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. @@ -12372,7 +12935,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12380,23 +12943,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device - + An unknown error occurred - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12581,7 +13144,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12763,7 +13326,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Mufananidzo webhama @@ -12953,243 +13516,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo - + Key The musical key of a track Key - + BPM Tap Bata Mutinhimira - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Ridza - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13412,939 +13975,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If the play position is inside an active loop, stores the loop as loop cue. + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - - Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. + + If the play position is inside an active loop, stores the loop as loop cue. - - Dragging with Shift key pressed will not start previewing the hotcue + + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Super Knob - + Next Chain - + Previous Chain Maeffects abva - + Next/Previous Chain Maeffects Abva/Anotevera - + Clear Dzima - + Clear the current effect. - + Toggle Batidza / Dzima - + Toggle the current effect. - + Next Zvinotevera - + Clear Unit Dzima zvose zviri paUnit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit Batidza / Dzima Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Zvapfuura - + Switch to the previous effect. - + Next or Previous Zvinotevera kana Zvabva - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Gadzirisa beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. Gadzirisa beatgrid kufananidza nerwiyo ririkurira. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14479,33 +15085,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14525,205 +15131,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue Bata - + Headphone - + Mute Nyararidza - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Shandura Pitch - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix Rekodha mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit Pekuregera kuridza uchidzokorora - + Turns the current loop off. - + Slip Mode Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14763,259 +15379,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Dzora shure nekukurumidza - + Fast rewind through the track. - + Fast Forward Mhanyisa mberi - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Bvisa - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode Kamushandisiro kemarekodhi - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve Dimura dzokororo nepakati - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double Wedzera dzokororo zvakaenzana - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15023,12 +15639,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15036,47 +15652,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15248,47 +15859,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15412,407 +16051,448 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F - + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. Zadzisa bumbiro kuti rivharise pose panokwanisika pascreen. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15820,25 +16500,25 @@ This can not be undone! WOverview - + 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 @@ -15847,25 +16527,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -15876,169 +16544,163 @@ This can not be undone! - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut + See User Manual > Mixxx Library for more information. - - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history - - - - - Esc + + in search history - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Key - + harmonic with %1 - + BPM Mutinhimira - + between %1 and %2 - + Artist Muimbi - + Album Artist Muimbi webhama - + Composer Munyori - + Title Zita - + Album Bhama - + Grouping Maunganidzirwo - + Year Gore - + Genre Rudzi - + Directory - + &Search selected @@ -16046,599 +16708,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Homwe - + Metadata - + Update external collections - + Cover Art Mufananidzo webhama - + Adjust BPM - + Select Color - - + + Analyze Wongorora - - + + Delete Track Files - + 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) - + Preview Deck - + Remove Bvisa - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Rikudzo - + Cue Point - + + Hotcues Pekujambira uchiridza - + Intro - + Outro - + Key Key - + ReplayGain Hudzamu Hwerwiyo - + Waveform - + Comment Pfungwa - + All - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Mupaka %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16654,37 +17357,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16692,37 +17395,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16730,60 +17433,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. + + + Shuffle Tracks + + 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. @@ -16794,67 +17502,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Tsvaga - + Export directory - + Database version - + Export - + Cancel - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16875,7 +17594,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16885,23 +17604,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -16926,6 +17645,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -16934,4 +17671,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_sq_AL.qm b/res/translations/mixxx_sq_AL.qm index a24dd019d50b..ab0cb0a29a32 100644 Binary files a/res/translations/mixxx_sq_AL.qm and b/res/translations/mixxx_sq_AL.qm differ diff --git a/res/translations/mixxx_sq_AL.ts b/res/translations/mixxx_sq_AL.ts index c890c28d6230..5066dbdf1df2 100644 --- a/res/translations/mixxx_sq_AL.ts +++ b/res/translations/mixxx_sq_AL.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Arka - + Enable Auto DJ Aktivizo Auto DJ - + Disable Auto DJ Çaktivizo Auto DJ - + Clear Auto DJ Queue Spastro Radhë Auto DJ-i - + Remove Crate as Track Source Hiqi Arkat si Burim Pjesësh - + Auto DJ Auto DJ - + Confirmation Clear Ripohoni Spastrimin - + Do you really want to remove all tracks from the Auto DJ queue? Doni vërtet të hiqen krejt pjesët prej radhës së Auto DJ-it? - + This can not be undone. Kjo s’mund të zhbëhet. - + Add Crate as Track Source Shtoni Arkë si Burim Pjesësh @@ -223,7 +231,7 @@ - + Export Playlist Eksporto Luajlistën @@ -277,13 +285,13 @@ - + Playlist Creation Failed Krijimi i Luajlistës Dështoi - + An unknown error occurred while creating playlist: Ndodhi një gabim i panjohur teksa krijohej luajlista: @@ -298,12 +306,12 @@ Doni vërtet të fshihet luajlista <b>%1</b>? - + M3U Playlist (*.m3u) Luajlistë M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Luajlistë M3Ut (*.m3u);;Luajlistë M3U8 (*.m3u8);;Luajlistë PLS (*.pls);;Tekst CSV (*.csv);;Teskt i Lexueshëm (*.txt) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Vulë kohore @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. S’u ngarkua dot pjesë. @@ -349,7 +357,7 @@ Bitrate - + Bitrate @@ -362,7 +370,7 @@ Kanale - + Color Ngjyrë @@ -377,7 +385,7 @@ Kompozitor - + Cover Art Art Kopertine @@ -387,7 +395,7 @@ Datë Shtimi - + Last Played Luajtur Së Fundi Më @@ -417,7 +425,7 @@ Çelës - + Location Vendndodhje @@ -427,7 +435,7 @@ - + Preview Paraparje @@ -439,7 +447,7 @@ ReplayGain - + ReplayGain @@ -449,7 +457,7 @@ Played - + E Luajtur @@ -467,7 +475,7 @@ Vit - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Po sillet figurë… @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. S’mund të përdoret depozitim i siguruar fjalëkalimesh: dështoi hyrja në varg kyçesh. - + Secure password retrieval unsuccessful: keychain access failed. Marrje e pasuksesshme fjalëkalimi të siguruar: dështoi hyrja në varg kyçesh. - + Settings error Gabim rregullimesh - + <b>Error with settings for '%1':</b><br> <b>Gabim me rregullimet për '%1':</b><br> @@ -592,7 +600,7 @@ - + Computer Kompjuter @@ -612,17 +620,17 @@ Skanoje - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. “Kompjuter” ju lejon të lëvizni nëpër, të shihni dhe të ngarkoni pjesë nga dosje prej hard diskut tuaj dhe pajisjesh të jashtme. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -702,12 +710,12 @@ Bitrate - + Bitrate ReplayGain - + ReplayGain @@ -735,12 +743,12 @@ Kartelë e Krijuar Më - + Mixxx Library Fonotekë Mixxx-i - + Could not load the following file because it is in use by Mixxx or another application. S’u ngarkua dot kartela vijuese, ngaqë është në përdorim nga Mixxx-i, ose tjetër aplikacion. @@ -771,87 +779,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. Bën nisjen nën Auto DJ, kur hapet Mixxx-i. - + Rescans the library when Mixxx is launched. Riskanon fonotekën, kur hapet Mixxx-i. - + Use legacy vu meter Përdor tregues VU të dikurshëm - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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|përherë|kurrë] Përdor ngjyra te ç’prodhohet nga konsola. - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -861,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -979,2557 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Dalje Kufjesh - - - + + + + Deck %1 - + %1 is the deck number 1 ... 4 + Kuverta %1 - + Sampler %1 - + Preview Deck %1 - + Inspekto Kuvertën %1 - + Microphone %1 Mikrofoni %1 - + Auxiliary %1 Portë ndihmëse %1 - + Reset to default Riktheje te parazgjedhje - + Effect Rack %1 Raft Efektesh %1 - + Parameter %1 Parametri %1 - + Mixer Përzierës - - + + Crossfader - + Kryqzbehësi - + Headphone mix (pre/main) - + Toggle headphone split cueing - + Headphone delay Vonesë kufjesh - + Transport Transport - + Strip-search through track - + Play button Buton luajtjesh - - + + Set to full volume Vëre volumin të plotë - - + + Set to zero volume Vëre volumin zero - + Stop button Buton ndaljesh - + Jump to start of track and play Hidhu te fillimi i pjesës dhe luaje - + Jump to end of track Hidhu te fundi i pjesës - + Reverse roll (Censor) button - + Headphone listen button Buton dëgjimi në kufje - - + + Mute button Buton heshtimi - + Toggle repeat mode - - + + Mix orientation (e.g. left, right, center) - - + + Set mix orientation to left - - + + Set mix orientation to center - - + + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 Shtoje BPM-në me 1 - + Decrease BPM by 1 Pakësoje BPM-në me 1 - + Increase BPM by 0.1 Shtoje BPM-në me 0.1 - + Decrease BPM by 0.1 Pakësoje BPM-në me 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode - + Equalizers - + Barazuesit - + Vinyl Control Kontroll Vinili - + 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 - + 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 Fonotekë - + Slot %1 - + Headphone Mix - + Headphone Split Cue - + Headphone Delay Vonesë Kufjesh - + Play Luaje - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop Ndale - + Stop And Jump To Start Ndale Dhe Kalo Te Fillimi - + Stop playback and jump to start of track Ndaleni luajtjen dhe kaloni te fillimi i pjesës - + Jump To End Hidhu te Fundi - + Volume Volum - - - + + + Volume Fader Zbehës Volumi - - + + Full Volume Volum i Plotë - - + + Zero Volume Zero Volum - + Track Gain - + Track Gain knob - - + + Mute Heshtoje - + Eject Nxirre - - + + Headphone Listen Dëgjim në Kufje - + Headphone listen (pfl) button Buton dëgjimi në kufje (pfl) - + Repeat Mode Mënyra Përsëritje - + Slip Mode - - + + Orientation Orientim - - + + Orient Left Orientim Majtas - - + + Orient Center Orientim Në Qendër - - + + Orient Right Orientim Majtas - + BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key Përputhe me çelësin muzikor - + Match Key Përputhe me Çelësin - + Reset Key - + Resets key to original - + High EQ - + Mid EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ - + Toggle Vinyl Control Shfaq/Fshih Kontroll Vinili - + Toggle Vinyl Control (ON/OFF) Shfaq/Fshih Kontroll Vinili (ON/OFF) - + Vinyl Control Mode Mënyrë Kontrolli Vinili - + 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 Ngarko Pjesë - + Load selected track Ngarko pjesën e përzgjedhur - + Load selected track and play Ngarko pjesën e përzgjedhur dhe luaje - - + + Record Mix - + Toggle mix recording - + Effects Efekte - - Quick Effects - Efekte të Shpejta - - - + Deck %1 Quick Effect Super Knob - + + Quick Effect Super Knob (control linked effect parameters) - - + + + + Quick Effect Efekt i Shpejtë - + 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 Spastroje - + Clear the current effect Spastro efektin e tanishëm - + Toggle - + Toggle the current effect - + Next Pasuesi - + Switch to next effect Kalo te efekti pasues - + Previous I mëparshmi - + Switch to the previous effect Kalo te efekti i mëparshëm - + Next or Previous Pasuesi ose I mëparshmi - + Switch to either next or previous effect Kalo ose te efekti pasues, ose te ai i mëparshëm - - + + Parameter Value Velrë Parametri - - + + Microphone Ducking Strength - + Microphone Ducking Mode - + Gain - + Gain knob - + Shuffle the content of the Auto DJ queue Shkartis lëndën e radhës Auto DJ - + Skip the next track in the Auto DJ queue Anashkalo pjesën pasuese te radha Auto DJ - + Auto DJ Toggle - + Toggle Auto DJ On/Off - + Show/hide the microphone & auxiliary section Shfaq/fshih pjesën e mikrofonit & portës ndihmëse - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units Bën kalimin nga shfaqja e 2 në 4 njësish efektesh dhe anasjelltas - + Mixer Show/Hide Shfaq/Fshih Përzierësin - + Show or hide the mixer. Shfaqni ose fshihni përzierësin. - + 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 - + Headphone Gain - + Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + Playback Speed Shpejtësi Luajtjeje - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) - + Increase Speed Rrite Shpejtësinë - + Adjust speed faster (coarse) - + Increase Speed (Fine) - + Adjust speed faster (fine) - + Decrease Speed Ule Shpejtësinë - + Adjust speed slower (coarse) - + Adjust speed slower (fine) - + Temporarily Increase Speed Rrite Përkohësisht Shpejtësinë - + Temporarily increase speed (coarse) - + Temporarily Increase Speed (Fine) - + Temporarily increase speed (fine) - + Temporarily Decrease Speed Ule Përkohësisht Shpejtësinë - + Temporarily decrease speed (coarse) - + Temporarily Decrease Speed (Fine) - + Temporarily decrease speed (fine) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Kufje - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Asgjësoje %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 Shpejtësi - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 Aktivizo %1 - + 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 Spastroje %1 - + Clear the %1 [intro/outro marker Spastrojeni %1 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + Navigation Lëvizje - + Move up Ngjite sipër - + Equivalent to pressing the UP key on the keyboard E barasvlershme me shtypjen e tastit UP te tastiera - + Move down Ule poshtë - + Equivalent to pressing the DOWN key on the keyboard E barasvlershme me shtypjen e tastit DOWN te tastiera - + Move up/down - + Move vertically in either direction using a knob, as if pressing UP/DOWN keys - + Scroll Up Rrëshqit Për Sipër - + Equivalent to pressing the PAGE UP key on the keyboard E barasvlershme me shtypjen e tastit PAGE UP te tastiera - + Scroll Down Rrëshqit Për Poshtë - + Equivalent to pressing the PAGE DOWN key on the keyboard E barasvlershme me shtypjen e tastit PAGE DOWN te tastiera - + Scroll up/down - + Scroll vertically in either direction using a knob, as if pressing PGUP/PGDOWN keys - + Move left Lëvize majtas - + Equivalent to pressing the LEFT key on the keyboard E barasvlershme me shtypjen e tastit LEFT te tastiera - + Move right Lëvize djathtas - + Equivalent to pressing the RIGHT key on the keyboard E barasvlershme me shtypjen e tastit RIGHT te tastiera - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3542,6 +3583,159 @@ trace - Above + Profiling messages I panjohur + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3644,32 +3838,32 @@ trace - Above + Profiling messages ControllerScriptEngineBase - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. Funksionet e dhëna nga ky përshoqërim kontrollori do të çaktivizohen, deri sa të jetë zgjidhur problemi. - + You can ignore this error for this session but you may experience erratic behavior. Mundeni ta shpërfillni këtë gabim për këtë sesion, por mund të hasni sjellje me gabime. - + Try to recover by resetting your controller. Provoni ta zgjidhni duke kthyer te parazgjedhjet kontrollorin tuaj. - + Controller Mapping Error Gabim Përshoqërimi Kontrollori - + The mapping for your controller "%1" is not working properly. Përshoqërimi për kontrollorin tuaj “%1” s’po funksionon si duhet. - + The script code needs to be fixed. Duhet ndrequr kodi i programthit. @@ -3677,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3730,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Kyçe @@ -3760,7 +3954,7 @@ trace - Above + Profiling messages - + Enter new name for crate: Jepni emër të ri për arkën: @@ -3777,22 +3971,22 @@ trace - Above + Profiling messages Importo Arkë - + Export Crate Eksporto Arkë - + Unlock Shkyçe - + An unknown error occurred while creating crate: Ndodhi një gabim i panjohur teksa krijohej arkë: - + Rename Crate Riemërtoni Arkën @@ -3802,28 +3996,28 @@ trace - Above + Profiling messages Formoni një arkë për shfaqjen tuaj të ardhshme, për pjesët tuaja të parapëlqyera “electrohouse”, ose për pjesët tuaja më të kërkuara. - + Confirm Deletion Ripohoni Fshirjen - - + + Renaming Crate Failed Riemërtimi i Arkës Dështoi - + Crate Creation Failed Krijimi i Arkës Dështoi - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) Luajlistë M3U (*.m3u);;Luajlistë M3U8 (*.m3u8);;Luajlistë PLS (*.pls);;Tekst CSV (*.csv);;Teskt i Lexueshëm (*.txt) - + M3U Playlist (*.m3u) Luajlistë M3U (*.m3u) @@ -3844,17 +4038,17 @@ trace - Above + Profiling messages Arkat ju lejojnë të sistemoni muzikën tuaj si t’u pëlqejë! - + Do you really want to delete crate <b>%1</b>? Doni vërtet të fshihet arka <b>%1</b>? - + A crate cannot have a blank name. Një arkë s’mund të ketë emër të zbrazët. - + A crate by that name already exists. Ka tashmë një arkë me atë emër. @@ -3949,12 +4143,12 @@ trace - Above + Profiling messages Kontribues të Dikurshëm - + Official Website Sajt Zyrtar - + Donate Dhuroni @@ -4751,122 +4945,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Veprimi dështoi - + You can't create more than %1 source connections. S’mund të krijoni më tepër se %1 lidhje burimesh. - + Source connection %1 Lidhje burimi %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Është e domosdoshme të paktën një lidhje burimi. - + Are you sure you want to disconnect every active source connection? Jeni i sigurt se doni të shkëputet çdo lidhje aktive burimi? - - + + Confirmation required Lypset ripohim - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? Jeni i sigurt se doni të fshihet “%1”? - + Renaming '%1' Po riemërtohet “%1” - + New name for '%1': Emër i ri për “%1”: - + Can't rename '%1' to '%2': name already in use S’riemërtohet dot “%1” si “%2”:emër tashmë në përdorim @@ -4879,27 +5090,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing - + Public stream - + http://www.mixxx.org http://www.mixxx.org - + Stream name - + 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. @@ -4939,67 +5150,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ ICQ - + AIM AIM - + Website Sajt - + Live mix - + IRC IRC - + Select a source connection above to edit its settings here Përzgjidhni më sipër një lidhje burimi, që të përpunoni këtu rregullimet për të - + Password storage Depozitim fjalëkalimi - + Plain text Tekst i thjeshtë - + Secure storage (OS keychain) Depozitim i siguruar (varg kyçesh të OS-it) - + Genre Zhanër - + Use UTF-8 encoding for metadata. - + Description Përshkrim @@ -5011,7 +5227,7 @@ Two source connections to the same server that have the same mountpoint can not Bitrate - + Bitrate @@ -5025,42 +5241,42 @@ Two source connections to the same server that have the same mountpoint can not Kanale - + Server connection Lidhje shërbyesi - + Type Lloj - + Host Strehë - + Login Hyrje - + Mount - + Port Portë - + Password Fjalëkalim - + Stream info @@ -5070,17 +5286,17 @@ Two source connections to the same server that have the same mountpoint can not Tejtëdhëna - + Use static artist and title. Përdor artist dhe titull statik. - + Static title Titull statik - + Static artist Artist statik @@ -5139,13 +5355,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color Ngjyrë @@ -5190,18 +5407,23 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. Kur aktivizohen ngjyra çelësash, Mixxx-i do të shfaqë një ndihmëz rreth ngjyrës së përshoqëruar me secilin çelës. - + Enable Key Colors Aktivizo Ngjyra Çelësash - + Key palette Paletë çelësash @@ -5209,113 +5431,113 @@ ndihmëz rreth ngjyrës së përshoqëruar me secilin çelës. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5333,100 +5555,105 @@ Apply settings and continue? I aktivizuar - + + Refresh mapping list + + + + Device Info Hollësi Pajisjeje - + Physical Interface: Ndërfaqe Fizike: - + Vendor name: Emër tregtuesi: - + Product name: Emër produkti: - + Vendor ID ID tregtuesi - + VID: VID: - + Product ID ID Produkti - + PID: PID: - + Serial number: Numër serial: - + USB interface number: Numër ndërfaqeje USB: - + HID Usage-Page: - + HID Usage: - + Description: Përshkrim: - + Support: Asistencë: - + Screens preview - + Input Mappings - - + + Search Kërko - - + + Add Shtoni - - + + Remove Hiqe @@ -5446,17 +5673,17 @@ Apply settings and continue? - + Mapping Info - + Author: Autor: - + Name: Emër: @@ -5466,28 +5693,28 @@ Apply settings and continue? - + Data protocol: Protokoll të dhënash: - + Mapping Files: - + Mapping Settings - - + + Clear All Spastroji Krejt - + Output Mappings @@ -5502,21 +5729,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5646,6 +5873,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5675,137 +5912,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mënyrë Mixxx-i - + Mixxx mode (no blinking) Mënyrë Mixxx-i (pa xixëllim) - + Pioneer mode Mnëyra Pioneer - + Denon mode Mënyra Denon - + Numark mode Mënyra Numark - + CUP mode Mënyra CUP - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds s%1zz - Sekonda - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosekonda - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track Fillimi i pjesës - + Reject Mos e prano - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (gjysmëton) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6237,62 +6474,62 @@ 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 Lejoje ekrankursyesin të xhirojë - + Prevent screensaver from running Pengoje xhirimin e ekrankursyesit - + Prevent screensaver while playing Pengo ekrankursyesin, teksa luhet - + Disabled I çaktivizuar - + 2x MSAA 2x MSAA - + 4x MSAA 4x MSAA - + 8x MSAA 8x MSAA - + 16x MSAA 16x MSAA - + This skin does not support color schemes Kjo lëkrçe s’mbulon skema ngjyrash - + Information Hollësi - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. Mixxx-i duhet rinisuar, para se të hyjnë në fuqi rregullime për vendore të re, përshkallëzimi apo “multi-sampling”. @@ -6519,67 +6756,97 @@ and allows you to pitch adjust them for harmonic mixing. Për hollësi, shihni doracakun - + Music Directory Added U shtua Drejtori Muzikore - + 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? Shtuat një ose më tepër drejtori muzikore. Pjesët në këto drejtori s’do të jenë të përdorshme, deri sa të riskanohet fonoteka juaj. Doni të riskanohet tani? - + Scan Skanoje - + Item is not a directory or directory is missing Objekti s’është drejtori, ose drejtoria mungon - + Choose a music directory Zgjidhni një drejtori muzike - + Confirm Directory Removal Ripohoni Heqje Drejtorie - + 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. Tejtëdhëna do të thotë krejt hollësitë e pjesës (artist, titull, numër luajtjesh, etj.), si dhe beatgrids, hotcues, and loops. Kjo zgjedhje prek vetëm fonotekën e Mixxx-it. S’do të ndryshohen apo fshihen kartela në disk. - + Hide Tracks Fshihi Pjesët - + Delete Track Metadata Fshi Tejtëdhëna Pjese - + Leave Tracks Unchanged Lëri të Pandryshuara Pjesët - + Relink music directory to new location Rilidhe drejtorinë e muzikës me vendndodhjen e re - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Përzgjidhni Shkronja Fonoteke @@ -6628,262 +6895,267 @@ and allows you to pitch adjust them for harmonic mixing. Riskano drejtoritë gjatë nisjes - + Audio File Formats Formate Kartelash Audio - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History Historik Sesionesh - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. Luajlistë e dikurshme me më pak se N pjesë do të fshihet<br/><br/>Shënim: pastrimi do të kryhet gjatë nisjes dhe fikjes së Mixxx-it. - + Delete history playlist with less than N tracks Fshi luajlistë të dikurshme me më pak se N pjesë - + Library Font: Shkronja Fonoteke: - + + Show scan summary dialog + + + + Grey out played tracks Pjesët e luajtura shfaqi me ngjyrë gri - + Track Search Kërkim Pjesësh - + Enable search completions Aktivizo plotësime termash kërkimi - + Enable search history keyboard shortcuts Aktivizo shkurtore tastiere për historik kërkimesh - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. Sill kopertinë që nga coverartarchive.com duke përdorur “Importo Tejtëdhëna Nga Musicbrainz”. - + Note: ">1200 px" can fetch up to very large cover arts. Shënim: “>1200 px” mund të sjellë kopertina shumë të mëdha. - + >1200 px (if available) >1200 px (në pastë) - + 1200 px (if available) 1200 px (në pastë) - + 500 px 500 px - + 250 px 250 px - + Settings Directory Drejtori Rregullimesh - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Drejtoria e rregullimeve të Mixxx-it përmban bazën e të dhënave të fonotekës, kartela të ndryshme formësimi, kartela regjistër, të dhëna analizimi pjesësh, si dhe përshoqërime vetjake kontrollorësh. - + Edit those files only if you know what you are doing and only while Mixxx is not running. Përpunojini këto kartela vetëm nëse e dini se ç’po bëni dhe vetëm teksa Mixxx-i s’është duke funksionuar. - + Open Mixxx Settings Folder Hap Dosje Rregullimesh Mixxx-i - + Library Row Height: Lartësi Rreshti Fonoteke: - + Use relative paths for playlist export if possible Për eksportim luajlistash përdor shtigje relative, nëse mundet - + ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms - + Load track to next available deck - + External Libraries Fonoteka të Jashtme - + You will need to restart Mixxx for these settings to take effect. Që këto rregullime të hyjnë në fuqi, do t’ju duhet të rinisni Mixxx-in. - + Show Rhythmbox Library Shfaq Fonotekë Rhythmbox-i - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore Shpërfille - + Show Banshee Library Shfaq Fonotekë Banshee-u - + Show iTunes Library Shfaq Fonotekë iTunes - + Show Traktor Library Shfaq Fonotekë Traktor-i - + Show Rekordbox Library Shfaq Fonotekë Rekordbox-i - + Show Serato Library Shfaq Fonotekë Serato-je - + All external libraries shown are write protected. Krejt fonotekat e jashtme të shfaqura janë të mbrojtura nga shkrimi. @@ -7228,33 +7500,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7272,43 +7544,55 @@ and allows you to pitch adjust them for harmonic mixing. Shfletoni… - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Cilësi - + Tags Etiketa - + Title Titull - + Author Autor - + Album Album - + Output File Format Format Kartele Përufundim - + Compression Ngjeshje - + Lossy @@ -7323,12 +7607,12 @@ and allows you to pitch adjust them for harmonic mixing. Drejtori: - + Compression Level Nivel Ngjeshjeje - + Lossless @@ -7459,172 +7743,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Parazgjedhje (vonesë e gjatë) - + Experimental (no delay) Eksperimentale (pa vonesë) - + Disabled (short delay) E çaktivizuar (vonesë e shkurtër) - + Soundcard Clock Sahat i Kartës së Zërit - + Network Clock Sahat i Rrjetit - + Direct monitor (recording and broadcasting only) - + Disabled E çaktivizuar - + Enabled E aktivizuar - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 paraqet karta zëri dhe kontrollorë për të cilët mund të donit të shihnit mundësinë e përdorimit në Mixxx. - + Mixxx DJ Hardware Guide Udhërrëfyes Hardware-i DJ për Mixxx - + + Find details in the Mixxx user manual + + + + Information Hollësi - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) auto (<= 1024 kuadro/periudhë) - + 2048 frames/period 2048 kuadro/periudhë - + 4096 frames/period 4096 kuadro/periudhë - + Are you sure? Jeni i sigurt? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? Jeni i sigurt se doni të vazhdohet? - + No Jo - + Yes, I know what I am doing Po, e di se ç’po bëj - + 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. - + Refer to the Mixxx User Manual for details. Për hollësi, shihni te Doracaku i Përdoruesit të Mixxx-it. - + Configured latency has changed. Vonesa e formësuar ka ndryshuar. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Gabim formësimi @@ -7691,17 +7980,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 @@ -7726,12 +8020,12 @@ The loudness target is approximate and assumes track pregain and main output lev - + System Reported Latency Vonesë e Raportuar për Sistemin - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. @@ -7761,7 +8055,7 @@ The loudness target is approximate and assumes track pregain and main output lev Ndihmëza dhe Diagnostikime - + Downsize your audio buffer to improve Mixxx's responsiveness. Që të përmirësoni shkallën e reagimit të Mixxx-it, zvogëloni buffer-in tuaj audio. @@ -7808,7 +8102,7 @@ The loudness target is approximate and assumes track pregain and main output lev Formësim Vinili - + Show Signal Quality in Skin Shfaq në Lëkure Cilësi Sinjali @@ -7844,46 +8138,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Cilësi Sinjali - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Bazuar në xwax - + Hints Ndihmëza - + Select sound devices for Vinyl Control in the Sound Hardware pane. Përzgjidhni pajisje zanore për Kontroll Vinil, te kuadrati “Hardware Zanor”. @@ -7891,58 +8190,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered - + HSV - + RGB RGB - + Top Në krye - + Center Në qendër - + Bottom Në fund - + 1/3 of waveform viewer options for "Text height limit" 1/3 e parësit të valëve - + Entire waveform viewer Tërë parësin e valëve - + OpenGL not available - + dropped frames kuadro të humbura - + Cached waveforms occupy %1 MiB on disk. @@ -7960,22 +8259,17 @@ The loudness target is approximate and assumes track pregain and main output lev Shpejtësi kuadrosh - + OpenGL Status Gjendje OpenGL-i - + Displays which OpenGL version is supported by the current platform. Bën shfaqjen e cilit version OpenGL mbulohet nga platforma e tanishme. - - Normalize waveform overview - - - - + Average frame rate Shpejtësi mesatare kuadrosh @@ -7991,7 +8285,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. Bën shfaqjen e shpejtësisë aktuale të kuadrove. @@ -8026,7 +8320,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show minute markers on waveform overview @@ -8071,7 +8365,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + 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. @@ -8138,22 +8432,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. Herën e parë që ngarkoni një pjesë, Mixxx-i ruan në fshehtinë në disk valët e pjesëve tuaja. Kjo ul përdorimin e CPU-së, kur jeni duke luajtur drejtpërdrejt, por lyp hapësirë shtesë në disk. - + Enable waveform caching Aktivizo ruajtje në fshehtinë të valëve - + Generate waveforms when analyzing library @@ -8169,7 +8463,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type Lloj @@ -8199,12 +8493,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms Spastro Valë Nga Fshehtina @@ -8696,7 +9036,7 @@ Kjo s’mund të zhbëhet! BPM: - + Location: Vendndodhje: @@ -8711,27 +9051,27 @@ Kjo s’mund të zhbëhet! Komente - + BPM BPM - + Sets the BPM to 75% of the current value. E vë BPM-në sa 75% e vlerës aktuale. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. E vë BPM-në sa 50% e vlerës aktuale. - + Displays the BPM of the selected track. Bën shfaqjen e BPM-së së pjesës së përzgjedhur. @@ -8786,49 +9126,49 @@ Kjo s’mund të zhbëhet! Zhanër - + ReplayGain: - + Sets the BPM to 200% of the current value. E vë BPM-në sa 200% e vlerës aktuale. - + Double BPM Dyfishoje BPM-në - + Halve BPM Përgjysmoje BPM -në - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button Kalo te objekti i mëparshëm. - + &Previous I &mëparshmi - + Move to the next item. "Next" button Kalo te objekti pasues. - + &Next &Pasuesi @@ -8853,12 +9193,12 @@ Kjo s’mund të zhbëhet! Ngjyrë - + Date added: Datë shtimi: - + Open in File Browser Hape në Shfletues Kartelash @@ -8868,102 +9208,107 @@ Kjo s’mund të zhbëhet! Shpejtësi kampionizimi: - + + Filesize: + + + + Track BPM: BPM Pjese: - + 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. - + Assume constant tempo Merr të mirëqenë kohë konstante - + Sets the BPM to 66% of the current value. E vë BPM-në sa 66% e vlerës aktuale. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. E vë BPM-në sa 150% e vlerës aktuale. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. E vë BPM-në sa 133% e vlerës aktuale. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. Ndihmëz: Që të xhironi pikasje BPM-je, përdorni pamjen “Analizim Fonoteke”. - + Save changes and close the window. "OK" button Ruajini ndryshimet dhe mbyllni dritaren. - + &OK &OK - + Discard changes and close the window. "Cancel" button Hidhni tej ndryshimet dhe mbyllni dritaren. - + Save changes and keep the window open. "Apply" button Ruani ndryshimet dhe mbajeni dritaren hapur. - + &Apply &Aplikoje - + &Cancel Anu&loje - + (no color) (pa ngjyrë) @@ -9120,7 +9465,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h &OK - + (no color) (pa ngjyrë) @@ -9322,27 +9667,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9557,15 +9902,15 @@ 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 @@ -9576,57 +9921,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Shkurtore @@ -9634,37 +9979,37 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. Kjo, ose një drejtori mëmë gjendet tashmë në fonotekën tuaj. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies Kjo, ose një drejtori e paraqitur s’ekziston, ose s’kapet dot. Veprimi po ndërpritet, që të shmangen mospërputhje te fonoteka - - + + This directory can not be read. Kjo drejtori s’mund të lexohet. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies Ndodhi një gabim i panjohur. Po ndërpritet veprimi, për të shmangur mospërputhje fonoteke - + Can't add Directory to Library S’shtohet dot Drejtori te Fonotekë - + Could not add <b>%1</b> to your library. %2 @@ -9673,27 +10018,27 @@ Po ndërpritet veprimi, për të shmangur mospërputhje fonoteke %2 - + Can't remove Directory from Library S’hiqet dot Drejtori nga Fonoteka - + An unknown error occurred. Ndodhi një gabim i panjohur. - + This directory does not exist or is inaccessible. Kjo drejtori s’ekziston, ose s’lejon hyrje. - + Relink Directory Rilidhe Drejtorinë - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9705,22 +10050,22 @@ Po ndërpritet veprimi, për të shmangur mospërputhje fonoteke LibraryFeature - + Import Playlist Importo Luajlistë - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Kartela Luajlistë (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Të mbishkruhet Kartela? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -9860,12 +10205,12 @@ Doni vërtet të mbishkruhet? Pjesë të Fshehura - + Export to Engine DJ - + Tracks Pjesë @@ -9873,37 +10218,37 @@ Doni vërtet të mbishkruhet? MixxxMainWindow - + Sound Device Busy Pajisje Zanore e Zënë - + <b>Retry</b> after closing the other application or reconnecting a sound device <b>Riprovoni</b> pas mbylljes së veprimit tjetër, ose rilidhni një pajisje zanore - - - + + + <b>Reconfigure</b> Mixxx's sound device settings. <b>Riformësoni</b> rregullime Mixxx-i pajisjeje zanore. - - + + Get <b>Help</b> from the Mixxx Wiki. Merrni <b>Ndihmë</b> që nga Wiki e Mixxx-it. - - - + + + <b>Exit</b> Mixxx. <b>Mbylleni</b> Mixxx-in. - + Retry Riprovo @@ -9913,212 +10258,212 @@ Doni vërtet të mbishkruhet? lëkurçe - + Allow Mixxx to hide the menu bar? Të lejohet Mixxx-i të fshehtë shtyllën e menuve? - + Hide Always show the menu bar? Fshihe - + Always show Shfaqe përherë - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Shtylla e menuve të Mixxx-it është e fshehur dhe mund të shfaqet/fshihet me një shtypje të vetme të tastit <b>Alt</b>.<br><br>Që të pajtoheni, klikoni mbi <b>%1</b>.<br><br>Që ta çaktivizoni, klikoni mbi <b>%2</b>, nëse, për shembull, s’e përdorni Mixxx-in me tastierë.<br><br>Këtë rregullim mund ta ndryshoni kurdo që nga Parapëlqime -> Ndërfaqe.<br> - + Ask me again Pyetmë sërish - - + + Reconfigure Riformësoje - + Help Ndihmë - - + + Exit Mbylle - - + + Mixxx was unable to open all the configured sound devices. Mixxx-i s’qe në gjendje të hapë krejt pajisjet zanore të formësuara. - + Sound Device Error Gabim Pajisjeje Zanore - + <b>Retry</b> after fixing an issue <b>Riprovoni</b> pas ndreqjes së një problemi - + No Output Devices S’ka Pajisje Në Dalje - + Mixxx was configured without any output sound devices. Audio processing will be disabled without a configured output device. Mixxx-i qe dormësuar pa ndonjë pajisje zanore në dalje. Pa një pajisje në dalje të formësuar, përpunimi audio do të çaktivizohet. - + <b>Continue</b> without any outputs. <b>Vazhdo</b> pa ndonjë dalje. - + Continue Vazhdo - + Load track to Deck %1 - + Deck %1 is currently playing a track. - + Are you sure you want to load a new track? Jeni i sigurt se doni të ngarkohet një pjesë e re? - + There is no input device selected for this vinyl control. Please select an input device in the sound hardware preferences first. Për këtë kontroll vinili s’ka të përzgjedhur pajisje në hyrje. Ju lutemi, së pari përzgjidhni një pajisje në hyrje, që nga parapëlqimet për “hardware” tingujsh. - + 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? Për këtë mikrofon s’është përzgjedhur ndonjë pajisje në hyrje. Doni të përzgjidhni një pajisje në hyrje? - + There is no input device selected for this auxiliary. Do you want to select an input device? Për këtë portë ndihmëse s’është përzgjedhur ndonjë pajisje në hyrje. Doni të përzgjidhni një pajisje në hyrje? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + Error in skin file Gabim te kartelë lëkurçeje - + The selected skin cannot be loaded. Lëkurçja e përzgjedhur s’mund të ngarkohet. - + 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 Ripohoni Mbylljen - + A deck is currently playing. Exit Mixxx? - + A sampler is currently playing. Exit Mixxx? - + The preferences window is still open. Dritarja e parapëlqimeve është ende e hapur. - + Discard any changes and exit Mixxx? Të hidhen tej ndryshimet dhe të dilet nga Mixxx-i? @@ -10134,13 +10479,13 @@ Doni të përzgjidhni një pajisje në hyrje? PlaylistFeature - + Lock Kyçe - - + + Playlists Luajlista @@ -10150,58 +10495,63 @@ Doni të përzgjidhni një pajisje në hyrje? Shkartise Luajlistën - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Shkyçe - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. Luajlistat janë lista të renditura pjesësh, që ju lejojnë të planifikoni seancat tuaja DJ. - + 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. Që të mund të ruani energjinë e publikut tuaj, mund të jetë e nevojshme të anashkalohen ca pjesë te luajlista juaj e përgatitur, ose të shotni ca pjesë të tjera. - + Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly. Disa DJ ndërtojnë luajlista para se të luajnë drejtpërsëdrejti, të tjerë parapëlqejnë t’i hartojnë ato aty në vend. - + 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. Kur përdoret një luajlistë gjatë një seance DJ drejpërsëdrejti, mos harroni t’i kushtoni përherë vëmendje mënyrës se si reagon publiku juaj ndaj muzikës që keni zgjedhur të luani. - + Create New Playlist Krijo Luajlistë të Re @@ -10300,58 +10650,58 @@ Doni të përzgjidhni një pajisje në hyrje? QMessageBox - + Upgrading Mixxx - + Mixxx now supports displaying cover art. Do you want to scan your library for cover files now? - + Scan Skanoje - + Later Më vonë - + Upgrading Mixxx from v1.9.x/1.10.x. Po përmirësohet Mixxx-i nga v1.9.x/1.10.x. - + Mixxx has a new and improved beat detector. Mixxx-i ka një pikasës rrahjesh të ri dhe të përmirësuar. - + 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 @@ -10465,69 +10815,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier - + Microphone + Audio path indetifier - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10856,47 +11219,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11680,14 +12045,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11825,7 +12190,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11846,60 +12211,131 @@ Hint: compensates "chipmunk" or "growling" voices - - When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + + When the Quantize parameter is enabled, divide rounded 1/8 beats of Time parameter by 3. + + + + + (empty) + + + + + Sampler %1 + + + + + + Compressor + + + + + Auto Makeup Gain + + + + + Makeup + + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + + + + + Off + + + + + On + + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + + + + + + Threshold - - (empty) + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal - - Sampler %1 + + Target (dBFS) - - - Compressor + + Target - - Auto Makeup Gain + + The Target knob adjusts the desired target level of the output signal - - Makeup + + Gain (dB) - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness + + The Gain knob adjusts the maximum amount of gain that the effect will apply - - Off + + Knee (dB) - - On + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. - - Threshold (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold - - Threshold + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. @@ -11930,6 +12366,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11940,11 +12377,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11956,11 +12395,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11989,12 +12430,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12029,42 +12470,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12325,193 +12766,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx-i hasi një problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: Gabim në ujdisje mënyre tls: - + Error setting hostname! Gabim në caktim strehëemri! - + Error setting port! Gabim në caktim porte! - + Error setting password! Gabim në caktim fjalëkalimi! - + Error setting mount! - + Error setting username! Gabim në caktim emri përdoruesi! - + Error setting stream name! Gabim në caktim emri rrjedhe! - + Error setting stream description! Gabim në caktim përshkrim rrjedhe! - + Error setting stream genre! Gabim në caktim zhanri rrjedhe! - + Error setting stream url! Gabim në caktim URL-je rrjedhe! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! Format i panjohur kodimi rrjedhe! - + Use a libshout version with %1 enabled - + 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. Transmetimi në 96 kHz me Ogg Vorbis aktualisht s’mbulohet. Ju lutemi, provoni një shpejtësi tjetër kampionizimi, ose kaloni në tjetër kodim. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. Për më tepër hollësi, shihni https://github.com/mixxxdj/mixxx/issues/5701. - + Unsupported sample rate Shpejtësi kampionizimi e pambuluar - + Error setting bitrate - + Error: unknown server protocol! Gabim: protokoll i panjohur shërbyesi! - + Error: Shoutcast only supports MP3 and AAC encoders Gabim: Shoutcast-i mbulon vetëm kodues MP3 dhe AAC - + Error setting protocol! Gabim në caktim protokolli! - + Network cache overflow - + Connection error Gabim lidhjeje - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> Një nga lidhjet për Transmetim të Drejtpërdrejtë paraqiti këtë gabim:<br><b>Gabim me lidhjen '%1':</b><br> - + Connection message Mesazh lidhjeje - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>Mesazh nga lidhja e Transmetimit të Drejtpërdrejtë '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. Humbi lidhja me shërbyesin e transmetimit dhe %1 prova për rilidhje dështuan. - + Lost connection to streaming server. Humbi lidhja me shërbyesin e transmetimit. - + Please check your connection to the Internet. Ju lutemi, kontrolloni lidhjen tuaj me Internetin. - + Can't connect to streaming server S’lidhet dot te shërbyesi i transmetimeve - + Please check your connection to the Internet and verify that your username and password are correct. Ju lutemi, kontrolloni lidhjen tuaj me Internetin. dhe verifikoni se emri juaj i përdoruesi dhe fjalëkalimi janë të saktë. @@ -12519,7 +12960,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered @@ -12527,23 +12968,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device një pajisje - + An unknown error occurred Ndodhi një gabim i panjohur - + Two outputs cannot share channels on "%1" - + Error opening "%1" Gabim në hapjen e “%1” @@ -12728,7 +13169,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vinil Që Rrotullohet @@ -12825,7 +13266,7 @@ may introduce a 'pumping' effect and/or distortion. Crossfader - + Kryqzbehësi @@ -12910,7 +13351,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Art Kopertine @@ -13100,243 +13541,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo Kohë - + Key The musical key of a track Çelës - + BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. Shfaq/fshih pjesën e vinilit që rrotullohet. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Luaje - + Plays track from the cue point. - + Sends the selected channel's audio to the headphone output, selected in Preferences -> Sound Hardware. Dërgonn te dalja për kufjet audion e kanalit të përzgjedhur, përzgjedhur te Parapëlqime -> Hardware Tingujsh. - + (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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment Koment Pjese - + Displays the comment tag of the loaded track. Bën shfaqjen e etiketës komente të pjesës së ngarkuar. - + Opens separate artwork viewer. Bën hapjen e një parësi të jashtëm kopertinash. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input Përzgjidhni dhe formësoni një pajisje “hardware” për këtë hyrje - + Recording Duration Kohëzgjatje Incizimi @@ -13559,947 +14000,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14634,33 +15110,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14680,215 +15156,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14928,259 +15404,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15411,47 +15887,75 @@ Kjo s’mund të zhbëhet! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15576,323 +16080,363 @@ Kjo s’mund të zhbëhet! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Krijoni Luajlistë të &Re - + Create a new playlist Krijoni një luajlistë të re - + Ctrl+n Ctrl+n - + Create New &Crate Krijo &Arkë të Re - + Create a new crate Krijoni një arkë të re - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Shihni - + Auto-hide menu bar Vetëfshihe shtyllën e menuve - + Auto-hide the main menu bar when it's not used. Vetëfshih shtyllën e menusë kryesore, kur s’është në përdorim. - + May not be supported on all skins. Mund të mos e mbulojnë krejt lëkurçet. - + Show Skin Settings Menu Shfaq Menu Rregullimesh Lëkurçeje - + Show the Skin Settings Menu of the currently selected Skin Shfaqni Menunë e Rregullimeve për Lëkurçen të Lëkurçes së përzgjedhur aktualsisht - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Shfaq Pjesën e Mikrofonit - + Show the microphone section of the Mixxx interface. Shfaq te ndërfaqja e Mixxx-it pjesën e mikrofonit. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Shfaq Pjesën Kontroll Vinili - + Show the vinyl control section of the Mixxx interface. Shfaq te ndërfaqja e Mixxx-it pjesën “kontrolli vinili”. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Shfaq Kopertinë - + Show cover art in the Mixxx interface. Shfaq kopertinë te ndërfaqja e Mixxx-it. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maksimizo Fonotekën - + Maximize the track library to take up all the available screen space. Maksimizoni fonotekën që të zërë krejt hapësirën e mundshme në ekran. - + Space Menubar|View|Maximize Library Tasti Hapësirë - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen Sa &Krejt Ekrani - + Display Mixxx using the full screen Shfaqeni Mixxx-in duke përdorur krejt ekranin - + &Options &Mundësi - + &Vinyl Control &Kontroll Vinili - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 Aktivizo Kontroll Vinili &%1 - + &Record Mix &Incizoni Përzierjen - + Record your mix to a file Incizojeni në një kartelë përzierjen tuaj - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Aktivizo T&ransmetim të Drejtpërdrejtë - + Stream your mixes to a shoutcast or icecast server Transmetojini përzierjet tuaja te një shërbyes Shoutcast ose Icecast - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Aktivizo Shkurtore &Tastiere - + Toggles keyboard shortcuts on or off Aktivizoni ose çaktivizoni shkurtore tastiere - + Ctrl+` Ctrl+` - + &Preferences &Parapëlqime - + Change Mixxx settings (e.g. playback, MIDI, controls) Ndryshoni rregullimet e Mixxx-it (p.sh., për luajtjen, MIDI, kontrolle) - + &Developer &Zhvillues - + &Reload Skin &Ringarko Lëkurçe - + Reload the skin Ringarkoni lëkurçen - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools &Mjete Zhvilluesi - + Opens the developer tools dialog Bën hapjen e dialogut të mjeteve të zhvilluesit - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled &Diagnostikues i Aktivizuar - + Enables the debugger during skin parsing Aktivizon diagnostikuesin gjatë analizimit të lëkurçes - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Ndihmë - + Show Keywheel menu title @@ -15909,74 +16453,74 @@ Kjo s’mund të zhbëhet! Eksportojeni fonotekën në formatin Engine DJ - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel F12 - + &Community Support &Asistencë Nga Bashkësia - + Get help with Mixxx Merrni ndihmë për Mixxx-in - + &User Manual &Doracak Përdoruesi - + Read the Mixxx user manual. Lexoni doracakun e përdoruesit të Mixxx-it. - + &Keyboard Shortcuts Sh&kurtore Tastiere - + Speed up your workflow with keyboard shortcuts. Shpejtoni rrjedhën tuaj të punës përmes shkurtoresh tastiere. - + &Settings directory Drejtori &rregullimesh - + Open the Mixxx user settings directory. Hapni drejtorinë e rregullimeve të përdoruesit të Mixxx-it. - + &Translate This Application &Përktheni Këtë Aplikacion - + Help translate this application into your language. Ndihmoni të përkthehet ky aplikacion në gjuhën tuaj. - + &About &Mbi - + About the application Mbi aplikacionin @@ -15984,25 +16528,25 @@ Kjo s’mund të zhbëhet! WOverview - + Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Gati për luajtje, po analizohet… - - + + Loading track... Text on waveform overview when file is cached from source Po ngarkohet pjesë… - + Finalizing... Text on waveform overview during finalizing of waveform analysis Po përfundohet… @@ -16011,25 +16555,13 @@ Kjo s’mund të zhbëhet! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - - - - + Search noun - + Clear input @@ -16040,93 +16572,87 @@ Kjo s’mund të zhbëhet! - + Clear the search bar input field - - Enter a string to search for - Jepni një varg për të cilin të kërkohet + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - Përdorni operatorë të tillë si bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - Për më tepër hollësi, shihni Doracak Përdoruesi > Fonotekë Mixxx-i + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - Shkurtore + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Fokus + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts - Shkurtore + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space Ctrl+Space - + Toggle search history Shows/hides the search history entries Shfaq/fshih historik kërkimesh - + Delete or Backspace Tasti Delete ose Backspace - - Delete query from history - Fshije kërkesën nga historiku - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - Dil nga kërkimi + + Delete query from history + Fshije kërkesën nga historiku @@ -16210,625 +16736,640 @@ Kjo s’mund të zhbëhet! WTrackMenu - + Load to Nagrkoje te - + Deck - + Sampler - + Add to Playlist Shtoje te Luajlistë - + Crates Arka - + Metadata Tejtëdhëna - + Update external collections Përditëso koleksione të jashtëm - + Cover Art Art Kopertine - + Adjust BPM Përimto BPM-në - + Select Color Përzgjidhni Ngjyrë - - + + Analyze Analizo - - + + Delete Track Files Fshi Kartela Pjesësh - + Add to Auto DJ Queue (bottom) Shtoje te Radhë Auto DJ-i (në fund) - + Add to Auto DJ Queue (top) Shtoje te Radhë Auto DJ-i (në krye) - + Add to Auto DJ Queue (replace) Shtoje te Radhë Auto DJ-i (zëvendësoje) - + Preview Deck - + Remove Hiqe - + Remove from Playlist Hiqe nga Luajlistë - + Remove from Crate Hiqe nga Arkë - + Hide from Library Hiqe nga Fonotekë - + Unhide from Library Hiqi Fshehjen në Fonotekë - + Purge from Library Spastroje nga Fonoteka - + Move Track File(s) to Trash Shpjer Kartelë(a) Pjese(ësh) te Hedhurina - + Delete Files from Disk Fshiji Kartelat nga Disku - + Properties Veti - + Open in File Browser Hape në Shfletues Kartelash - + Select in Library Përzgjidhni në Fonotekë - + Import From File Tags Importo Nga Etiketa Kartelash - + Import From MusicBrainz Importo Nga MusicBrainz - + Export To File Tags Eksporto Te Etiketa Kartelash - + BPM and Beatgrid - + Play Count Numër Luajtjesh - + Rating Vlerësim - + Cue Point - - + + Hotcues - + Shenjat e Shpejta - + Intro - + Outro - + Key Çelës - + ReplayGain - + ReplayGain - + Waveform Valë - + Comment Koment - + All Krejt - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Kyçe BPM-në - + Unlock BPM Shkyçe BPM-në - + Double BPM Dyfishoje BPM-në - + Halve BPM Përgjysmoje BPM -në - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze Rianalizoje - + Reanalyze (constant BPM) Rianalizoje (BPM konstante) - + Reanalyze (variable BPM) Rianalizoje (BPM e ndryshueshme) - + Update ReplayGain from Deck Gain - + Deck %1 - + Kuverta %1 - + Importing metadata of %n track(s) from file tags Po importohen tejtëdhëna të %n pjese nga etiketa kartelePo importohen tejtëdhëna të %n pjesëve nga etiketa kartele - + Marking metadata of %n track(s) to be exported into file tags Po u vihet shenjë tejtëdhënave të %n pjese, që të eksportohen në etiketa kartelePo u vihet shenjë tejtëdhënave të %n pjesëve, që të eksportohen në etiketa kartele - - + + Create New Playlist Krijo Luajlistë të Re - + Enter name for new playlist: Jepni emër për luajlistë të re: - + New Playlist Luajlistë e Re - - - + + + Playlist Creation Failed Krijimi i Luajlistës Dështoi - + A playlist by that name already exists. Ka tashmë një luajlistë me atë emër. - + A playlist cannot have a blank name. Një luajlistë s’mund të ketë emër të zbrazët. - + An unknown error occurred while creating playlist: Ndodhi një gabim i panjohur teksa krijohej luajlista: - + Add to New Crate Shtoje në Arkë të Re - + Scaling BPM of %n track(s) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) Po kyçet BPM-ja e %n pjesePo kyçen BPM-të e %n pjesëve - + Unlocking BPM of %n track(s) Po shkyçet BPM-ja e %n pjesePo shkyçen BPM-të e %n pjesëve - + Setting rating of %n track(s) Po vihet vlerësim i %n pjesePo vihen vlerësime të %n pjesëve - + Setting color of %n track(s) Po caktohet ngjyrë e %n pjesePo caktohet ngjyrë e %n pjesëve - + Resetting play count of %n track(s) Po zerohet numër luajtjesh e %n pjesePo zerohet numër luajtjesh e %n pjesëve - + Resetting beats of %n track(s) - + Clearing rating of %n track(s) Po hiqet vlerësim i %n pjesePo hiqen vlerësime të %n pjesëve - + Clearing comment of %n track(s) Po spastrohet koment i %n pjesePo spastrohen komente të %n pjesëve - + 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? Të shpihen këto kartela te koshi i hedhurnave? - + Permanently delete these files from disk? Të fshihen përgjithnjë te disku këto kartela? - - + + This can not be undone! Kjo s’mund të zhbëhet! - + Cancel Anuloje - + Delete Files Fshiji Kartelat - + Okay OK - + Move Track File(s) to Trash? Të Shpihet te Hedhurina Kartela e Pjesës? - + Track Files Deleted U Fshinë Kartela Pjesësh - + Track Files Moved To Trash U Shpunë Te Hedhurina Kartela Pjesësh - + %1 track files were moved to trash and purged from the Mixxx database. U shpu te hedhurinat dhe u spastrua nga baza e të dhënave të Mixxx-it %1 kartelë pjese. - + %1 track files were deleted from disk and purged from the Mixxx database. U fshi nga disku dhe u spastrua nga baza e të dhënave të Mixxx-it %1 kartelë pjese. - + Track File Deleted U Fshi Kartelë Pjesësh - + Track file was deleted from disk and purged from the Mixxx database. U fshi nga disku dhe u spastrua nga baza e të dhënave të Mixxx-it kartelë pjese. - + The following %1 file(s) could not be deleted from disk S’u fshi dot nga disku %1 kartelë vijuese - + This track file could not be deleted from disk Kjo kartelë pjesësh s’u fshi dot nga disku - + Remaining Track File(s) Kartelë Pjese e Mbetur - + Close Mbylle - + Clear Reset metadata in right click track context menu in library Spastroji - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? Të shpihet kjo kartelë pjese te koshi i hedhurinave? - + Permanently delete this track file from disk? Të fshihet përgjithnjë te disku kjo kartelë pjese? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... Po hiqet nga disku %n kartelë pjese… - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. Shënim: nëse gjendeni nën pamjen Kompjuter, ose Incizim, duhet të klikoni sërish pamjen aktuale që të shihni ndryshimet. - + Track File Moved To Trash U Shpu Te Hedhurina Kartelë Pjese - + Track file was moved to trash and purged from the Mixxx database. U shpu te hedhurinat dhe u spastrua nga baza e të dhënave të Mixxx-it kartelë pjese. - + Don't show again during this session Mos e shfaq sërish gjatë këtij sesioni - + The following %1 file(s) could not be moved to trash S’u shpu dot te hedhurinat %1 kartelë vijuese - + This track file could not be moved to trash Kjo kartelë pjesësh s’u shou dot te hedhurinat + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) Po ujdiset kopertinë e %n pjesePo ujdisen kopertinat e %n pjesëve - + Reloading cover art of %n track(s) Po ringarkohet kopertinë e %n pjesePo ringarkohen kopertina të %n pjesëve @@ -16882,37 +17423,37 @@ Kjo s’mund të zhbëhet! WTrackTableView - + Confirm track hide Ripohoni fshehje pjese - + Are you sure you want to hide the selected tracks? Jeni i sigurt se doni të kalohen të fshehura pjesët e përzgjedhura? - + Are you sure you want to remove the selected tracks from AutoDJ queue? Jeni i sigurt se doni të hiqen pjesët e përzgjedhura nga radha për AutoDJ? - + Are you sure you want to remove the selected tracks from this crate? Jeni i sigurt se doni të hiqen pjesët e përzgjedhura nga kjo arkë? - + Are you sure you want to remove the selected tracks from this playlist? Jeni i sigurt se doni të hiqen pjesët e përzgjedhura nga kjo luajlistë? - + Don't ask again during this session Mos pyet sërish gjatë këtij sesioni - + Confirm track removal Ripohoni heqje pjese @@ -16920,12 +17461,12 @@ Kjo s’mund të zhbëhet! WTrackTableViewHeader - + Show or hide columns. Shfaqni ose fshihni shtylla. - + Shuffle Tracks Shkartis Pjesët @@ -16963,22 +17504,22 @@ Kjo s’mund të zhbëhet! fonotekë - + Choose music library directory Zgjidhni drejtori fonoteke - + controllers kontrollorë - + Cannot open database S’hapet dot bazë të dhënash - + 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. @@ -17136,6 +17677,24 @@ Që të dilet, klikoni mbi OK. S’është nisur kërkesa e rrjetit + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17144,4 +17703,27 @@ Që të dilet, klikoni mbi OK. S’u ngarkua efekt. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_sr.qm b/res/translations/mixxx_sr.qm index 7f2937af05cc..a0575664cb19 100644 Binary files a/res/translations/mixxx_sr.qm and b/res/translations/mixxx_sr.qm differ diff --git a/res/translations/mixxx_sr.ts b/res/translations/mixxx_sr.ts index 23a45d6ee46c..ee48dc6da83c 100644 --- a/res/translations/mixxx_sr.ts +++ b/res/translations/mixxx_sr.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Гајбице - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Уклони гајбицу из извора - + Auto DJ Самостални Диџеј - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source Додај сандук у изворе @@ -149,28 +157,28 @@ BasePlaylistFeature - + New Playlist Нови списак нумера - + Add to Auto DJ Queue (bottom) Додајте у ред самосталног диџеја (доле) - + Create New Playlist Састави листу песама - + Add to Auto DJ Queue (top) Додајте у ред самосталног диџеја (горе) - + Remove Уклони @@ -180,12 +188,12 @@ Преименуј - + Lock Закључај - + Duplicate Дуплирај @@ -206,24 +214,24 @@ Анализирај целу листу - + Enter new name for playlist: Ново име за листу песама: - + Duplicate Playlist Удвостручи списак нумера - - + + Enter name for new playlist: Ново име за листу песама: - + Export Playlist Извези списак нумера @@ -233,70 +241,77 @@ Додај на Ауто-Диџеј листу (рокада) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: Дошло је до непознате грешке приликом стварања списка нумера: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Временска ознака @@ -317,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Не могу да учитам нумеру. @@ -325,137 +340,142 @@ BaseTrackTableModel - + Album Албум - + Album Artist Извођач - + Artist Извођач - + Bitrate Проток - + BPM ТУМ - + Channels Број канала - + Color - + Comment Примедба - + Composer Састављач - + Cover Art Омот - + Date Added Додата - + Last Played - + Duration Трајање - + Type Врста - + Genre Жанр - + Grouping Груписање - + Key Кључ - + Location Место - + + Overview + + + + Preview Преглед - + Rating Оцена - + ReplayGain Ауто-ниво - + Samplerate - + Played Пуштено - + Title Наслов - + Track # Нумера бр. - + Year Година - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -478,24 +498,24 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Немогућност коришћења складишта лозинки: приступ привеску није могућ. - + Secure password retrieval unsuccessful: keychain access failed. Немогуће је учитати лозинке из складишта: привезак није доступан. - + Settings error Подешавања нису ваљана - + <b>Error with settings for '%1':</b><br> <b>Погрешна поставка за '%1':</b><br> @@ -546,67 +566,77 @@ BrowseFeature - + Add to Quick Links Додајте у брзе везе - + Remove from Quick Links Уклоните из брзих веза - + Add to Library Додај у Базу - + Refresh directory tree - + Quick Links Брзе везе - - + + Devices Уређаји - + Removable Devices Уклоњиви уређаји - - + + Computer Рачунар - + 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 Скен - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Рачунар" је место одакле можете приступити фолдерима на тврдом диску и спољној меморији. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -716,12 +746,12 @@ Креирано - + Mixxx Library Библиотека Миксикса - + Could not load the following file because it is in use by Mixxx or another application. Не могу да учитам датотеку јер је тренутно користи Миксикс или неки други програм. @@ -752,87 +782,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -842,27 +877,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -955,2563 +995,2613 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Слушалице - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Палуба %1 - + Sampler %1 Узорник %1 - + Preview Deck %1 Носач прегледа %1 - + Microphone %1 Микрофон %1 - + Auxiliary %1 Екстерни %1 - + Reset to default Врати на задато - + Effect Rack %1 Рек %1 - + Parameter %1 Параметар %1 - + Mixer Мешач - - + + Crossfader Постепени прелаз - + Headphone mix (pre/main) Мешање у слушалицама (пре/главно) - + Toggle headphone split cueing Излаз у слушалице - + Headphone delay Кашњење у слушалицама - + Transport Пренос - + Strip-search through track Расцепи претрагу кроз нумеру - + Play button Дугме за пуштање - - + + Set to full volume Макс. ниво - - + + Set to zero volume Мин. ниво - + Stop button Стоп дугме - + Jump to start of track and play Скочи на почетак и пусти - + Jump to end of track Скочите на крај нумере - + Reverse roll (Censor) button Цензура - + Headphone listen button Дугме за слушање слушалицама - - + + Mute button Пригуши - + Toggle repeat mode Промените режим понављања - - + + Mix orientation (e.g. left, right, center) Усмерење мешача (тј. лево, десно, на средини) - - + + Set mix orientation to left Микс на лево - - + + Set mix orientation to center Микс пола-пола - - + + Set mix orientation to right Микс на десно - + Toggle slip mode Окини режим спавања - - + + BPM ТУМ - + Increase BPM by 1 Повећај БПМ за 1 - + Decrease BPM by 1 Смањи БПМ за 1 - + Increase BPM by 0.1 Повећај БПМ за 0.1 - + Decrease BPM by 0.1 Смањи БПМ за 0.1 - + BPM tap button Дугме лупкања ТУМ-а - + Toggle quantize mode Окини режим квантизације - + One-time beat sync (tempo only) Моментално укачи (само) темпо - + One-time beat sync (phase only) Моментално укачи (само) фазу - + Toggle keylock mode Промените режим закључавања тастера - + Equalizers Уједначавачи - + 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 Библиотека - + Slot %1 Позиција %1 - + Headphone Mix Мешање у слушалицама - + Headphone Split Cue Главни сигнал у слушалице - + Headphone Delay Ехо у слушалицама - + Play Пусти - + Fast Rewind Брзо премотај уназад - + Fast Rewind button Премотај уназад - + Fast Forward Брзо премотај унапред - + Fast Forward button Премотај унапред - + Strip Search Дубинска претрага - + Play Reverse Уназад - + Play Reverse button Дугме "Уназад" - + Reverse Roll (Censor) Цензура (уназад) - + Jump To Start Скочи на почетак - + Jumps to start of track Моментално се враћа на почетак - + Play From Start Пусти од почетка - + Stop Стоп - + Stop And Jump To Start Врати на почетак - + Stop playback and jump to start of track Заустави траку и врати на почетак - + Jump To End Скочи на крај - + Volume Ниво - - - + + + Volume Fader Клизач нивоа - - + + Full Volume Макс. ниво - - + + Zero Volume Мин. ниво - + Track Gain Предпојачање - + Track Gain knob Пот. предпојачања - - + + Mute Пригуши - + Eject Избаци - - + + Headphone Listen Усмери у слушалице - + Headphone listen (pfl) button Дугме за преслушавање на слушкама (пфл) - + Repeat Mode Режим понављања - + Slip Mode Режим мировања - - + + Orientation Панорама - - + + Orient Left Баци на лево - - + + Orient Center Стави у центар - - + + Orient Right Баци на десно - + BPM +1 БПМ +1 - + BPM -1 БПМ -1 - + BPM +0.1 БПМ +0.1 - + BPM -0.1 БПМ -0.1 - + BPM Tap Лупкање ТУМ-а - + Adjust Beatgrid Faster +.01 Подеси Битгрид на брже +.01 - + Increase track's average BPM by 0.01 Увећај просечни BPM за 0.01 - + Adjust Beatgrid Slower -.01 Подеси Битгрид на спорије -.01 - + Decrease track's average BPM by 0.01 Умањи просечни BPM за 0.01 - + Move Beatgrid Earlier Помери Битгрид да рани - + Adjust the beatgrid to the left Намести Битгрид ка лево - + Move Beatgrid Later Помери Битгрид да касни - + Adjust the beatgrid to the right Намести Битгрид ка десно - + Adjust Beatgrid Дотерај тактну мрежу - + Align beatgrid to current position Уклопи Битгрид са тренутном позицијом - + Adjust Beatgrid - Match Alignment Намести Битгрид - усклади позицију - + Adjust beatgrid to match another playing deck. Намести Битгрид да прати други дек - + Quantize Mode Магнетни режим - + Sync Синхро - + Beat Sync One-Shot Синхро. ритма моментално - + Sync Tempo One-Shot Синхро. темпа моментално - + Sync Phase One-Shot Синхро. фазе моментално - + 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 = Оригинални тоналитет - + High EQ Уједначавач високих - + Mid EQ Уједначавач средњих - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low 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 Маркер припреме - + 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 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 Прекидач Ауто-Диџеј-а, укљ./искљ. - + 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 Рашири осцилоскоп - + Headphone Gain Појачање (слушалице) - + Headphone gain Појачање слушалица - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) Моментално успорење (фино) - - + + Adjust %1 Подеси %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Маска - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Слушалице - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Избаци %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 Прикажи/сакриј одељак узорчника - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - + + + Deck %1 Stems + + + + + 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 @@ -3524,6 +3614,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3626,33 +3869,33 @@ trace - Above + Profiling messages 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. Изворни код садржи грешке. @@ -3660,27 +3903,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3696,13 +3939,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Уклони - + Create New Crate Нова гајбица @@ -3712,55 +3955,55 @@ trace - Above + Profiling messages Преименуј - + 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 Извези гајбицу @@ -3770,74 +4013,74 @@ trace - Above + Profiling messages Откључај - + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) М3У листа (*.м3у) - + Crates are a great way to help organize the music you want to DJ with. Гајбице су одличан начин за испомоћ приликом организовања музике са којом желите да радите у диџеју. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Гајбице вам омогућавају да организујете вашу музику онако како ви то хоћете! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. Назив гајбице не може бити празан. - + A crate by that name already exists. Већ постоји гајбица са овим називом. @@ -3932,12 +4175,12 @@ trace - Above + Profiling messages Претходни доприносиоци - + Official Website - + Donate @@ -4059,72 +4302,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Секунде - + Auto DJ Fade Modes Full Intro + Outro: @@ -4155,82 +4398,82 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. Декови који се не користе за Ауто-Диџеј морају бити заустављени да би се омогућио рад Ауто-Диџеј-а. - + Repeat Понови - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. Један од декова мора бити заустављен да би се омогућио рад Ауто-Диџеј-а - + Enable - + Disable - + Displays the duration and number of selected tracks. Приказује укупну дужину и количину одабраних нумера. - - - + + + Auto DJ Самостални Диџеј - + Shuffle Измешај - + 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. Додаје произвољну нумеру из @@ -4485,40 +4728,40 @@ Often results in higher quality beatgrids, but will not do well on tracks that h детекцију дугметом "Покушај опет" - + Didn't get any midi messages. Please try again. Нема порука на видику. Покушајте опет. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Не могу да препознам поруку - покушајте опет. Да ли можда дирате више контрола одједном? - + Successfully mapped control: Успешно научена контрола: - + <i>Ready to learn %1</i> <i>Позорност за %1</i> - + Learning: %1. Now move a control on your controller. Учим: %1. Сада померите елемент на хардверу. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4559,17 +4802,17 @@ You tried to learn: %1,%2 Избаци у цсв - + Log Записник - + Search Нађи - + Stats Статистика @@ -4773,124 +5016,141 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Ајскаст 2 - + Shoutcast 1 Шауткест 1 - + Icecast 1 Ајскаст 1 - + MP3 МП3 - + Ogg Vorbis Огг Ворбис - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic Аутоматски - + Mono Моно - + Stereo Стерео - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Операција неуспешна - + You can't create more than %1 source connections. Није дозвољено креирати више од %1 мрежних извора. - + Source connection %1 Мрежни извор %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. Треба да постоји бар један мрежни извор. - + Are you sure you want to disconnect every active source connection? Да ли заиста желите да развежете све активне мрежне изворе? - - + + Confirmation required Потврдите још једном - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? Да ли заиста желите да уклоните "%1"? - + Renaming '%1' Мењам назив "%1" - + New name for '%1': Нови назив за "%1": - + Can't rename '%1' to '%2': name already in use Покушали сте да преименујете "%1" у "%2": то име је већ у употреби @@ -4904,27 +5164,27 @@ Two source connections to the same server that have the same mountpoint can not Избори за емитовање уживо - + Mixxx Icecast Testing Миксиксово испробавање Ајскаста - + Public stream Јавни ток - + http://www.mixxx.org http://www.mixxx.org - + Stream name Назив тока - + 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. Због пропуста у неким програмима за пријем емитовања, ажурирање мета- @@ -4970,69 +5230,74 @@ Two source connections to the same server that have the same mountpoint can not Параметри за %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Уживо ажирурирање Ог Ворбис мета-података. - + ICQ - + AIM - + Website Веб страница - + Live mix Мешање уживо - + IRC - + Select a source connection above to edit its settings here Следећи параметри се односе на одабрану изворну тачку изнад - + Password storage Складиште лозинки - + Plain text Чист текст - + Secure storage (OS keychain) Шифровано (системски привезак) - + Genre Жанр - + Use UTF-8 encoding for metadata. Користите кодирање УТФ-8 за мета податке. - + Description Опис @@ -5058,42 +5323,42 @@ Two source connections to the same server that have the same mountpoint can not Број канала - + Server connection Веза сервера - + Type Врста - + Host Домаћин - + Login Пријава - + Mount Прикачи - + Port Прикључник - + Password Лозинка - + Stream info Подаци емитовања @@ -5103,17 +5368,17 @@ Two source connections to the same server that have the same mountpoint can not Мета-подаци - + Use static artist and title. Користи ручно име и наслов. - + Static title Наслов - ручно: - + Static artist Име - ручно: @@ -5174,13 +5439,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5225,17 +5491,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5243,115 +5514,115 @@ associated with each key. DlgPrefController - + Apply device settings? Да применим подешавања уређаја? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Ваша подешавања морају бити примењена пре него што покренете чаробњака учења. Да применим подешавања и да наставим? - + None Ништа - + %1 by %2 %1 од %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Решавање проблема - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Уклони мапиране контроле - + Are you sure you want to clear all input mappings? Да ли заиста желите да уклоните све мапиране контроле? - + Clear Output Mappings Обриши мапиране контроле - + Are you sure you want to clear all output mappings? Да ли заисте желите да обришете све мапиране контроле? @@ -5365,105 +5636,110 @@ Apply settings and continue? Назив управљача - + Enabled Укључен - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Опис: - + Support: Подршка: - + Screens preview - + Input Mappings Мапирање улаза - - + + Search Нађи - - + + Add Додај - - + + Remove Уклони @@ -5478,22 +5754,22 @@ Apply settings and continue? Избори за контролере - + Load Mapping: - + Mapping Info - + Author: Аутор: - + Name: Назив: @@ -5503,28 +5779,28 @@ Apply settings and continue? Чаробњак учења (само МИДИ) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Очисти све - + Output Mappings Мапирање излаза @@ -5539,21 +5815,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5700,6 +5976,16 @@ MIDI учење, за одабрани контролер. Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5729,137 +6015,137 @@ MIDI учење, за одабрани контролер. DlgPrefDeck - + Mixxx mode Режим Миксиксикса - + Mixxx mode (no blinking) Режим Миксиксикса (без блинкања) - + Pioneer mode Пионир - + Denon mode Денон - + Numark mode Нумарк - + CUP mode CUP - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (полустепен) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6314,64 +6600,64 @@ 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 Спречи гашење екрана при репродукцији - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes Овај дизајн не подржава промену палете боја - + Information Обавештење - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6601,37 +6887,37 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 Скен - + Item is not a directory or directory is missing - + 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. Миксиксикс више неће пратити овај фолдер и његове измене. Шта тачно @@ -6644,7 +6930,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. Мета-подаци се односе на све детаље о нумери (извођач, назив, @@ -6656,28 +6942,58 @@ and allows you to pitch adjust them for harmonic mixing. мењати или брисати. - + Hide Tracks Сакриј нумере - - Delete Track Metadata - Уклони мета-податке нумере + + Delete Track Metadata + Уклони мета-податке нумере + + + + Leave Tracks Unchanged + Не мењај ништа + + + + Relink music directory to new location + Пребаците извор Микс-ове дискотеке +на неки други фолдер + + + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + - - Leave Tracks Unchanged - Не мењај ништа + + Medium + - - Relink music directory to new location - Пребаците извор Микс-ове дискотеке -на неки други фолдер + + Light + - + Select Library Font Стила текста бирача нумера @@ -6733,264 +7049,269 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Записи звучне датотеке - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Стил текста бирача: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: "Проред" бирача нумера: - + Use relative paths for playlist export if possible Користи релативне путање за извоз списка нумера ако је могуће - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track Коригуј мета-податке након одабира нумере - + Search-as-you-type timeout: - + ms ms - + Load track to next available deck Учитај нумеру у први слободни дек - + External Libraries Спољашње дискотеке - + You will need to restart Mixxx for these settings to take effect. Ове поставке ступају на снагу тек након поновног покретања Микс-а. - + Show Rhythmbox Library Прикажи библиотеку Ритам машине - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Приказ Бенши дискотеке - + Show iTunes Library Прикажи библиотеку ајТјунса - + Show Traktor Library Прикажи библиотеку Трактора - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. Све спољашње дискотеке које видите су заштићене од измена. @@ -7348,33 +7669,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Изаберите директоријум за снимања - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7392,43 +7713,55 @@ and allows you to pitch adjust them for harmonic mixing. Разгледај... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Квалитет - + Tags Ознаке - + Title Наслов - + Author Аутор - + Album Албум - + Output File Format Формат крајњег фајла - + Compression Компресија - + Lossy Деструктивна @@ -7443,12 +7776,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level Ниво компресије - + Lossless Реверзибилна @@ -7588,155 +7921,159 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Основно (дуги ехо) - + Experimental (no delay) Експериментално (без еха) - + Disabled (short delay) Угашено (кратак ехо) - + Soundcard Clock Клок звучног адаптера - + Network Clock Мрежни клок - + Direct monitor (recording and broadcasting only) Директни мониторинг (за снимање и емитовање) - + Disabled Неактивно - + Enabled Укључен - + Stereo Стерео - + Mono Моно - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. Измери мрежно кашњење и унеси га заједно са Микрофонском компензацијом да би усагласили микрофон. - - + Refer to the Mixxx User Manual for details. Консултујте Миксиксикс приручник за више информација. - + Configured latency has changed. Поставка компензације кашњења захтева корекцију. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. Поново измери мрежно кашњење и унеси га заједно са Микрофонском @@ -7744,27 +8081,27 @@ The loudness target is approximate and assumes track pregain and main output lev микрофонски сигнал. - + Realtime scheduling is enabled. Активно је мерење у реалном времену. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Грешка подешавања @@ -7782,135 +8119,140 @@ The loudness target is approximate and assumes track pregain and main output lev АПИ звука - + Sample Rate Фрекв. узорковања - + Audio Buffer Звучна међу-меморија - + Engine Clock Референтни клок - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. Користите клок звучног адаптера за живе ситуације и смањено кашњење.<br>Користите мрежни клок за емитовање без активне публике. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode Мониторинг микрофона - + Microphone Latency Compensation Микрофонска компензација - - - - + + + + ms milliseconds ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Број пражњења међу-меморије - + 0 0 - + Keylock/Pitch-Bending Engine Систем променљиве фреквенције - + Multi-Soundcard Synchronization Мулти-адаптерска синхронизација - + Output Излаз - + Input Улаз - + System Reported Latency Системско кашњење - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Увећајте звучну међу-меморију ако се бројач пражњења стално увећава, или чујете "пуцкетање" у репродукцији. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics Савети и дијагностика - + Downsize your audio buffer to improve Mixxx's responsiveness. Смањите звучну међу-меморију за бржи одзив Микс-ове апаратуре. - + Query Devices Пропитај уређаје @@ -7952,7 +8294,7 @@ The loudness target is approximate and assumes track pregain and main output lev Подешавање плоче - + Show Signal Quality in Skin Прикажи квалитет сигнала у масци @@ -7988,46 +8330,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Квалитет сигнала - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Покреће га „xwax“ - + Hints Савети - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -8035,57 +8382,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Издвојено - + HSV ХСВ - + RGB - + Top - + Center - + Bottom - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available ОпенГЛ није доступан - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -8098,250 +8446,297 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate Проток кадрова - - Displays which OpenGL version is supported by the current platform. - Прикажите које издање ОпенГЛ-а је подржано текућом платформом. - - - - Waveform + + OpenGL Status - - Normalize waveform overview - + + Displays which OpenGL version is supported by the current platform. + Прикажите које издање ОпенГЛ-а је подржано текућом платформом. - + Average frame rate - + Visual gain Видно појачање - + Default zoom level Waveform zoom - + Displays the actual frame rate. Прикажите садашњи проток кадрова. - + Visual gain of the middle frequencies Видљиво појачање средњих учесталости - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds сек. - + Low Низак - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies Видљиво појачање високих учесталости - + Visual gain of the low frequencies Видљиво појачање ниских учесталости - + High Висок - + Global visual gain Опште видно појачање - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. Ускладите ниво увећавања преко свих приказа таласних облика. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + + Overview Waveforms + + + + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8349,47 +8744,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Звучне компоненте - + Controllers Управљачи - + Library Библиотека - + Interface Сучеље - + Waveforms - + Mixer Мешач - + Auto DJ Самостални Диџеј - + Decks - + Colors @@ -8424,47 +8819,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Дејства - + 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> - + Vinyl Control Управљање плочом - + Live Broadcasting Емитовање уживо - + Modplug Decoder @@ -8497,22 +8892,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Започни снимање - + Recording to file: - + Stop Recording Заустави снимање - + %1 MiB written in %2 @@ -8820,284 +9215,289 @@ This can not be undone! Сажетак - + Filetype: Врста датотеке: - + BPM: ТУМ: - + Location: Место: - + Bitrate: Проток бита: - + Comments - + BPM ТУМ - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Нумера бр. - + Album Artist Извођач - + Composer Састављач - + Title Наслов - + Grouping Груписање - + Key Кључ - + Year Година - + Artist Извођач - + Album Албум - + Genre Жанр - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM Удвостручи ТУМ - + Halve BPM Преполови ТУМ - + Clear BPM and Beatgrid Очисти ТУМ и тактну мрежу - + Move to the previous item. "Previous" button - + &Previous &Претходна - + Move to the next item. "Next" button - + &Next &Следећа - + Duration: Трајање: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Отвори у прегледнику датотека - + Samplerate: - + + Filesize: + + + + Track BPM: Прати ТУМ: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Лупни такт - + Hint: Use the Library Analyze view to run BPM detection. Савет: Користите преглед анализирања библиотеке да покренете откривање ТУМ-а. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Примени - + &Cancel &Откажи - + (no color) @@ -9254,7 +9654,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9456,27 +9856,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9620,38 +10020,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. Check the logs for details. @@ -9659,12 +10059,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9672,18 +10072,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9691,15 +10091,15 @@ 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 @@ -9710,57 +10110,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate покрени - + toggle окини - + right десно - + left лево - + right small мали десни - + left small мали леви - + up горе - + down доле - + up small мало горе - + down small мало доле - + Shortcut Пречица @@ -9768,62 +10168,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9833,22 +10233,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9895,27 +10295,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9975,22 +10375,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Недостајуће нумере - + Hidden Tracks Скривене нумере - - Export to Engine Prime + + Export to Engine DJ - + Tracks @@ -9998,208 +10398,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? Да одбацим могуће измене и да напустим Миксикс? @@ -10215,13 +10656,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Закључај - - + + Playlists Списак нумера @@ -10231,32 +10672,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Откључај - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 Састави листу песама @@ -10355,58 +10827,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 Створи нове мреже тактова @@ -10520,69 +10992,82 @@ Do you want to scan your library for cover files now? - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Слушалице - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier Носач - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Управљање плочом - + Microphone + Audio path indetifier Микрофон - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path Непозната врста путање %1 @@ -10911,47 +11396,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM ТУМ - + Set the beats per minute value of the click sound - + Sync Синхро - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11735,19 +12222,19 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. - + Deck %1 Палуба %1 @@ -11880,7 +12367,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Пропуштање @@ -11911,7 +12398,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11948,15 +12435,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11985,6 +12543,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11995,11 +12554,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -12011,11 +12572,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -12044,12 +12607,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12084,42 +12647,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12177,54 +12740,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12359,19 +12922,19 @@ may introduce a 'pumping' effect and/or distortion. Закључај - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12380,193 +12943,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Миксикс је наишао на проблем - + Could not allocate shout_t Не могу да доделим шоут_т - + Could not allocate shout_metadata_t Не могу да доделим шоут_метаподатака_т - + Error setting non-blocking mode: Грешка постављања не-блокирајућег режима: - + Error setting tls mode: - + Error setting hostname! Грешка постављања назива домаћина! - + Error setting port! Грешка постављања порта! - + Error setting password! Грешка постављања лозинке! - + Error setting mount! Грешка постављања прикачка! - + Error setting username! Грешка постављања имена корисника! - + Error setting stream name! Грешка постављања назива тока! - + Error setting stream description! Грешка постављања описа тока! - + Error setting stream genre! Грешка постављања жанра тока! - + Error setting stream url! Грешка постављања адресе тока! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Грешка постављања протока бита - + Error: unknown server protocol! Грешка: непознат протокол сервера! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Грешка постављања протокола! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. Молим проверите вашу везу на Интернет и утврдите да ли су ваше корисничко име и лозинка исправни. @@ -12574,7 +13137,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Издвојено @@ -12582,23 +13145,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device уређај - + An unknown error occurred Дошло је до непознате грешке - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12783,7 +13346,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Вртење плоче @@ -12965,7 +13528,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Омот @@ -13155,243 +13718,243 @@ may introduce a 'pumping' effect and/or distortion. Задржите добит уједначавача ниских на нули док ради. - + Displays the tempo of the loaded track in BPM (beats per minute). Приказује темпо учитане нумере у тактовима у минуту (ТУМ). - + Tempo Темпо - + Key The musical key of a track Кључ - + BPM Tap Лупкање ТУМ-а - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Када лупкате непрекидно, прилагођавате ТУМ да одговара лупканом ТУМ-у. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap Темпо и лупкање ТУМ-а - + Show/hide the spinning vinyl section. Прикажите/сакријте одељак окретања плоче. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Пусти - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13614,939 +14177,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If the play position is inside an active loop, stores the loop as loop cue. + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - - Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. + + If the play position is inside an active loop, stores the loop as loop cue. - - Dragging with Shift key pressed will not start previewing the hotcue + + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Сачувај групу узорака - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Учитај групу узорака - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters Приказ параметара ефекта - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Гл. потенциометар - + Next Chain Сл. ланац - + Previous Chain Претходни ланац - + Next/Previous Chain Сл./претх. меморисани ланац - + Clear Уклони - + Clear the current effect. - + Toggle Активација - + Toggle the current effect. - + Next Даље - + Clear Unit Уклони процесор - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit Процесор активан - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Претходно - + Switch to the previous effect. - + Next or Previous Следећи/претходни - + Switch to either the next or previous effect. - + Meta Knob Подесиви пот. - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Дотерај тактну мрежу - + Adjust beatgrid so the closest beat is aligned with the current play position. Дотерајте тактну мрежу тако да је најближи такт поравнат са тренутним положајем пуштања. - - + + Adjust beatgrid to match another playing deck. Намести Битгрид да прати други дек - + If quantize is enabled, snaps to the nearest beat. Ако је омогућено куантизовање, пријања се на најближи такт. - + Quantize Квантизуј - + Toggles quantization. Окините квантизацију. - + Loops and cues snap to the nearest beat when quantization is enabled. Петље и наговештаји пријањају на најближи такт када је укључена квантизација. - + Reverse Уназад - + Reverses track playback during regular playback. Пустите траку уназад за време редовног пуштања. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Пусти/паузирај - + Jumps to the beginning of the track. Скочите на почетак нумере. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14681,33 +15287,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. Пустите или паузирајте нумеру. - + (while playing) (за време пуштања) @@ -14727,205 +15333,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (док је заустављена) - + Cue Наговештај - + Headphone Слушалице - + Mute Пригуши - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Ускладите са првим носачем (према бројевима) који пушта нумеру и има ТПМ. - + If no deck is playing, syncs to the first deck that has a BPM. Ако ниједан носач не пушта, ускладите са првим носачем који има ТПМ. - + Decks can't sync to samplers and samplers can only sync to decks. Носачи могу да се усклађују са узорчницима а узорчници могу само да се усклађују са носачима. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust Подеси фреквенцију - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix Снимај микс - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. Пуштање ће се наставити са места на коме би нумера била да није ушла у петљу. - + Loop Exit Напусти петљу - + Turns the current loop off. Искључите тренутну петљу. - + Slip Mode Режим мировања - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Када је радан, пуштање се наставља пригушено у позадини током петље, уназад, гребања итд. - + Once disabled, the audible playback will resume where the track would have been. Када га искључите, чујно пуштање ће се наставити са места на коме била нумера. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock Сат - + Displays the current time. Прикажите тренутно време. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14965,259 +15581,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Покрените управљање плочом из „Изборник —> Опције“. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Брзо премотај уназад - + Fast rewind through the track. Брзо премотавајте уназад по нумери. - + Fast Forward Брзо премотај унапред - + Fast forward through the track. Брзо премотавајте унапред по нумери. - + Jumps to the end of the track. Скочите на крај нумере. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Управљање тоном - + Pitch Rate Проток тона - + Displays the current playback rate of the track. Прикажите текући проток пуштања нумере. - + Repeat Понови - + When active the track will repeat if you go past the end or reverse before the start. Када ће активна нумера бити поновљена ако прођете крај или вратите уназад пре почетка. - + Eject Избаци - + Ejects track from the player. Избаците нумеру из програма. - + Hotcue Битан наговештај - + If hotcue is set, jumps to the hotcue. Ако је постављен битан наговештај, скочите на битни наговештај. - + If hotcue is not set, sets the hotcue to the current play position. Ако битан наговештај није подешен, поставите битан наговештај на тренутни положај пуштања. - + Vinyl Control Mode Режим управљања плочом - + Absolute mode - track position equals needle position and speed. Режим апсолутности — положај нумере изједначава положај и брзину игле. - + Relative mode - track speed equals needle speed regardless of needle position. Режим релативности — брзина нумере изједначава брзину игле без обзира на њен положај. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Режим сталности — брзина нумере изједначава последњу знану стабилну брзину без обзира на улаз игле. - + Vinyl Status Стање плоче - + Provides visual feedback for vinyl control status: Обезбедите видљиве повратне податке за стање управљања плочом: - + Green for control enabled. Зелено за укључено управљање. - + Blinking yellow for when the needle reaches the end of the record. Жуто трепћуће када игла стигне на крај снимка. - + Loop-In Marker Означавач упетљавања - + Loop-Out Marker Означавач отпетљавања - + Loop Halve Преполовљавање петље - + Halves the current loop's length by moving the end marker. Преполовите трајање тренутне петље померањем крајњег означавача. - + Deck immediately loops if past the new endpoint. Носач одмах прави петљу ако је прошао нову крајњу тачку. - + Loop Double Удвостручавање петље - + Doubles the current loop's length by moving the end marker. Удвостручите трајање тренутне петље померањем крајњег означавача. - + Beatloop Тактна петља - + Toggles the current loop on or off. Укључите или искључите тренутну петљу. - + Works only if Loop-In and Loop-Out marker are set. Ради само ако су постављени означавачи за упетљавање и отпетљавање. - + Vinyl Cueing Mode Режим наговештаја плоче - + Determines how cue points are treated in vinyl control Relative mode: Одредите како се поступа са тачкама наговештаја у релативном режиму управљања плочом: - + Off - Cue points ignored. Искљ. — Тачке наговештаја су занемарене. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Један наговештај — Ако отпустите иглу након тачке наговештаја, нумера ће се премотати до тачке наговештаја. - + Track Time Време нумере - + Track Duration Трајање нумере - + Displays the duration of the loaded track. Прикажите трајање учитане нумере. - + Information is loaded from the track's metadata tags. Податак се учитава из ознака метаподатака нумере. - + Track Artist Извођач нумере - + Displays the artist of the loaded track. Прикажите извођача учитане нумере. - + Track Title Наслов нумере - + Displays the title of the loaded track. Прикажите наслов учитане нумере. - + Track Album Албум нумере - + Displays the album name of the loaded track. Прикажите назив албума учитане нумере. - + Track Artist/Title Извођач/Наслов нумере - + Displays the artist and title of the loaded track. Прикажите извођача и наслов учитане нумере. @@ -15225,12 +15841,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15238,47 +15854,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15450,47 +16061,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue - - Left-click: Use the old size or the current beatloop size as the loop size + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. - - Right-click: Use the current play position as loop end if it is after the cue + + Turn this cue into a saved backward jump (one shot loop). - + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 @@ -15614,407 +16253,448 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... - - Export the library to the Engine Prime format + + Search for tracks in the current library view - + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist Направите нови списак нумера - + Ctrl+n - + Create New &Crate - + Create a new crate Направите нову гајбицу - + Ctrl+Shift+N Ктрл-Помак+Н - - + + &View Пре&глед - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Не може бити подржано на свим маскама. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ктрл+1 - + Show Microphone Section Прикажи одељак микрофона - + Show the microphone section of the Mixxx interface. Прикажите одељак микрофона у сучељу Миксикса. - + Ctrl+2 Menubar|View|Show Microphone Section Ктрл+2 - + Show Vinyl Control Section Прикажи одељак управљања плочом - + Show the vinyl control section of the Mixxx interface. Прикажите одељак управљања плочом у сучељу Миксикса. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ктрл+3 - + Show Preview Deck Прикажи носач прегледа - + Show the preview deck in the Mixxx interface. Прикажите носач прегледа у сучељу Миксикса. - + Ctrl+4 Menubar|View|Show Preview Deck Ктрл+4 - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. Користи цео екран за одабир нумера - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Цео екран - + Display Mixxx using the full screen Прикажите Миксикс користећи цео екран - + &Options &Опције - + &Vinyl Control &Управљање плочом - + Use timecoded vinyls on external turntables to control Mixxx Користите плоче са временским кодирањем на спољним грамофонима да управљате Миксиксом - + Enable Vinyl Control &%1 - + &Record Mix &Сними микс - + Record your mix to a file Снимите ваш микс у датотеку - + Ctrl+R Ктрл+Р - + Enable Live &Broadcasting Укључи емитовање &уживо - + Stream your mixes to a shoutcast or icecast server Пошаљите ток ваших радова на сервер шоуткаста или ајскаста - + Ctrl+L Ктрл+Л - + Enable &Keyboard Shortcuts Укључи пречице на &тастатури - + Toggles keyboard shortcuts on or off Укључите или искључите пречице тастатуре - + Ctrl+` Ктрл+` - + &Preferences &Поставке - + Change Mixxx settings (e.g. playback, MIDI, controls) Измените подешавања Миксикса (нпр. пуштање, МИДИ, управљања) - + &Developer - + &Reload Skin &Поново учитај маску - + Reload the skin Поново учитајте маску - + Ctrl+Shift+R Ктрл+Помак+Р - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help По&моћ - + Show Keywheel menu title - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Подршка заједнице - + Get help with Mixxx Потражите помоћ за Миксикс - + &User Manual &Корисничко упутство - + Read the Mixxx user manual. Прочитајте корисничко упутство Миксикса. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Преведи овај програм - + Help translate this application into your language. Помозите у превођењу овог програма на наш језик насушни. - + &About &О програму - + About the application О самом програму @@ -16022,25 +16702,25 @@ This can not be undone! WOverview - + 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 @@ -16049,25 +16729,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ктрл+Ф - - - + Search noun Нађи - + Clear input @@ -16078,169 +16746,163 @@ This can not be undone! Потражи... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Пречица + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ктрл+Ф + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Изађи - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Кључ - + harmonic with %1 - + BPM ТУМ - + between %1 and %2 - + Artist Извођач - + Album Artist Извођач - + Composer Састављач - + Title Наслов - + Album Албум - + Grouping Груписање - + Year Година - + Genre Жанр - + Directory - + &Search selected @@ -16248,599 +16910,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck Носач - + Sampler Узорчник - + Add to Playlist Додај на списак нумера - + Crates Гајбице - + Metadata Мета-подаци - + Update external collections - + Cover Art Омот - + Adjust BPM - + Select Color - - + + Analyze Анализирај - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) Додајте у ред самосталног диџеја (доле) - + Add to Auto DJ Queue (top) Додајте у ред самосталног диџеја (горе) - + Add to Auto DJ Queue (replace) Додај на Ауто-Диџеј листу (рокада) - + Preview Deck Носач прегледа - + Remove Уклони - + Remove from Playlist - + Remove from Crate - + Hide from Library Сакриј у библиотеци - + Unhide from Library Прикажи у библиотеци - + Purge from Library Избаци из библиотеке - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Својства - + Open in File Browser Отвори у прегледнику датотека - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Оцена - + Cue Point - + + Hotcues Битни наговештаји - + Intro - + Outro - + Key Кључ - + ReplayGain Ауто-ниво - + Waveform - + Comment Примедба - + All Све - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Закључај ТУМ - + Unlock BPM Откључај ТУМ - + Double BPM Удвостручи ТУМ - + Halve BPM Преполови ТУМ - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Откажи - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Затвори - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16856,37 +17559,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16894,37 +17597,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16932,60 +17635,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Прикажите или сакријте колоне. + + + Shuffle Tracks + + 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. @@ -16999,67 +17707,78 @@ Click OK to exit. mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Разгледај - + Export directory - + Database version - + Export - + Cancel Откажи - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -17080,7 +17799,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -17090,23 +17809,23 @@ Click OK to exit. mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... @@ -17131,6 +17850,24 @@ Click OK to exit. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17139,4 +17876,27 @@ Click OK to exit. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_sv.qm b/res/translations/mixxx_sv.qm index 77e7ddb9fd1f..a15815628e2d 100644 Binary files a/res/translations/mixxx_sv.qm and b/res/translations/mixxx_sv.qm differ diff --git a/res/translations/mixxx_sv.ts b/res/translations/mixxx_sv.ts index 1d3e98d4d436..324cce0dbd3a 100644 --- a/res/translations/mixxx_sv.ts +++ b/res/translations/mixxx_sv.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Backar - + Enable Auto DJ - + Aktivera Auto DJ - + Disable Auto DJ - + Inaktivera Auto DJ - + Clear Auto DJ Queue - + Remove Crate as Track Source Avlägsna back som låtkälla - + Auto DJ Auto DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Detta kan inte ångras. - + Add Crate as Track Source Lägg till back som låtkälla @@ -118,7 +126,7 @@ Import as Playlist - + Importera som spellista @@ -149,7 +157,7 @@ BasePlaylistFeature - + New Playlist Ny spellista @@ -160,7 +168,7 @@ - + Create New Playlist Skapa ny spellista @@ -190,113 +198,120 @@ 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) Lägg till i Auto-DJ-kön (ersätt) - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: - + Confirm Deletion - + Bekräfta borttagning - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -304,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Tidsstämpel @@ -317,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Kunde inte ladda in låt. @@ -325,140 +340,145 @@ BaseTrackTableModel - + Album Album - + Album Artist Album-artist - + Artist Artist - + Bitrate Bithastighet - + BPM BPM - + Channels Kanaler - + Color Färg - + Comment Kommentar - + Composer Kompositör - + Cover Art Album-konst - + Date Added Datum tillagd - + Last Played Senast spelad - + Duration Varaktighet - + Type Typ - + Genre Genre - + Grouping Gruppindelning - + Key Tonart - + Location Plats - + + Overview + Översikt + + + Preview Förhandsgranska - + Rating Betyg - + ReplayGain Förstärkning av uppspelning - + Samplerate - + Played Spelad - + Title Titel - + Track # Låt # - + Year År - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk - + Hämtar bild ... @@ -477,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. - + Secure password retrieval unsuccessful: keychain access failed. - + Settings error Inställningsfel - + <b>Error with settings for '%1':</b><br> <b>Fel med inställningarna för '%1': </b> <br> @@ -543,67 +563,77 @@ BrowseFeature - + Add to Quick Links Spara till Snabblänkar - + Remove from Quick Links Ta bort från Snabblänkar - + Add to Library Spara till bibliotek - + Refresh directory tree - + Quick Links Snabblänkar - - + + Devices Enheter - + Removable Devices Flyttbara enheter - - + + Computer Dator - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -713,12 +743,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. @@ -749,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: - + Starts Mixxx in full-screen mode Startar Mixxx i fullskärmsläge - + Use a custom locale for loading translations. (e.g 'fr') - + 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -839,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -957,2547 +992,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Hörlursutgång - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Tallrik %1 - + Sampler %1 Samplare %1 - + Preview Deck %1 Förhandsgranska Tallrik %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Extraingång %1 - + Reset to default Återställ till standard - + Effect Rack %1 Effektrack %1 - + Parameter %1 Parameter %1 - + Mixer Mixerbord - - + + Crossfader Crossfader - + Headphone mix (pre/main) Hörlursmix (förlyssning/huvudmix) - + Toggle headphone split cueing Slå på/av delad hörlurslyssning - + Headphone delay Hörlursfördröjning - + Transport Transportera - + Strip-search through track Grundlig genomsökning av låt - + Play button Uppspelningsknapp - - + + Set to full volume Ställ in full ljudstyrka - - + + Set to zero volume Ställ ljudstyrkan till noll - + Stop button Stoppknapp - + Jump to start of track and play Hoppa till början av låten och spela - + Jump to end of track Hoppa till slutet av låten - + Reverse roll (Censor) button Knapp baklänges-slinga (förhandslyssning) - + Headphone listen button Lyssna-knapp hörlur - - + + Mute button Tysta-knapp - + Toggle repeat mode Växla upprepningssätt - - + + 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 - + Toggle slip mode Växla spela-vidaresätt - - + + BPM BPM - + Increase BPM by 1 Öka BPM med 1 - + Decrease BPM by 1 Minska BPM med 1 - + Increase BPM by 0.1 Öka BPM med 0.1 - + Decrease BPM by 0.1 Minska BPM med 0.1 - + BPM tap button Knapp för att trumma BPM - + Toggle quantize mode Växla kvantiseringssätt - + One-time beat sync (tempo only) Engångs takt-sync (endast tempo) - + One-time beat sync (phase only) Engångs takt-sync (endast fas) - + Toggle keylock mode Växla sätt för tonhöjdslås - + Equalizers 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 - + Slot %1 Lucka %1 - + Headphone Mix Hörlursmix - + Headphone Split Cue Delad hörlurslyssning - + Headphone Delay Hörlursfördröjning - + Play Spela - + Fast Rewind Snabbspolning bakåt - + Fast Rewind button Knapp för snabbspolning bakåt - + Fast Forward Snabbspolning framåt - + Fast Forward button Knapp för snabbspolning framåt - + Strip Search Grundlig genomsökning - + Play Reverse Spela baklänges - + Play Reverse button Knapp för spela baklänges - + Reverse Roll (Censor) Baklänges-slinga (förhandslyssning) - + Jump To Start Hoppa till början - + Jumps to start of track Hoppar till början av låten - + Play From Start Spela från början - + Stop Stopp - + Stop And Jump To Start Stoppa och hoppa till början - + Stop playback and jump to start of track Avslutar uppspelning och hoppar till början av låten - + Jump To End Hoppa till slutet - + Volume Volym - - - + + + Volume Fader Volymfader - - + + Full Volume Full volym - - + + Zero Volume Noll volym - + Track Gain Låt-förstärkning - + Track Gain knob Knapp för låt-förstärkning - - + + Mute Tysta - + Eject Mata ut - - + + Headphone Listen Hörlurslyssning - + Headphone listen (pfl) button Hörlurslyssning (pfl) knapp - + Repeat Mode Upprepningssätt - + Slip Mode Spela-vidare-sätt - - + + Orientation Balans - - + + Orient Left Balans till vänster - - + + Orient Center Balans i mitten - - + + Orient Right Balans till höger - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap Trumma BPM - + Adjust Beatgrid Faster +.01 Gör taktmönstret snabbare +.01 - + Increase track's average BPM by 0.01 Öka låtens genomsnittliga BPM med 0.01 - + Adjust Beatgrid Slower -.01 Gör taktmönstret långsamare -.01 - + Decrease track's average BPM by 0.01 Minska låtens genomsnittliga BPM med 0.01 - + Move Beatgrid Earlier Flytta taktmönstret tidigare - + Adjust the beatgrid to the left Justera taktmönstret åt vänster - + Move Beatgrid Later Flytta taktmönstret senare - + Adjust the beatgrid to the right Justera taktmönstret åt höger - + Adjust Beatgrid Justera taktmönster - + Align beatgrid to current position Rikta in taktmönstret mot aktuell position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode Kvantiseringssätt - + Sync Sync - + Beat Sync One-Shot One-Shot takt-synkning - + Sync Tempo One-Shot One-Shot hastighets-synkning - + Sync Phase One-Shot 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 tonart - + Reset Key Återställ tonart - + Resets key to original Återställ tonart till original - + High EQ Diskant-EQ - + Mid EQ Mellan-EQ - - + + Main Output Huvudutgång - + Main Output Balance Huvudutgångs-balans - + Main Output Delay Huvudutgångs-fördröjning - + Main Output Gain - + Low EQ 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 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 - + Show/hide the microphone & auxiliary section - + 4 Effect Units Show/Hide - + Switches between showing 2 and 4 effect units - + Mixer Show/Hide Mixer visa/dölj - + Show or hide the mixer. Visa eller dölj mixern. - + Cover Art Show/Hide (Library) Omslagskonst visa/dölj (bibliotek) - + Show/hide cover art in the library Visa/dölj omslagskonst i biblioteket - + 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 - + Headphone Gain Lyssningsnivå hörlur - + Headphone gain Lyssningsnivå hörlur - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + Playback Speed Uppspelningshastighet - + Playback speed control (Vinyl "Pitch" slider) - + Pitch (Musical key) Tonhöjd - + Increase Speed Öka hastighet - + Adjust speed faster (coarse) - + Increase Speed (Fine) Öka hastigheten (fin) - + 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) Öka hastigheten temporärt (grovt) - + Temporarily Increase Speed (Fine) Öka hastigheten temporärt (fint) - + Temporarily increase speed (fine) Öka hastigheten temporärt (fint) - + Temporarily Decrease Speed Minska hastighet temporärt - + Temporarily decrease speed (coarse) Sänk hastigheten temporärt (grovt) - + Temporarily Decrease Speed (Fine) Sänk hastigheten temporärt (fint) - + Temporarily decrease speed (fine) Sänk hastigheten temporärt (fint) - - + + Adjust %1 Justera %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 Effektenhet %1 - + Button Parameter %1 Knapp-parameter %1 - + Skin Skal - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance Huvudutgångs-balans - + Main Output delay Huvudutgångs-fördröjning - + Headphone Hörlur - - + + Kill %1 - Döda %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" + Nolla %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Halva BPM - + Multiply current BPM by 0.5 - + Multiplicera nuvarande BPM med 0.5 - + 2/3 BPM - + 2/3 BPM - + Multiply current BPM by 0.666 - + Multiplicera nuvarande BPM med 0.666 - + 3/4 BPM - + 3/4 BPM - + Multiply current BPM by 0.75 - + Multiplicera nuvarande BPM med 0.75 - + 4/3 BPM - + 4/3 BPM - + Multiply current BPM by 1.333 - + Multiplicera nuvarande BPM med 1.333 - + 3/2 BPM - + 3/2 BPM - + Multiply current BPM by 1.5 - + Multiplicera nuvarande BPM med 1.5 - + Double BPM - + Dubbla BPM - + Multiply current BPM by 2 - + Multiplicera nuvarande BPM med 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 Hastighet - + Decrease Speed (Fine) - + Pitch (Musical Key) Tonhöjd - + Increase Pitch Öka tonhöjd - + Increases the pitch by one semitone Ökar tonhöjden med en semiton - + Increase Pitch (Fine) Öka tonhöjd (fint) - + Increases the pitch by 10 cents - + Decrease Pitch Minska tonhöjd - + Decreases the pitch by one semitone Minskar tonhöjden med en semiton - + Decrease Pitch (Fine) Minska tonhöjd (fint) - + Decreases the pitch by 10 cents - + Keylock Tangentlås - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 Aktivera %1 - + 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 Rensa %1 - + Clear the %1 [intro/outro marker Rensa %1 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward Flytta loop framåt - + Loop Move Backward Flytta loop bakåt - + Remove Temporary Loop - + Remove the temporary loop - + Navigation Navigering - + Move up Flytta upp - + Equivalent to pressing the UP key on the keyboard Samma som att trycka UPP piltangenten på tangentbordet - + Move down Flytta ned - + Equivalent to pressing the DOWN key on the keyboard Samma som att trycka NER piltangenten på tangentbordet - + 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 Samma som att trycka SIDA UPP tangenten på tangentbordet - + Scroll Down Scrolla ner - + Equivalent to pressing the PAGE DOWN key on the keyboard Samma som att trycka SIDA NER tangenten på tangentbordet - + 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 Samma som att trycka VÄNSTER piltangent på tangentbordet - + Move right Flytta höger - + Equivalent to pressing the RIGHT key on the keyboard Samma som att trycka HÖGER piltangent på tangentbordet - + 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 Samma som att trycka TAB tangenten på tangentbordet - + Move focus to left pane - + Equivalent to pressing the SHIFT+TAB key on the keyboard Samma som att trycka SHIFT + TAB tangenten på tangentbordet - + Move focus to right/left pane - + Move focus one pane to right or left using a knob, as if pressing TAB/SHIFT+TAB keys - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + Go to the currently selected item - + Choose the currently selected item and advance forward one pane if appropriate - + Load Track and Play Ladda låt och spela - + Add to Auto DJ Queue (replace) Lägg till i Auto-DJ-kön (ersätt) - + Replace Auto DJ Queue with selected tracks Ersätt Auto DJ-kön med valda låtar - + Select next search history Välj nästa sökhistorik - + Selects the next search history entry - + Select previous search history Välj föregående sökhistorik - + Selects the previous search history entry - + Move selected search entry - + Moves the selected search history item into given direction and steps - + Clear search Rensa sökning - + Clears the search query Rensar sökningen - - + + Select Next Color Available - + Välj nästa tillgängliga färg - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Välj föregående tillgängliga färg - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 Quick Effect Enable Button + + + + Enable or disable effect processing Aktivera eller inaktivera effektbearbetning - + 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 Metaratts-läge - + 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 Knappparameter-värde - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting Starta/stoppa livesändning - + Stream your mix over the Internet. Streama din mix över internet. - + Start/stop recording your mix. Starta/stoppa inspelning av din mix. - - + + + Deck %1 Stems + + + + + Samplers Samplare - + 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 Visa/dölj alla snurrisar - + Toggle Waveforms Växla vågformer - + Show/hide the scrolling waveforms. Visa/dölj de scrollande vågformerna. - + 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 Stjärnbetyg upp - + Increase the track rating by one star Öka låtbetyget med en stjärna - + Star Rating Down Stjärnbetyg ner - + Decrease the track rating by one star Minska låtbetyget med en stjärna @@ -3507,6 +3580,159 @@ trace - Above + Profiling messages Unknown + Okänd + + + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile @@ -3596,12 +3822,12 @@ trace - Above + Profiling messages FPS: n/a - + FPS: n/a Unnamed - + Namnlös @@ -3612,32 +3838,32 @@ trace - Above + Profiling messages 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. @@ -3645,27 +3871,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: Fil: - + Error: Fel: @@ -3698,7 +3924,7 @@ trace - Above + Profiling messages - + Lock Lås @@ -3728,7 +3954,7 @@ trace - Above + Profiling messages Låtkälla för Auto DJ - + Enter new name for crate: Ange ett namn för den nya backen: @@ -3745,59 +3971,53 @@ trace - Above + Profiling messages 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. - + Confirm Deletion - + Bekräfta borttagning - - + + 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) - + M3U Playlist (*.m3u) M3U-spellista (*.m3u) @@ -3806,23 +4026,29 @@ trace - Above + Profiling messages 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. + + + + Export to Engine DJ + Exportera till Engine DJ + Crates let you organize your music however you'd like! Med backar kan du organisera din musik hur du vill - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3917,12 +4143,12 @@ trace - Above + Profiling messages Tidigare bidragsgivare - + Official Website Officiell webbplats - + Donate Donera @@ -3955,7 +4181,7 @@ trace - Above + Profiling messages Qt Version: - + Qt-version: @@ -4275,7 +4501,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Disabled - + Inaktiverad @@ -4438,37 +4664,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Om länkningen inte fungerar, försök med att aktivera en av de avancerade optionerna nedan och försök använda styrenheten igen. Du kan också klicka på Försök igen för att låta Mixxx söka efter MIDI-styrenhet på nytt. - + Didn't get any midi messages. Please try again. Kunde inte ta emot några MIDI-meddelanden. Försök igen. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. Kunde inte upptäcka någon länk -- försök igen. Tänk på att bara röra en styrfunktion åt gången. - + Successfully mapped control: Mappning av styrfunktion lyckades: - + <i>Ready to learn %1</i> <i>Redo att lära in %1</i> - + Learning: %1. Now move a control on your controller. Lära in: %1. Rör en knapp på din styrenhet. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4507,17 +4733,17 @@ You tried to learn: %1,%2 Dumpa till csv - + Log Logg - + Search Sök - + Stats Statistik @@ -4713,122 +4939,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic Automatiskt - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed Åtgärden misslyckades - + You can't create more than %1 source connections. Du kan inte skapa fler än %1 källanslutning. - + Source connection %1 Källanslutning %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + Inställningar för %1 + + + At least one source connection is required. Minst en källanslutning krävs. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required Bekräftelse krävs - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? Är du säker på att du vill ta bort '%1'? - + Renaming '%1' Döper om '%1' - + New name for '%1': Nytt namn för '%1': - + Can't rename '%1' to '%2': name already in use Kan inte byta namn på '%1' till '%2': namnet används redan @@ -4841,27 +5084,27 @@ Two source connections to the same server that have the same mountpoint can not Livesändnings-inställningar - + Mixxx Icecast Testing Testa Mixxx Icecast - + Public stream publik strömning - + http://www.mixxx.org http://www.mixxx.org - + Stream name Namn på strömning - + 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. På grund av brister hos vissa streaming-klienter, kan dynamiska uppdateringar av Ogg Vorbis-metadata orsaka avbrott och urkopplingar. Klicka på denna ruta för att uppdatera metadata i alla fall. @@ -4901,67 +5144,72 @@ Two source connections to the same server that have the same mountpoint can not Inställningar för %1 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Uppdatera Ogg Vorbis metadata dynamiskt. - + ICQ ICQ - + AIM AIM - + Website Webbplats - + Live mix Livemix - + IRC IRC - + Select a source connection above to edit its settings here - + Password storage Lösenordslagring - + Plain text Vanlig text - + Secure storage (OS keychain) - + Genre Genre - + Use UTF-8 encoding for metadata. Använd UTF-8-kodning för metadata. - + Description Beskrivning @@ -4987,42 +5235,42 @@ Two source connections to the same server that have the same mountpoint can not Kanaler - + Server connection Serveranslutning - + Type Typ - + Host Värdnamn: - + Login Logga in - + Mount Montera - + Port Port - + Password Lösenord - + Stream info Ström-info @@ -5032,17 +5280,17 @@ Two source connections to the same server that have the same mountpoint can not Metadata - + Use static artist and title. Använd statisk artist och titel. - + Static title Statisk titel - + Static artist Statisk artist @@ -5101,13 +5349,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color Färg @@ -5152,17 +5401,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5170,114 +5424,114 @@ associated with each key. DlgPrefController - + Apply device settings? Verkställ enhetsinställningar? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Dina inställningar måste verkställas innan läriin-guiden kan startas. Spara inställningarna och fortsätt? - + None Ingen - + %1 by %2 %1 av %2 - + Mapping has been edited Mappning har redigerats - + Always overwrite during this session - + Save As Spara som - + Overwrite Skriv över - + Save user mapping Spara användarmappning - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed Misslyckades med sparande av mappning - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. En mappningsfil med det namnet finns redan. - + Do you want to save the changes? Vill du spara ändringarna? - + Troubleshooting Felsökning - + <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. Mappning finns redan. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Rensa ingångs-länkningar - + Are you sure you want to clear all input mappings? Är du säker på att du vill rensa alla ingångs-länkningar? - + Clear Output Mappings Rensa utgångs-länkningar - + Are you sure you want to clear all output mappings? Är du säker på att du vill rensa alla utgångs-länkningar? @@ -5295,100 +5549,105 @@ Spara inställningarna och fortsätt? Aktiverad - - Device Info + + Refresh mapping list - + + Device Info + Enhetsinformation + + + Physical Interface: - + Vendor name: - + Product name: - + Produktnamn: - + Vendor ID - + VID: - + VID: - + Product ID - + PID: - + PID: - + Serial number: - + Serienummer: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Beskrivning: - + Support: Hjälp: - + Screens preview - + Input Mappings Ingångs-länkningar - - + + Search Sök - - + + Add Lägg till - - + + Remove Ta bort @@ -5408,17 +5667,17 @@ Spara inställningarna och fortsätt? Ladda mappning: - + Mapping Info Mappningsinfo - + Author: Upphovsman: - + Name: Namn: @@ -5428,28 +5687,28 @@ Spara inställningarna och fortsätt? Lär in-guiden (endast MIDI) - + Data protocol: - + Dataprotokoll: - + Mapping Files: Mappningsfiler: - + Mapping Settings - - + + Clear All Rensa allt - + Output Mappings Utgångs-länkningar @@ -5464,21 +5723,21 @@ Spara inställningarna och fortsätt? - 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide Mixxx DJ hårdvaruguide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5608,6 +5867,16 @@ Spara inställningarna och fortsätt? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5637,137 +5906,137 @@ Spara inställningarna och fortsätt? DlgPrefDeck - + Mixxx mode Mixxx-metod - + Mixxx mode (no blinking) - + Pioneer mode Pioneer-metod - + Denon mode Denon-metod - + Numark mode Numark-metod - + CUP mode CUP-läge - + mm:ss%1zz - Traditional mm:ss%1zz - Traditionell - + mm:ss - Traditional (Coarse) mm:ss - Traditionell (grov) - + s%1zz - Seconds s%1zz - Sekunder - + sss%1zz - Seconds (Long) sss%1zz - Sekunder (Lång) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - Kilosekunder - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) Första ljud (hoppa över tystnad) - + Beginning of track Början på låt - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% 4% - + 6% (semitone) 6% (semiton) - + 8% (Technics SL-1210) 8% (Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6053,7 +6322,7 @@ You can always drag-and-drop tracks on screen to clone a deck. Use steady tempo - + Använd stadigt tempo @@ -6143,12 +6412,12 @@ You can always drag-and-drop tracks on screen to clone a deck. - + - + @@ -6199,62 +6468,62 @@ 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 - + Disabled - + Inaktiverad - + 2x MSAA - + 2x MSAA - + 4x MSAA - + 4x MSAA - + 8x MSAA - + 8x MSAA - + 16x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6310,7 +6579,7 @@ and allows you to pitch adjust them for harmonic mixing. Disabled - + Inaktiverad @@ -6481,67 +6750,97 @@ and allows you to pitch adjust them for harmonic mixing. Se manualen för detaljer - + 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 - + Item is not a directory or directory is missing - + 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. - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Välj biblioteksfont @@ -6590,262 +6889,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Filformat för audio - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Biblioteksfont: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 500 px - + 250 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder Öppna Mixxx-inställningar-mappen - + Library Row Height: Biblioteksradhöjd: - + Use relative paths for playlist export if possible Använd om möjligt relativa sökvägar vid export av spellista - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track Redigera metadata efter klick på vald låt - + Search-as-you-type timeout: - + ms ms - + Load track to next available deck Ladda låt till nästa tillgängliga tallrik - + External Libraries Externa bibliotek - + You will need to restart Mixxx for these settings to take effect. Du måste starta om Mixxx för att dessa ändringar ska gälla. - + Show Rhythmbox Library Visa Rhythmbox-bibliotek - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore Ignorera - + Show Banshee Library Visa Banshee-bibliotek - + Show iTunes Library Visa iTunes-bibliotek - + Show Traktor Library Visa Traktor-bibliotek - + Show Rekordbox Library Visa Rekordbox-bibliotek - + Show Serato Library Visa Serato-bibliotek - + All external libraries shown are write protected. Alla externa bibliotek är skrivskyddade. @@ -7190,33 +7494,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Välj en mapp för inspelningar - - + + Recordings directory invalid Inspelningsmapp ogiltig - + Recordings directory must be set to an existing directory. Inspelningsmapp måste vara inställt på en befintlig mapp. - + Recordings directory must be set to a directory. Inspelningsmapp måste vara inställt på en mapp. - + Recordings directory not writable Inspelningsmapp inte skrivbar - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7234,43 +7538,55 @@ and allows you to pitch adjust them for harmonic mixing. Bläddra... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Kvalitet - + Tags Etiketter - + Title Titel - + Author Upphovsman - + Album Album - + Output File Format Ut-filformat - + Compression Kompression - + Lossy @@ -7285,12 +7601,12 @@ and allows you to pitch adjust them for harmonic mixing. Mapp: - + Compression Level Kompressionsgrad - + Lossless @@ -7421,173 +7737,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Standard (lång fördröjning) - + Experimental (no delay) Experimentell (ingen fördröjning) - + Disabled (short delay) Avstängd (kort fördröjning) - + Soundcard Clock Ljudkortsklocka - + Network Clock Nätverksklocka - + Direct monitor (recording and broadcasting only) - + Disabled Avstängd - + Enabled Aktiverad - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide Mixxx DJ hårdvaruguide - - Information + + Find details in the Mixxx user manual - + + Information + Information + + + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Är du säker? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Nej - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Konfigurationsfel @@ -7605,131 +7925,136 @@ The loudness target is approximate and assumes track pregain and main output lev Ljud-API - + Sample Rate Samplingsfrekvens - + Audio Buffer Ljudbuffert - + Engine Clock Motorklocka - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix Huvudmix - + Main Output Mode Huvudutgångsläge - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Sammanräkning Buffer Underflow - + 0 0 - + Keylock/Pitch-Bending Engine Tonhöjds/pitch-bend rutin - + Multi-Soundcard Synchronization Synkronisering av flera ljudkort. - + Output Utgång - + Input Ingång - + System Reported Latency Systemets rapporterade latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Utvidga din audio-buffert om underströms-räknaren ökar på, eller om du hör smällar under uppspelning. - + Main Output Delay Huvudutgångs-fördröjning - + Headphone Output Delay Hörlursutgångs-fördröjning - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics Tips och diagnostik - + Downsize your audio buffer to improve Mixxx's responsiveness. Minska din audio-buffert för Mixxx ska reagera snabbare. - + Query Devices Fråga enheter @@ -7771,7 +8096,7 @@ The loudness target is approximate and assumes track pregain and main output lev Konfigurera vinyl - + Show Signal Quality in Skin Visa signalkvaliteten i skinnet @@ -7807,46 +8132,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Signalkvalitet - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + Drivs av xwax - + Hints Tips - + Select sound devices for Vinyl Control in the Sound Hardware pane. Välj ljudenheter för vinylstyrning i panelen för ljudhårdvara. @@ -7854,58 +8184,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrerad - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL är inte tillgängligt - + dropped frames tappade frames - + Cached waveforms occupy %1 MiB on disk. @@ -7923,22 +8253,17 @@ The loudness target is approximate and assumes track pregain and main output lev Bildhastighet - + OpenGL Status - + OpenGL-status - + Displays which OpenGL version is supported by the current platform. Visar vilken OpenGL-version som understöds av den aktuella plattformen. - - Normalize waveform overview - Normalisiera vågforms-översikten - - - + Average frame rate Genomsnittlig bildhastighet @@ -7954,7 +8279,7 @@ The loudness target is approximate and assumes track pregain and main output lev Standardzoomläge - + Displays the actual frame rate. Visar den aktuella bildhastigheten. @@ -7989,14 +8314,14 @@ The loudness target is approximate and assumes track pregain and main output lev Låg - + Show minute markers on waveform overview Use acceleration - + Använd acceleration @@ -8034,7 +8359,7 @@ The loudness target is approximate and assumes track pregain and main output lev Global visuell förstärkning - + 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. @@ -8042,7 +8367,7 @@ Select from different types of displays for the waveform overview, which differ Enabled - + Aktiverad @@ -8053,7 +8378,7 @@ Select from different types of displays for the waveform, which differ primarily fps - + fps @@ -8093,7 +8418,7 @@ Select from different types of displays for the waveform, which differ primarily Placement - + Placering @@ -8101,22 +8426,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching Cachar - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8132,9 +8457,9 @@ Select from different types of displays for the waveform, which differ primarily - + Type - + Typ @@ -8162,12 +8487,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms + Översikt vågformer + + + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings - + Clear Cached Waveforms @@ -8175,47 +8546,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Ljudhårdvara - + Controllers Styrenheter - + Library Bibliotek - + Interface Gränssnitt - + Waveforms Vågformer - + Mixer Mixerbord - + Auto DJ Auto DJ - + Decks - + Colors Färger @@ -8250,47 +8621,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Effekter - + 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> - + Vinyl Control Vinylstyrning - + Live Broadcasting Livesändning - + Modplug Decoder Modplug-avkodare @@ -8524,7 +8895,7 @@ Select from different types of displays for the waveform, which differ primarily Tags - + Taggar @@ -8554,7 +8925,7 @@ Select from different types of displays for the waveform, which differ primarily %1 - + %1 @@ -8646,286 +9017,291 @@ This can not be undone! Sammanfattning - + Filetype: Filtyp: - + BPM: BPM: - + Location: Plats: - + Bitrate: Bithastighet: - + Comments Kommentarer - + BPM BPM - + Sets the BPM to 75% of the current value. Ställer BPM till 75% av det aktuella värdet. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Ställer BPM till 50% av det aktuella värdet. - + Displays the BPM of the selected track. Visar BPM för den utvalda låten. - + Track # Låt # - + Album Artist Album-artist - + Composer Kompositör - + Title Titel - + Grouping Gruppindelning - + Key Tonart - + Year År - + Artist Artist - + Album Album - + Genre Genre - + ReplayGain: ReplayGain: - + Sets the BPM to 200% of the current value. Ställer BPM till 200% av det aktuella värdet. - + Double BPM Dubbel BPM - + Halve BPM Halva BPM - + Clear BPM and Beatgrid Rensa BPM och taktmönster - + Move to the previous item. "Previous" button Hoppa till föregående objekt. - + &Previous &Föregående - + Move to the next item. "Next" button Hoppa till nästa objekt. - + &Next &Nästa - + Duration: Speltid: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color Färg - + Date added: Datum tillagd: - + Open in File Browser Öppna i filhanteraren - + Samplerate: - + + Filesize: + + + + Track BPM: Låt BPM: - + 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. - + Assume constant tempo Anta konstant tempo - + Sets the BPM to 66% of the current value. Ställer BPM till 66% av det aktuella värdet. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Knacka i takt med musiken för att ställa in BPM till hastigheten du knackar med. - + Tap to Beat Trumma i takt - + Hint: Use the Library Analyze view to run BPM detection. Tips: använd Biblioteksanalysatorn för köra BPM-mätning. - + Save changes and close the window. "OK" button Spara ändringarna och stäng fönstret. - + &OK - &OK + - + Discard changes and close the window. "Cancel" button Ignorera ändringar och stäng fönstret. - + Save changes and keep the window open. "Apply" button Spara ändringar och hålla fönstret öppet. - + &Apply &Verkställ - + &Cancel &Avbryt - + (no color) - + (ingen färg) @@ -8938,17 +9314,17 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Title - + Titel Artist - + Artist Album - + Album @@ -8963,12 +9339,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Year - + År Genre - + Genre @@ -8988,7 +9364,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Comments - + Kommentarer @@ -8998,22 +9374,22 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Color - + Färg Duration: - + Längd: Filetype: - + Filtyp: BPM: - + BPM: @@ -9028,7 +9404,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Location: - + Plats: @@ -9080,9 +9456,9 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) - + (ingen färg) @@ -9174,7 +9550,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Invalid name "%1" - + Ogiltigt namn "%1" @@ -9270,7 +9646,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Built-In Backend type for effects that are built into Mixxx. - + Inbyggd @@ -9282,27 +9658,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9345,7 +9721,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Title - + Artist + Titel @@ -9355,7 +9731,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Album - + Artist + Album @@ -9373,7 +9749,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Title - + Artist + Titel @@ -9383,7 +9759,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Album - + Artist + Album @@ -9401,7 +9777,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Title - + Artist + Titel @@ -9411,7 +9787,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Artist + Album - + Artist + Album @@ -9487,12 +9863,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Change color - + Ändra färg Choose a new color - + Välj en ny färg @@ -9500,32 +9876,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h Browse... - + Bläddra... No file selected - + Ingen fil vald Select a file - + Välj en fil 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 @@ -9537,57 +9913,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9595,62 +9971,62 @@ stöd. Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9660,22 +10036,22 @@ Aborting the operation to avoid library inconsistencies LibraryFeature - + Import Playlist Importera spellista - + Playlist Files (*.m3u *.m3u8 *.pls *.csv) Spellistsfiler (*.m3u *.m3u8 *.pls *.csv) - + Overwrite File? Skriv över fil? - + A playlist file with the name "%1" already exists. The default "m3u" extension was added because none was specified. @@ -9722,27 +10098,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found MixxxControl(s) hittades inte - + 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: - + Some LEDs or other feedback may not work correctly. Vissa lysdioder eller andra indikatorer kanske inte fungerar korrekt. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) * Kontrollera att MixxxControl-namnen är rättstavade i länknings-filen (.xml) @@ -9803,22 +10179,22 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks Saknade låtar - + Hidden Tracks Döljda låtar - - Export to Engine Prime - + + Export to Engine DJ + Exportera till Engine DJ - + Tracks Spår @@ -9826,210 +10202,251 @@ 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 skal - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Dölj - + Always show - + Visa alltid - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - + Fråga mig igen - - + + 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? - + + Scan took %1 + + + + + No changes detected. + Inga ändringar upptäcktes. + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10045,13 +10462,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Lås - - + + Playlists Spellistor @@ -10061,32 +10478,63 @@ Do you want to select an input device? - + + Adopt current order + + + + + Unlock all playlists + Lås upp alla spellistor + + + + Delete all unlocked playlists + Ta bort alla olåsta spellistor + + + Unlock Lås upp - + + + Confirm Deletion + Bekräfta borttagning + + + + Do you really want to delete all unlocked playlists? + Vill du verkligen ta bort alla olåsta spellistor? + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 @@ -10185,58 +10633,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 @@ -10307,7 +10755,7 @@ Do you want to scan your library for cover files now? Button - + Knapp @@ -10337,7 +10785,7 @@ Do you want to scan your library for cover files now? Script - + Skript @@ -10350,69 +10798,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Hörlurar - + Left Bus + Audio path indetifier Vänster databuss - + Center Bus + Audio path indetifier Mitten-databuss - + Right Bus + Audio path indetifier Höger databuss - + Invalid Bus + Audio path indetifier Ogiltig databuss - + Deck + Audio path indetifier Tallrik - + Record/Broadcast + Audio path indetifier Spela in/sänd - + Vinyl Control + Audio path indetifier Vinylstyrning - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier Extraingång - + Unknown path type %1 + Audio path Okänd sökvägstyp %1 @@ -10741,47 +11202,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang Bredd - + Metronome Metronom - + + The Mixxx Team - + Mixxx-teamet - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync Sync - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -10845,7 +11308,7 @@ With width at zero, this allows for manually sweeping over the entire delay rang Decay - + Decay @@ -10901,7 +11364,7 @@ Higher values result in less attenuation of high frequencies. Kill Low - + Nolla bas @@ -10936,7 +11399,7 @@ Higher values result in less attenuation of high frequencies. Kill Mid - + Nolla mellan @@ -10957,7 +11420,7 @@ Higher values result in less attenuation of high frequencies. Kill High - + Nolla diskant @@ -11565,19 +12028,19 @@ Fully right: end of the effect period - - + + encoder failure kodare-fel - - + + Failed to apply the selected settings. - + Deck %1 Tallrik %1 @@ -11710,7 +12173,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11738,10 +12201,10 @@ Hint: compensates "chipmunk" or "growling" voices (empty) - + (tom) - + Sampler %1 @@ -11749,7 +12212,7 @@ Hint: compensates "chipmunk" or "growling" voices Compressor - + Kompressor @@ -11770,23 +12233,94 @@ and the processed output signal as close as possible in perceived loudness Off - + Av On + + + + + Auto Gain Control + + + + + AGC + AGC + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + Mål + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11815,6 +12349,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11825,11 +12360,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11841,11 +12378,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11861,7 +12400,7 @@ may introduce a 'pumping' effect and/or distortion. Level - + Nivå @@ -11874,12 +12413,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + inbyggd - + missing @@ -11891,7 +12430,7 @@ may introduce a 'pumping' effect and/or distortion. Warning! - + Varning! @@ -11914,44 +12453,44 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Tom - + Simple - + Enkel - + Filtered - + Filtrerad - + HSV - + HSV - + VSyncTest - + VSyncTest - + RGB - + RGB - + Stacked - + Unknown - + Okänd @@ -12007,54 +12546,54 @@ may introduce a 'pumping' effect and/or distortion. RekordboxFeature - - - + + + Rekordbox Rekordbox - + Playlists Spellistor - + Folders Mappar - + 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 (laddar) Rekordbox @@ -12192,7 +12731,7 @@ may introduce a 'pumping' effect and/or distortion. Confirm Deletion - + Bekräfta borttagning @@ -12210,193 +12749,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx har stött på ett problem - + Could not allocate shout_t Kunde inte allokera shout_t - + Could not allocate shout_metadata_t Kunde inte allokera shout_metadata_t - + Error setting non-blocking mode: Kunde inte ställa in icke-blockerande modus! - + Error setting tls mode: - + Error setting hostname! Kunde inte ställa in hostname! - + Error setting port! Kunde inte ställa in port! - + Error setting password! Kunde inte ställa in lösenord! - + Error setting mount! Kunde inte ställa in mount! - + Error setting username! Kunde inte ställa in användarnamn! - + Error setting stream name! Kunde inte ställa in stream-namn! - + Error setting stream description! Kunde inte ställa in stream-beskrivning! - + Error setting stream genre! Kunde inte ställa in stream-genre! - + Error setting stream url! Kunde inte ställa in stream-url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Bithastighet kunde inte sättas - + Error: unknown server protocol! Fel: okänt serverprotokoll! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Kunde inte ställa in protokoll! - + Network cache overflow - + Connection error Anslutningsfel - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message Anslutningsmeddelande - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. Förlorade anslutning till streamingserver. - + Please check your connection to the Internet. - + Can't connect to streaming server Kan inte ansluta till streaming-server - + Please check your connection to the Internet and verify that your username and password are correct. Var god kontrollera anslutningen till Internet och verifiera att användarnamn och lösenord är korrekta. @@ -12404,7 +12943,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrerad @@ -12412,23 +12951,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device en enhet - + An unknown error occurred Ett okänt fel inträffade - + Two outputs cannot share channels on "%1" - + Error opening "%1" Fel vid öppning av "%1" @@ -12613,7 +13152,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Vinylsnurra @@ -12795,7 +13334,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Album-konst @@ -12985,243 +13524,243 @@ may introduce a 'pumping' effect and/or distortion. Spärrar förstärkningen för låg-EQ-filtret när aktiverad. - + Displays the tempo of the loaded track in BPM (beats per minute). Visar den inlästa låtens tempo i BPM (taktslag per minut). - + Tempo Tempo - + Key The musical key of a track Tonart - + BPM Tap Trumma BPM - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Om du trummar upprepade gånger, justeras BPM till att stämma överens med takten du trummar. - + Adjust BPM Down Justera BPM nedåt - + When tapped, adjusts the average BPM down by a small amount. När du trummar här, ändras BPM nedåt något. - + Adjust BPM Up Justera BPM uppåt - + When tapped, adjusts the average BPM up by a small amount. När du trummar här, ändras BPM uppåt något. - + Adjust Beats Earlier Justera taktslag tidigare - + When tapped, moves the beatgrid left by a small amount. När du trummar här, flyttar sej taktmönstret åt vänster ett kort stycke. - + Adjust Beats Later Justera taktslag senare - + When tapped, moves the beatgrid right by a small amount. När du trummar här, flyttar sej taktmönstret åt höger ett kort stycke. - + Tempo and BPM Tap Trumma tempo och BPM - + Show/hide the spinning vinyl section. Visa/dölj sektionen med vinylsnurror. - + Keylock Tangentlås - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Spela - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration Inspelningslängd @@ -13386,7 +13925,7 @@ may introduce a 'pumping' effect and/or distortion. Speed Up - + Snabba upp @@ -13401,7 +13940,7 @@ may introduce a 'pumping' effect and/or distortion. Slow Down - + Bromsa ner @@ -13444,941 +13983,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable Huvudmix aktivera - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active Auto-DJ är aktivt - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. Klicka för att växla mellan tid förflutet/återstående tid/både. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix Mix - + 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: Add wet to dry - + Mix Mode Mixläge - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Stilinställningar-meny - + Show/hide skin settings menu Visa/dölj stilinställningar-menyn - + Save Sampler Bank Spara samplar-uppsättning - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Ladda in samplar-uppsättning - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters Visa effektparametrar - + Enable Effect Aktivera effekt - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Superknapp - + Next Chain Nästa kedja - + Previous Chain Föregående kedja - + Next/Previous Chain Nästa/föregående kedja - + Clear Rensa - + Clear the current effect. Rensa nuvarande effekt. - + Toggle Växla - + Toggle the current effect. Växla nuvarande effekt. - + Next Nästa - + Clear Unit Rensa enhet - + Clear effect unit. Rensa effektenhet. - + Show/hide parameters for effects in this unit. Visa/dölj parametrar för effekter i denna enhet. - + Toggle Unit Växla enhet - + Enable or disable this whole effect unit. Aktivera eller inaktivera hela denna effektenhet. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit Tilldela effektenhet - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. Skickar hörlursljudet genom den här effekten. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the 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 the next or previous effect. Växla till antingen nästa eller föregående effekt. - + Meta Knob Meta-ratt - + Controls linked parameters of this effect Kontrollerar länkade parametrar på denna effekt - + Effect Focus Button Effektfokus-knapp - + Focuses this effect. Fokuserar denna effekt. - + Unfocuses this effect. Avfokuserar denna effekt. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Effektparameter - + Adjusts a parameter of the effect. Justerar en parameter av effekten. - + Inactive: parameter not linked Inaktiv: parameter inte länkad - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter Equalizerparameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Justera taktmönster - + Adjust beatgrid so the closest beat is aligned with the current play position. Justerar taktmönstret så att det närmaste taktslaget stämmer överens med den aktuella uppspelningspositionen. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. Hoppar till närmaste taktslag om kvantisering är aktiverad. - + Quantize Kvantisering - + Toggles quantization. Slår på/av kvantisering. - + Loops and cues snap to the nearest beat when quantization is enabled. Slingor och markeringar snäpper till närmaste taktslag när kvantisering är aktiverad. - + Reverse Baklänges - + Reverses track playback during regular playback. Spelar låten baklänges under vanlig uppspelning. - + Puts a track into reverse while being held (Censor). Spelar en låt baklänges så länge knappen trycks ned (censur) - + Playback continues where the track would have been if it had not been temporarily reversed. Uppspelningen fortsätter från den position den skulle varit om inte låten spelats baklänges tillfälligt. - - - + + + Play/Pause Spela/Paus - + Jumps to the beginning of the track. Hoppar till början av låten. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. Ökar tonhöjden med en semiton. - + Decreases the pitch by one semitone. Minskar tonhöjden med en semiton. - + Enable Vinyl Control Aktivera vinylkontroll - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Indikerar att ljudbufferten är för liten för att kunna bearbeta allt ljud korrekt. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating Stjärnbetyg - + Assign ratings to individual tracks by clicking the stars. @@ -14513,33 +15093,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Börjar spela från början av låten. - + Jumps to the beginning of the track and stops. Hoppa till början av låten och stoppa. - - + + Plays or pauses the track. Spelar eller pausar låten. - + (while playing) (vid uppspelning) @@ -14559,215 +15139,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (medan stoppad) - + Cue Markering - + Headphone Hörlur - + Mute Tysta - + Old Synchronize Äldre synkning - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Synkroniserar till den första tallriken (i nummerordning) som spelar en låt och har BPM-information. - + If no deck is playing, syncs to the first deck that has a BPM. Synkroniserar till tallriken som har en BPM, om någon tallrik spelar. - + 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. - + Hold for at least a second to enable sync lock for this deck. Håll ner i minst en sekund för att aktivera Sync Lock för den här tallriken. - + 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. Tallrikar med Sync Lock spelar i samma tempo, och tallrikar som också har aktiverad kvantisering spelas alltid med samtidiga taktslag. - + Resets the key to the original track key. - + Speed Control Hastighetsstyrning - - - + + + Changes the track pitch independent of the tempo. Ändrar låtens tonhöjd oberoende av tempot. - + Increases the pitch by 10 cents. Ökar pitchen med 10 cents. - + Decreases the pitch by 10 cents. Minskar pitchen med 10 cents. - + Pitch Adjust Justera hastighet - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Spela in mix - + Toggle mix recording. Växla mixinspelning. - + Enable Live Broadcasting Aktivera livesändning - + Stream your mix over the Internet. Streama din mix över internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. inaktiverad, ansluter, ansluten, misslyckande. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. Uppspelningen fortsätter från den position den skulle ha varit om låten inte hade lagts in i slingan. - + Loop Exit Avsluta slinga - + Turns the current loop off. Stänger av aktuell slinga. - + Slip Mode Spela-vidare-sätt - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Uppspelningen fortsätter tyst samtidigt som du använder slingor, baklängesspelning, scratchning, o.s.v. när denna funktion är aktiverad. - + Once disabled, the audible playback will resume where the track would have been. Vid avstängning fortsätter uppspelningen från det ställe låten skulle ha varit. - + Track Key The musical key of a track Låtens tonart - + Displays the musical key of the loaded track. Visar den laddade låtens tonart. - + Clock Klocka - + Displays the current time. Visar aktuell tid. - + Audio Latency Usage Meter Ljudlatensanvändningsmätare - + Displays the fraction of latency used for audio processing. Visar hur stor del av latensen som används för ljudbehandlingen. - + A high value indicates that audible glitches are likely. Ett högt värde tyder på att hörbara störningar är troliga. - + Do not enable keylock, effects or additional decks in this situation. Aktivera inte tonhöjdslås, effekter eller ytterligare tallrikar i denna situation. - + Audio Latency Overload Indicator Indikator för ljudlatensöverbelastning @@ -14807,259 +15387,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Aktivera vinylstyrning i Meny -> Inställningar. - + Displays the current musical key of the loaded track after pitch shifting. Visar låtens aktuella tonart efter tonhöjdsändring. - + Fast Rewind Snabbspolning bakåt - + Fast rewind through the track. Spolar låten snabbt bakåt. - + Fast Forward Snabbspolning framåt - + Fast forward through the track. Spolar låten snabbt framåt. - + Jumps to the end of the track. Hoppar till slutet av låten. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control Tonhöjdsstyrning - + Pitch Rate Tonhöjdshastighet - + Displays the current playback rate of the track. Visar uppspelningshastigheten för spåret som spelas upp. - + Repeat Upprepa - + When active the track will repeat if you go past the end or reverse before the start. Om aktiverad repeteras låten om du fortsätter bortom slutet eller backar före början. - + Eject Mata ut - + Ejects track from the player. Matar ut låten från spelaren. - + Hotcue Snabbmarkering - + If hotcue is set, jumps to the hotcue. Hoppar till en snabbmarkering, om den existerar - + If hotcue is not set, sets the hotcue to the current play position. Sätter en snabbmarkering vid aktuell position, om ingen snabbmarkering existerar. - + Vinyl Control Mode Vinylstyrningssätt - + Absolute mode - track position equals needle position and speed. Absolut modus - låtpositionen är samma som nålpositionen och -hastigheten. - + Relative mode - track speed equals needle speed regardless of needle position. Relativ modus - låthastigheten är samma som nålhastigheten, oavsett av nålpositionen. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Konstant modus - låthastigheten är samma som den sist använda, jämna hastigheten, oavsett nålinformationen. - + Vinyl Status Vinylstatus - + Provides visual feedback for vinyl control status: Tillhandahåller visuell feed-back av vinylstyrning: - + Green for control enabled. Grönt för aktiverad styrenhet. - + Blinking yellow for when the needle reaches the end of the record. Blinkande gult när nålen når slutet av skivan. - + Loop-In Marker Loop-in-markering - + Loop-Out Marker Loop-out-markering - + Loop Halve Halv slinga - + Halves the current loop's length by moving the end marker. Halverar längden av den aktuella slingan genom att flytta slutmarkeringen. - + Deck immediately loops if past the new endpoint. Om bortom den nya slutpunkten hoppar tallriken genast tillbaks i slingan. - + Loop Double Dubbel slinga - + Doubles the current loop's length by moving the end marker. Dubblar längden av den aktuella slingan genom att flytta slutmarkeringen. - + Beatloop Taktslinga - + Toggles the current loop on or off. Slår på/av aktuell slinga - + Works only if Loop-In and Loop-Out marker are set. Fungerar bara om både loop-in- och loop-out-markeringar har satts. - + Vinyl Cueing Mode Vinylmarkeringssätt - + Determines how cue points are treated in vinyl control Relative mode: Bestämmer hur markeringspunkter behandlas i relativ modus för vinylstyrning: - + Off - Cue points ignored. Av - Markeringspunkter ignoreras. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Enkelmarkering - om du släpper ner nålen efter markeringen, kommer låten att hoppa till denna markering. - + Track Time Låtens tidsläge - + Track Duration Låtens speltid - + Displays the duration of the loaded track. Visar speltiden för den laddade låten. - + Information is loaded from the track's metadata tags. Informationen laddas från låtens metadatataggar. - + Track Artist Låtens artist - + Displays the artist of the loaded track. Visar artisten för den laddade låten. - + Track Title Låtens titel - + Displays the title of the loaded track. Visar titeln för den laddade låten. - + Track Album Låtens album - + Displays the album name of the loaded track. Visar albumnamnet för den laddade låten. - + Track Artist/Title Låtens artist/titel - + Displays the artist and title of the loaded track. Visar artisten och titeln för den laddade låten. @@ -15067,12 +15647,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks Döljer spår - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15287,47 +15867,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... Etikett... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current beatloop size as the loop size - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: Use the current play position as new loop end if it is after the cue - + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + + + + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + + + + + Right-click: use current play position as new jump start position + + + + Hotcue #%1 @@ -15347,7 +15955,7 @@ This can not be undone! Save As New Preset... - + Spara som nytt förval... @@ -15390,7 +15998,7 @@ This can not be undone! Find on Web - + Hitta på webben @@ -15452,323 +16060,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + Ctrl+F + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Skapa &ny spellista - + Create a new playlist Skapa en ny spellista. - + Ctrl+n Ctrl+n - + Create New &Crate Skapa ny &back - + Create a new crate Skapa en ny back - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View &Vy - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Fungerar möjligen inte för alla skinn. - + Show Skin Settings Menu Visa stilinställningar-menyn - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section Visa mikrofonsektionen - + Show the microphone section of the Mixxx interface. Visa Mixxx mikrofonsektion. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section Visa vinylstyrningssektionen - + Show the vinyl control section of the Mixxx interface. Visa Mixxx sektion med vinylstyrning. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck Visa förlyssnings-tallrik - + Show the preview deck in the Mixxx interface. Visa Mixxx sektion med förlyssnings-tallrikar. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art Visa omslagskonst - + Show cover art in the Mixxx interface. Visar omslagskonst i Mixxx-gränssnittet. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library Maximera bibliotek - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library Mellanslag - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Helskärm - + Display Mixxx using the full screen Visa Mixxx i helskärmsläge - + &Options &Optioner - + &Vinyl Control &Vinylstyrning - + Use timecoded vinyls on external turntables to control Mixxx Använd tidskodade skivor på externa skivspelare för att styra Mixxx. - + Enable Vinyl Control &%1 Aktivera vinylstyrning &%1 - + &Record Mix %Spela in Mix - + Record your mix to a file Spara din mix till en fil - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Aktivera livesä&ndning - + Stream your mixes to a shoutcast or icecast server Streama dina mixar till en shoutcast- eller icecast-server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts Aktivera tangentbords&genvägar - + Toggles keyboard shortcuts on or off Slår på/av tangentbordsgenvägar - + Ctrl+` Ctrl+` - + &Preferences &Inställningar - + Change Mixxx settings (e.g. playback, MIDI, controls) Ändra Mixxx inställningar (t.ex. återgivning, MIDI, styrenheter) - + &Developer &Utvecklare - + &Reload Skin &Ladda om skinnet - + Reload the skin Ladda om skinnet - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools Utvecklarverktyg - + Opens the developer tools dialog Öppnar dialogrutan för utvecklingsverktyg - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Hjälp - + Show Keywheel menu title @@ -15785,74 +16433,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel F12 - + &Community Support Hjälp från andra &användare - + Get help with Mixxx Få hjälp för Mixxx. - + &User Manual Br&uksanvisning - + Read the Mixxx user manual. Läs bruksanvisningen för Mixxx. - + &Keyboard Shortcuts & Tangentbordsgenvägar - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application Översä&tt denna applikation - + Help translate this application into your language. Hjälp oss att översätta det här programmet till ditt språk. - + &About &Om... - + About the application Om programmet @@ -15860,25 +16508,25 @@ This can not be undone! WOverview - + Passthrough - + Ready to play, analyzing... Text on waveform overview when file is playable but no waveform is visible Redo att spela, analyserar... - - + + Loading track... Text on waveform overview when file is cached from source Laddar låt... - + Finalizing... Text on waveform overview during finalizing of waveform analysis @@ -15887,25 +16535,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Sök - + Clear input @@ -15916,169 +16552,163 @@ This can not be undone! Sök... - + Clear the search bar input field - - Enter a string to search for - Ange en sträng att söka efter + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Genväg + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Fokus + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts - Genvägar + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries Växla sökhistorik - + Delete or Backspace - - Delete query from history - - - - - Esc - Esc + + in search history + i sökhistorik - - Exit search - Exit search bar and leave focus - Avsluta sök + + Delete query from history + WSearchRelatedTracksMenu - + Search related Tracks Sök relaterade låtar - + Key Nyckel - + harmonic with %1 - + harmonisk med %1 - + BPM BPM - + between %1 and %2 mellan %1 och %2 - + Artist Artist - + Album Artist Album-artist - + Composer Kompositör - + Title Titel - + Album Album - + Grouping Gruppindelning - + Year År - + Genre Genre - + Directory - + &Search selected @@ -16086,620 +16716,640 @@ This can not be undone! WTrackMenu - + Load to Ladda till - + Deck Tallrik - + Sampler Samplare - + Add to Playlist Spara till spellistan. - + Crates Backar - + Metadata Metadata - + Update external collections Uppdatera externa samlingar - + Cover Art Album-konst - + Adjust BPM Justera BPM - + Select Color Välj färg - - + + Analyze Analysera - - + + Delete Track Files Ta bort låtfiler - + 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) Lägg till i Auto-DJ-kön (ersätt) - + Preview Deck Förlyssnings-tallrik - + Remove Ta bort - + Remove from Playlist Ta bort från spellista - + Remove from Crate - + Hide from Library Dölj från biblioteket - + Unhide from Library Ta fram från biblioteket - + Purge from Library Rensa från biblioteket - + Move Track File(s) to Trash - + Delete Files from Disk Ta bort filer från disk - + Properties Egenskaper - + Open in File Browser Öppna i filhanteraren - + Select in Library - + Välj i bibliotek - + Import From File Tags Importera från filtaggar - + Import From MusicBrainz Importera från MusicBrainz - + Export To File Tags Exportera tlll filtaggar - + BPM and Beatgrid - + Play Count Antal spelningar - + Rating Betyg - + Cue Point - - + + Hotcues Snabbmarkeringar - + Intro Intro - + Outro Outro - + Key Nyckel - + ReplayGain Förstärkning av uppspelning - + Waveform Vågform - + Comment Kommentar - + All Alla - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Lås BPM - + Unlock BPM Lås upp BPM - + Double BPM Dubbel BPM - + Halve BPM Halva BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Tallrik %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? Ta bort dessa filer från disk permanent? - - + + This can not be undone! Detta kan inte ångras! - + Cancel Avbryt - + Delete Files Ta bort filer - + Okay - + Okej - + Move Track File(s) to Trash? - + Track Files Deleted Låtfiler borttagna - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Stäng - + Clear Reset metadata in right click track context menu in library - + Rensa - + Loops - + Loopar - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16709,43 +17359,43 @@ This can not be undone! title - + titel WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16753,37 +17403,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal Bekräfta borttagning av låt @@ -16791,12 +17441,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Visa eller dölj kolumner. - + Shuffle Tracks @@ -16804,52 +17454,52 @@ This can not be undone! mixxx::CoreServices - + fonts fonter - + database databas - + effects effekter - + audio interface - + ljudinterface - + decks - + library bibliotek - + 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. @@ -16863,68 +17513,78 @@ Klicka på OK för att avsluta. mixxx::DlgLibraryExport - + Entire music library Hela musikbiblioteket - - Selected crates + + Crates + + + + + Playlists + Spellistor + + + + Selected crates/playlists - + Browse Bläddra… - + Export directory - + Database version Databas-version - + Export Exportera - + Cancel Avbryt - + Export Library to Engine DJ "Engine DJ" must not be translated - + Export Library To Exportera bibliotek till - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16945,7 +17605,7 @@ Klicka på OK för att avsluta. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16955,24 +17615,24 @@ Klicka på OK för att avsluta. mixxx::LibraryExporter - + Export Completed Export slutförd - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed Export misslyckades - - Exporting to Engine Prime... - + + Exporting to Engine DJ... + Exporterar till Engine DJ... @@ -16996,6 +17656,24 @@ Klicka på OK för att avsluta. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17004,4 +17682,27 @@ Klicka på OK för att avsluta. Ingen effekt laddad. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_tr.qm b/res/translations/mixxx_tr.qm index 43da67b7837f..b793e5bd8ff1 100644 Binary files a/res/translations/mixxx_tr.qm and b/res/translations/mixxx_tr.qm differ diff --git a/res/translations/mixxx_tr.ts b/res/translations/mixxx_tr.ts index a8c12be2f013..8049e8b97074 100644 --- a/res/translations/mixxx_tr.ts +++ b/res/translations/mixxx_tr.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates Kutular - + Enable Auto DJ Otomatik DJ'i Etkinleştir - + Disable Auto DJ Otomatik DJ'i Devre Dışı Bırak - + Clear Auto DJ Queue Otomatik DJ Listesini Sil - + Remove Crate as Track Source Kutuyu parça kaynağı olarak kaldır - + Auto DJ Otomatik DJ - + Confirmation Clear Onayı Kaldır - + Do you really want to remove all tracks from the Auto DJ queue? Gerçekten Otomatik DJ kuyruğundaki tüm parçaları kaldırmak istiyor musunuz? - + This can not be undone. Bu geri alınamaz. - + Add Crate as Track Source Kutuyu parça kaynağı olarak ekle @@ -223,7 +231,7 @@ - + Export Playlist Çalma listesini dışa aktar @@ -277,13 +285,13 @@ - + Playlist Creation Failed Çalma Listesi Oluşturulamadı - + An unknown error occurred while creating playlist: Çalma listesi oluşturulurken bilinmeyen bir hata oluştu: @@ -298,12 +306,12 @@ <b>%1</b> çalma listesini gerçekten silmek istiyor musunuz? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp Zaman Etiketi @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Parça aktarılamadı. @@ -362,7 +370,7 @@ Kanallar - + Color Renk @@ -377,7 +385,7 @@ Besteci - + Cover Art Albüm kapak resim @@ -387,7 +395,7 @@ Eklendiği Tarih - + Last Played Son Çalınan @@ -417,7 +425,7 @@ Anahtar - + Location Konum @@ -427,7 +435,7 @@ Genel Bakış - + Preview Önizleme @@ -467,7 +475,7 @@ Yıl - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Resim getiriliyor... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. Güvenli parola depolama alanı kullanılamıyor: anahtar erişimi başarısız oldu. - + Secure password retrieval unsuccessful: keychain access failed. Güvenli parola alımı başarısız: anahtar erişimi başarısız oldu. - + Settings error Ayarlar hatası - + <b>Error with settings for '%1':</b><br> <b>Ayarlarda hata '%1' için:</b><br> @@ -592,7 +600,7 @@ - + Computer Bilgisayar @@ -612,17 +620,17 @@ Tara - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. "Bilgisayar", sabit diskinizdeki ve harici aygıtlarınızdaki klasörlerdeki parçaları gezinmenizi, görüntülemenizi ve yüklemenizi sağlar. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -735,12 +743,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. @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx açık kaynaklı bir DJ yazılımıdır. Daha fazla bilgi için bkz.: - + Starts Mixxx in full-screen mode Mixxx'i tam ekran modunda başlat - + Use a custom locale for loading translations. (e.g 'fr') - + 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -861,32 +874,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -980,2567 +993,2748 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Kulaklık çıkış - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Dek %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Önizleme seti %1 - + Microphone %1 Mikrofon %1 - + Auxiliary %1 Auxiliary %1 - + Reset to default Varsayılana dön - + Effect Rack %1 Efekt %1 - + Parameter %1 Parametre %1 - + Mixer Karıştırıcı - - + + Crossfader Crossfader - + Headphone mix (pre/main) Kulaklık dengesi (pre/ana) - + Toggle headphone split cueing Kulaklık bölünmüş işaretini aç/kapat - + Headphone delay Kulaklık gecikme - + Transport Aktarım - + Strip-search through track Parça boyunca şerit arama. - + Play button Çal düğmesi - - + + Set to full volume Sesi sonuna kadar aç - - + + Set to zero volume Sesi sonuna kadar kapT - + Stop button Durdur düğmesi - + Jump to start of track and play Parçanın başına git ve çal - + Jump to end of track İzin sonuna sıçra - + Reverse roll (Censor) button Ters çevirme (Sansür) düğmesi - + Headphone listen button Kulaklıktan dinle düğmesi - - + + Mute button Ses sıfırlama düğmesi - + Toggle repeat mode Tekrar kipini değiştir - - + + 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 - + Toggle slip mode Kaydırma moduna geç - - + + BPM BPM(Dakikalık Vuruş Sayısı) - + Increase BPM by 1 BPM'i 1 artır - + Decrease BPM by 1 BPM'i 1 düşür - + Increase BPM by 0.1 BPM'i 0,1 artır - + Decrease BPM by 0.1 BPM'i 0,1 düşür - + BPM tap button BPM ayar düğmesi - + Toggle quantize mode Kuantize modunu değiştir - + One-time beat sync (tempo only) Bir defalık beat senkronizasyonu (sadece tempo) - + One-time beat sync (phase only) Bir defalık beat senkronizasyonu (sadece faz) - + Toggle keylock mode Tuş Kilitleme Moduna Geç - + Equalizers 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 %1 kısayolunu temizle - + Set hotcue %1 %1 kısayolunu ayarla - + Jump to hotcue %1 %1 kısayolu atla - + Jump to hotcue %1 and stop %1 hotcue git ve durdur - + Jump to hotcue %1 and play Kısayol %1'e atlayın ve oynayın - + Preview from hotcue %1 En düşük hotcue %1 önizleme - - + + Hotcue %1 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 %1 vuruşlu döngü oluştur - + Create temporary %1-beat loop roll - + Library Kütüphane - + Slot %1 Bölme %1 - + Headphone Mix Kulaklık Mix - + Headphone Split Cue Kulaklık Bölme İşareti - + Headphone Delay Kulaklık gecikme - + Play Çal - + Fast Rewind Hızlı geri al - + Fast Rewind button Hızlı geri al - + Fast Forward Hızlı ileri al - + Fast Forward button Hızlı ileri alma düğmesi - + Strip Search Şerit Arama - + Play Reverse Tersten çal - + Play Reverse button Tersten çalma düğmesi - + Reverse Roll (Censor) - + Jump To Start Başa atla - + Jumps to start of track Parçanın başına atla - + Play From Start Başından itibaren çal - + Stop Dur - + Stop And Jump To Start Dur ve başa atla - + Stop playback and jump to start of track Çalmayı durdur ve parçanın başına atla - + Jump To End Sona atla - + Volume Ses düzeyi - - - + + + Volume Fader Ses Düzeyi - - + + Full Volume Maksimum ses düzeyi - - + + Zero Volume Sıfır ses düzeyi - + Track Gain Parça Gain - + Track Gain knob Parça izleme düğmesi - - + + Mute Ses kapatma - + Eject Çıkar - - + + Headphone Listen Kulaklık dinleme - + Headphone listen (pfl) button Kulaklık dinleme (pfl) düğmesi - + Repeat Mode Tekrar modu - + Slip Mode Uyku Modu - - + + Orientation Yönelim - - + + Orient Left Sağ Yönlen - - + + Orient Center Merkeze Yönlen - - + + Orient Right Sağ Yönlen - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid Beatgrid'i ayarlayın - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode Kuantize modu - + Sync Eşitleme - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + Pitch control (does not affect tempo), center is original pitch - + Pitch Adjust - + Adjust pitch from speed slider pitch - + Match musical key Müzik anahtarını eşle - + Match Key Anahtarı eşle - + Reset Key Sıfırlama tuşu - + Resets key to original Anahtarı orijinale döndür - + High EQ Yüksek EQ - + Mid EQ Orta EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ Düşük 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 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 Döngüye Gir - + Loop Out Döngüden Çık - + Loop Exit Döngüden Çık - + Reloop/Exit Loop Tekrar Döngü/Döngüden Çık - + Loop Halve Yarı Döngü - + Loop Double Çift Döngü - + 1/32 1/32 - + 1/16 1/16 - + 1/8 1/8 - + 1/4 1/4 - + Move Loop +%1 Beats Döngüyü +%1 Vuruş Kaydır - + Move Loop -%1 Beats Döngüyü -%1 Vuruş Kaydır - + 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 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 - + 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 - + Headphone Gain - + Headphone gain - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) - - + + Adjust %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Görünüm - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Kulaklık - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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) Otomatik DJ Kuyruğuna Ekle (değiştir) - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + Start/Stop Live Broadcasting - + Stream your mix over the Internet. - + Start/stop recording your mix. - - - Samplers + + + Deck %1 Stems + + + + + + 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 + + + + + Controller + + + Unknown + + + + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position - - Vinyl Control Show/Hide + + Bit Position - - Show/hide the vinyl control section - Vinyl kontrol seçeneklerini göster/gizle + + Bit Size + - - Preview Deck Show/Hide + + Logical Min - - Show/hide the preview deck + + Logical Max - - Toggle 4 Decks + + Value - - Switches between showing 2 decks and 4 decks. + + Physical Min - - Cover Art Show/Hide (Decks) + + Physical Max - - Show/hide cover art in the main decks + + Unit Scaling - - Vinyl Spinner Show/Hide + + Unit - - Show/hide spinning vinyl widget - Dönen vinyl eklentisini göster/gizle + + Abs/Rel + - - Vinyl Spinners Show/Hide (All Decks) + + + Wrap - - Show/Hide all spinnies + + + Linear - - Toggle Waveforms + + + Preferred - - Show/hide the scrolling waveforms. + + + Null - - Waveform zoom - Dalga şekli büyüt + + + Volatile + - - Waveform Zoom - Dalga Şekli Büyüt + + Usage Page + - - Zoom waveform in + + Usage - - Waveform Zoom In + + Relative - - Zoom waveform out + + Absolute - - Star Rating Up + + No Wrap - - Increase the track rating by one star + + Non Linear - - Star Rating Down + + No Preferred - - Decrease the track rating by one star + + No Null - - - Controller - - Unknown + + Non Volatile @@ -3648,32 +3842,32 @@ trace - Above + Profiling messages 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. @@ -3681,27 +3875,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3734,7 +3928,7 @@ trace - Above + Profiling messages - + Lock Kilitle @@ -3764,7 +3958,7 @@ trace - Above + Profiling messages Oto DJ Parça Kaynağı - + Enter new name for crate: @@ -3781,22 +3975,22 @@ trace - Above + Profiling messages 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 @@ -3806,28 +4000,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U Çalma Listesi (*.m3u) @@ -3848,17 +4042,17 @@ trace - Above + Profiling messages Kutular müziklerinizi istediğiniz şekilde organize etmenizi sağlar - + Do you really want to delete crate <b>%1</b>? - + 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 @@ -3953,12 +4147,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -4744,122 +4938,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono Mono - + Stereo Stereo - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed İşlem başarısız - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4872,27 +5083,27 @@ Two source connections to the same server that have the same mountpoint can not - + Mixxx Icecast Testing - + Public stream - + http://www.mixxx.org http://www.Mixxx.org - + Stream name Akış adı - + 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. @@ -4932,67 +5143,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. - + ICQ - + AIM - + Website Web sitesi - + Live mix Canlı mix - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Tür - + Use UTF-8 encoding for metadata. - + Description Açıklama @@ -5018,42 +5234,42 @@ Two source connections to the same server that have the same mountpoint can not Kanallar - + Server connection Server bağlantısı - + Type Tür - + Host Host - + Login Giriş - + Mount - + Port Port - + Password Şifre - + Stream info @@ -5063,17 +5279,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5132,13 +5348,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color Renk @@ -5183,17 +5400,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5201,113 +5423,113 @@ associated with each key. DlgPrefController - + Apply device settings? Ayarlar uygulansın mı? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Hiçbiri - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Sorun giderme - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5325,100 +5547,105 @@ Apply settings and continue? Etkinleştirildi - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Açıklama: - + Support: Destek: - + Screens preview - + Input Mappings - - + + Search Ara - - + + Add Ekle - - + + Remove Kaldır @@ -5438,17 +5665,17 @@ Apply settings and continue? - + Mapping Info - + Author: Yaratıcı: - + Name: Adı: @@ -5458,28 +5685,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Hepsini temizle - + Output Mappings @@ -5494,21 +5721,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5639,6 +5866,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5668,137 +5905,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx modu - + Mixxx mode (no blinking) - + Pioneer mode Pioneer modu - + Denon mode Denon modu - + Numark mode Numark modu - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) % 8 (Technics SL-1210) - + 10% %10 - + 16% - + 24% - + 50% %50 - + 90% %90 @@ -6230,62 +6467,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Bilgi - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -6512,67 +6749,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font @@ -6621,262 +6888,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: - + Use relative paths for playlist export if possible - + ... - + px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms MS - + Load track to next available deck - + External Libraries Harici kütüphaneler - + You will need to restart Mixxx for these settings to take effect. - + Show Rhythmbox Library - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library - + Show iTunes Library - + Show Traktor Library - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. @@ -7221,33 +7493,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7265,43 +7537,55 @@ and allows you to pitch adjust them for harmonic mixing. Gözat... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Kalite - + Tags Etiketler - + Title Başlık - + Author Besteci - + Album Albüm - + Output File Format - + Compression - + Lossy @@ -7316,12 +7600,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7452,172 +7736,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled Engellenmiş - + Enabled Etkinleştirildi - + Stereo Stereo - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error @@ -7684,17 +7973,22 @@ The loudness target is approximate and assumes track pregain and main output lev MS - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count - + 0 0 @@ -7719,12 +8013,12 @@ The loudness target is approximate and assumes track pregain and main output lev Giriş - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. @@ -7754,7 +8048,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Downsize your audio buffer to improve Mixxx's responsiveness. @@ -7801,7 +8095,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7837,46 +8131,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Sinyal kalitesi - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax - + xwax tarafından desteklenmektedir - + Hints İpucu - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7884,58 +8183,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Filtrelenmiş - + HSV - + RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL mevcut değil - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7953,22 +8252,17 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. - - Normalize waveform overview - - - - + Average frame rate @@ -7984,7 +8278,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -8019,7 +8313,7 @@ The loudness target is approximate and assumes track pregain and main output lev Düşük - + Show minute markers on waveform overview @@ -8064,7 +8358,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + 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. @@ -8131,22 +8425,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8162,7 +8456,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8192,12 +8486,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8686,7 +9026,7 @@ This can not be undone! BPM: - + Location: Dizin: @@ -8701,27 +9041,27 @@ This can not be undone! Görüşler - + BPM BPM(Dakikalık Vuruş Sayısı) - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. @@ -8776,49 +9116,49 @@ This can not be undone! Tür - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM BPM'i ikiye katla - + Halve BPM - + Clear BPM and Beatgrid BPM ve Beatgrid Temizle - + Move to the previous item. "Previous" button - + &Previous &önceki - + Move to the next item. "Next" button - + &Next &sonraki @@ -8843,12 +9183,12 @@ This can not be undone! Renk - + Date added: - + Open in File Browser Dosya Tarayıcıda Aç @@ -8858,102 +9198,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &uygula - + &Cancel - + (no color) @@ -9110,7 +9455,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9312,27 +9657,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9547,15 +9892,15 @@ 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 @@ -9566,57 +9911,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right sağ - + left sol - + right small - + left small - + up yukarı - + down aşağı - + up small - + down small - + Shortcut Kısa yol @@ -9624,62 +9969,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9689,22 +10034,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9841,12 +10186,12 @@ Do you really want to overwrite it? Saklı parçalar - + Export to Engine DJ - + Tracks @@ -9854,37 +10199,37 @@ 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 @@ -9894,209 +10239,209 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10112,13 +10457,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Kilitle - - + + Playlists Çalma Listeleri @@ -10128,58 +10473,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Kilidi Kaldır - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 @@ -10278,58 +10628,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 @@ -10443,69 +10793,82 @@ Do you want to scan your library for cover files now? 14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier - + Left Bus + Audio path indetifier - + Center Bus + Audio path indetifier - + Right Bus + Audio path indetifier - + Invalid Bus + Audio path indetifier - + Deck + Audio path indetifier - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Vinil Kontrolu - + Microphone + Audio path indetifier Mikrofon - + Auxiliary + Audio path indetifier - + Unknown path type %1 + Audio path @@ -10834,47 +11197,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM(Dakikalık Vuruş Sayısı) - + Set the beats per minute value of the click sound - + Sync Eşitleme - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11658,14 +12023,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11803,7 +12168,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11871,15 +12236,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11908,6 +12344,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11918,11 +12355,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11934,11 +12373,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11967,12 +12408,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12007,42 +12448,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12303,193 +12744,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem - + Could not allocate shout_t - + Could not allocate shout_metadata_t - + Error setting non-blocking mode: - + Error setting tls mode: - + Error setting hostname! - + Error setting port! - + Error setting password! - + Error setting mount! - + Error setting username! - + Error setting stream name! - + Error setting stream description! - + Error setting stream genre! - + Error setting stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate - + Error: unknown server protocol! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server - + Please check your connection to the Internet and verify that your username and password are correct. @@ -12497,7 +12938,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Filtrelenmiş @@ -12505,23 +12946,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device - + An unknown error occurred - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12706,7 +13147,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12888,7 +13329,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Albüm kapak resim @@ -13078,243 +13519,243 @@ may introduce a 'pumping' effect and/or distortion. - + Displays the tempo of the loaded track in BPM (beats per minute). - + Tempo Tempo - + Key The musical key of a track Anahtar - + BPM Tap BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. - + Adjust BPM Down - + When tapped, adjusts the average BPM down by a small amount. - + Adjust BPM Up - + When tapped, adjusts the average BPM up by a small amount. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Çal - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13537,947 +13978,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain Sonraki zincir - + Previous Chain - + Next/Previous Chain - + Clear Temizle - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Sonraki - + Clear Unit Birimi Temizle - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Önceki - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid Beatgrid'i ayarlayın - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse Tersine çal - + Reverses track playback during regular playback. Normal çalma esnasında parçayı tersine çalar. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause Çal/Duraklat - + Jumps to the beginning of the track. Parçanın başına atlar. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14612,33 +15088,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Parçanın başından çalmayı başlatır. - + Jumps to the beginning of the track and stops. Parçanın başına atlar ve durdurur. - - + + Plays or pauses the track. Parçayı başlatır veya duraklatır. - + (while playing) (çalma anında) @@ -14658,215 +15134,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (durma anında) - + Cue Başlangıç noktası - + Headphone Kulaklık - + Mute Ses kapatma - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. - + Resets the key to the original track key. - + Speed Control Hız kontrolü - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Mix kaydet - + Toggle mix recording. - + Enable Live Broadcasting - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit Döngüden Çık - + Turns the current loop off. - + Slip Mode Uyku Modu - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock Saat - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14906,259 +15382,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Displays the current musical key of the loaded track after pitch shifting. - + Fast Rewind Hızlı geri al - + Fast rewind through the track. Parçayı hızlı geri sar - + Fast Forward Hızlı ileri al - + Fast forward through the track. Parçayı hızlı ileri sar - + Jumps to the end of the track. Parçanın sonuna atlar - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat Tekrarla - + When active the track will repeat if you go past the end or reverse before the start. - + Eject Çıkar - + Ejects track from the player. Parçayı oynatıcıdan çıkarın. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve Yarı Döngü - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double Çift Döngü - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration - + Displays the duration of the loaded track. - + Information is loaded from the track's metadata tags. - + Track Artist - + Displays the artist of the loaded track. - + Track Title - + Displays the title of the loaded track. - + Track Album Albüm - + Displays the album name of the loaded track. - + Track Artist/Title - + Displays the artist and title of the loaded track. @@ -15386,47 +15862,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15551,323 +16055,363 @@ This can not be undone! - Create &New Playlist + Search in Current View... + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + + Create &New Playlist + + + + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View &Görünüm - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl +1 - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl +2 - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl +3 - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl +4 - + Show Cover Art Kapak remini göster - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen &Tam ekran - + Display Mixxx using the full screen - + &Options &Seçenekler - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix &Mix kaydet - + Record your mix to a file - + Ctrl+R Ctrl +R - + Enable Live &Broadcasting &Canlı Yayın'ı aç - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts &Klavye kısayollarını aç - + Toggles keyboard shortcuts on or off - + Ctrl+` Ctrl+` - + &Preferences &Tercihler - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer &Geliştirici - + &Reload Skin &Kaplamayı yeniden yükle - + Reload the skin Kaplamayı yeniden yükle - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D Ctrl+Shift+D - + &Help &Yardım - + Show Keywheel menu title @@ -15884,74 +16428,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support &Topluluk Desteği - + Get help with Mixxx Mixxx'ten yardım alın. - + &User Manual &Kullanım Kılavuzu - + Read the Mixxx user manual. Mixxx kullanım kılavuzunu okuyun. - + &Keyboard Shortcuts &Klavye kısayolları - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application &Bu uygulamayı çevir - + Help translate this application into your language. Bu uygulamayı kendi dilinize çevirmeye yardımcı olun. - + &About &Hakkında - + About the application Uygulama Hakkında @@ -15959,25 +16503,25 @@ This can not be undone! WOverview - + 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 @@ -15986,25 +16530,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Girişi temizle - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun Arama - + Clear input Girişi temizle @@ -16015,93 +16547,87 @@ This can not be undone! Ara... - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Kısa yol + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Odak + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+Backspace + + Additional Shortcuts When Focused: + - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Aramayı kapat + + Delete query from history + @@ -16185,625 +16711,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist Çalma Listesine Ekle - + Crates Kutular - + Metadata - + Update external collections - + Cover Art Albüm kapak resim - + Adjust BPM - + Select Color - - + + Analyze Analiz et - - + + Delete Track Files - + 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) Otomatik DJ Kuyruğuna Ekle (değiştir) - + Preview Deck - + Remove Kaldır - + Remove from Playlist - + Remove from Crate - + Hide from Library Kütüphane'den gizle - + Unhide from Library Kütüphane'de göster - + Purge from Library Kütüphane'den kaldır - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Özellikler - + Open in File Browser Dosya Tarayıcıda Aç - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Derecelendirme - + Cue Point - - + + Hotcues Önemli işaretler - + Intro - + Outro - + Key Anahtar - + ReplayGain Yeniden kazan - + Waveform - + Comment Yorum - + All Hepsi - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPM'yi Kilitle - + Unlock BPM BPM Kilidini Aç - + Double BPM BPM'i ikiye katla - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Dek %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Vazgeç - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Kapat - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16857,37 +17398,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16895,12 +17436,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Sütunları göster/gizle - + Shuffle Tracks @@ -16938,22 +17479,22 @@ This can not be undone! - + 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. @@ -17110,6 +17651,24 @@ Mixxx SQLite desteği ile QT gerektirir. Nasıl kurulacağını öğrenmek için + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17118,4 +17677,27 @@ Mixxx SQLite desteği ile QT gerektirir. Nasıl kurulacağını öğrenmek için Herhangi bir efekt yüklenmedi. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_uk.qm b/res/translations/mixxx_uk.qm index 0dcb7dafbef6..994346417e5f 100644 Binary files a/res/translations/mixxx_uk.qm and b/res/translations/mixxx_uk.qm differ diff --git a/res/translations/mixxx_uk.ts b/res/translations/mixxx_uk.ts index ada9c4306e00..5ba30009eb07 100644 --- a/res/translations/mixxx_uk.ts +++ b/res/translations/mixxx_uk.ts @@ -39,32 +39,32 @@ - + Remove Crate as Track Source - + Auto DJ Авто-DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -147,28 +147,28 @@ BasePlaylistFeature - + New Playlist Новий Плейлист - + Add to Auto DJ Queue (bottom) Додати до черги Авто-DJ (знизу) - + Create New Playlist Створити новий список відтворення - + Add to Auto DJ Queue (top) Додати до черги Авто-DJ (наверх) - + Remove Видалити @@ -178,12 +178,12 @@ Переіменувати - + Lock Заблокувати - + Duplicate Дублювати @@ -204,24 +204,24 @@ Аналізувати весь список відтворення - + Enter new name for playlist: Введіть нове ім'я для списку відтворення: - + Duplicate Playlist Дублювати список відтворення - - + + Enter name for new playlist: Введіть ім'я для нового списку відтворення: - + Export Playlist Експортувати плейлист @@ -231,70 +231,77 @@ - + + + Export to Engine DJ + "Engine DJ" is a product name and must not be translated. + + + + 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: Виникла невідома помилка при створенні плейлиста: - + Confirm Deletion - + Do you really want to delete playlist <b>%1</b>? - + 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) @@ -302,12 +309,12 @@ BaseSqlTableModel - + # No - + Timestamp Відмітка часу @@ -315,7 +322,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Неможливо завантажити трек @@ -323,137 +330,142 @@ BaseTrackTableModel - + Album Альбом - + Album Artist Виконавець альбому - + Artist Виконавець - + Bitrate Бітрейт - + BPM BPM - + Channels Канали - + Color - + Comment Примітка - + Composer Композитор - + Cover Art Обкладинки - + Date Added Дата додавання - + Last Played - + Duration Тривалість - + Type Тип - + Genre Стиль - + Grouping Групування - + Key Тональність - + Location Розташування: - + + Overview + + + + Preview Попередній перегляд - + Rating Рейтинг - + ReplayGain - + Samplerate - + Played Зіграно - + Title Назва - + Track # Композиція № - + Year Рік - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -541,67 +553,77 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library Додати до бібліотеки - + Refresh directory tree - + Quick Links Швидкі посилання - - + + Devices Пристрої - + Removable Devices Змінні пристрої - - + + Computer - + 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 Сканування - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. + + + It shows the data from the file tags, not track data from your Mixxx library like other track views. + + + + + If you load a track file from here, it will be added to your library. + + BrowseTableModel @@ -747,87 +769,87 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: Каталог верхнього рівня, в якому Mixxx має шукати параметри. Типово: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -837,27 +859,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + + Overrides the default application GUI style. Possible values: %1 + + + + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -1039,13 +1066,13 @@ trace - Above + Profiling messages - + Set to full volume - + Set to zero volume @@ -1070,13 +1097,13 @@ trace - Above + Profiling messages - + Headphone listen button - + Mute button @@ -1087,25 +1114,25 @@ trace - Above + Profiling messages - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right @@ -1146,22 +1173,22 @@ trace - Above + Profiling messages - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1171,193 +1198,193 @@ trace - Above + Profiling messages Еквалайзери - + 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 @@ -1473,20 +1500,20 @@ trace - Above + Profiling messages - - + + Volume Fader - + Full Volume - + Zero Volume @@ -1502,7 +1529,7 @@ trace - Above + Profiling messages - + Mute @@ -1513,7 +1540,7 @@ trace - Above + Profiling messages - + Headphone Listen @@ -1534,25 +1561,25 @@ trace - Above + Profiling messages - + Orientation - + Orient Left - + Orient Center - + Orient Right @@ -1622,82 +1649,82 @@ trace - Above + Profiling messages - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync Синхр. - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1738,451 +1765,451 @@ trace - Above + Profiling messages - + 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 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 - + 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 @@ -2197,102 +2224,102 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) @@ -2444,1041 +2471,1063 @@ trace - Above + Profiling messages - - + + Move Beatgrid Half a Beat + + + + + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. + + + + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + + + Sort hotcues by position + + + + + + Sort hotcues by position (remove offsets) + + + + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3593,32 +3642,32 @@ trace - Above + Profiling messages 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. @@ -3662,13 +3711,13 @@ trace - Above + Profiling messages CrateFeature - + Remove Видалити - + Create New Crate @@ -3678,132 +3727,132 @@ trace - Above + Profiling messages Переіменувати - - + + 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. - + Confirm Deletion - - + + 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) - + M3U Playlist (*.m3u) M3U список відтворення (*.m3u) - + Crates are a great way to help organize the music you want to DJ with. Збірки - чудовий допоміжний засіб для організування музики для ді-джеінгу. - + + + Export to Engine DJ + + + + Crates let you organize your music however you'd like! Збірки дають змогу організовувати Вашу музику так, як Ви бажаєте! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. Збірка повинна мати назву. - + A crate by that name already exists. Збірка з такою назвою вже існує. @@ -3898,12 +3947,12 @@ trace - Above + Profiling messages Попередні автори - + Official Website - + Donate @@ -4022,72 +4071,72 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Пропустити - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds Секунди - + Auto DJ Fade Modes Full Intro + Outro: @@ -4118,80 +4167,80 @@ crossfader, so that the intro starts at full volume. - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Skip Silence Start Full Volume - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Авто-DJ - + Shuffle Перемішати - + 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. @@ -4414,37 +4463,37 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - + The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4483,17 +4532,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -5146,113 +5195,113 @@ associated with each key. DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None Не призначено - + %1 by %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5265,105 +5314,105 @@ Apply settings and continue? - + Enabled Активовано - + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Опис: - + Support: Підтримка: - + Screens preview - + Input Mappings - - + + Search - - + + Add Додати - - + + Remove Видалити @@ -5378,22 +5427,22 @@ Apply settings and continue? - + Load Mapping: - + Mapping Info - + Author: - + Name: @@ -5403,28 +5452,28 @@ Apply settings and continue? - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Очистити все - + Output Mappings @@ -5583,6 +5632,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -6174,62 +6233,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + This skin does not support color schemes - + Information Інформація - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. @@ -7396,173 +7455,172 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Гц - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled Активовано - + Stereo Стерео - + Mono Моно - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 мс - + Configuration error Помилка конфігурації @@ -7580,131 +7638,131 @@ The loudness target is approximate and assumes track pregain and main output lev Звукове API - + Sample Rate Частота дискретизації - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode Режим основного виходу - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output Вихід - + Input Вхід - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Dual-threaded Stereo - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices Пристрої, що надсилають запити @@ -7859,27 +7917,28 @@ The loudness target is approximate and assumes track pregain and main output lev - - 1/3rd of waveform viewer + + 1/3 of waveform viewer + options for "Text height limit" - - Full waveform viewer height + + Entire waveform viewer - + OpenGL not available OpenGL не доступно - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7892,250 +7951,256 @@ The loudness target is approximate and assumes track pregain and main output lev - + Frame rate - - Displays which OpenGL version is supported by the current platform. + + OpenGL Status - - Waveform + + Displays which OpenGL version is supported by the current platform. - + Normalize waveform overview - + Average frame rate - + Visual gain - + Default zoom level Waveform zoom - + Displays the actual frame rate. - + Visual gain of the middle frequencies - + End of track warning - - OpenGL status - - - - + This functionality requires waveform acceleration. - + Highlight the waveforms when the last seconds of a track remains. - + seconds - + Low Низька - + Show minute markers on waveform overview - + Use acceleration - + High details - + Middle - + Global - + Visual gain of the high frequencies - + Visual gain of the low frequencies - + High Висока - + Global visual gain - + 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. - + Enabled - + 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 - - - - + fps - + Synchronize zoom level across all waveform displays. - + Synchronize zoom level across all waveforms - + Play marker hints - + Beats until next marker - + Preferred font size - + Text height limit - + Time until next marker - + Placement - + pt - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library - + Beat grid opacity - + + Scrolling Waveforms + + + + + + Type + + + + Stereo coloration - + Set amount of opacity on beat grid lines. - + % % - + Play marker position - + Moves the play marker position on the waveforms to the left, right or center (default). - + + Overview Waveforms + + + + Clear Cached Waveforms @@ -8143,47 +8208,47 @@ Select from different types of displays for the waveform, which differ primarily DlgPreferences - + Sound Hardware Звукове обладнання - + Controllers Контролери - + Library Бібліотека - + Interface Інтерфейс - + Waveforms - + Mixer Мікшер - + Auto DJ Авто-DJ - + Decks - + Colors @@ -8218,47 +8283,47 @@ Select from different types of displays for the waveform, which differ primarily - + Effects Ефекти - + 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> - + Vinyl Control Контроль вінілу - + Live Broadcasting Пряма трансляція - + Modplug Decoder @@ -8291,22 +8356,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording Почати запис - + Recording to file: - + Stop Recording Зупинити запис - + %1 MiB written in %2 @@ -8614,284 +8679,284 @@ This can not be undone! Підсумок - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Композиція № - + Album Artist Виконавець альбому - + Composer Композитор - + Title Назва - + Grouping Групування - + Key Тональність - + Year Рік - + Artist Виконавець - + Album Альбом - + Genre Стиль - + ReplayGain: - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM Навпіл BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: Тривалість: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser Відкрити в файловому менеджері - + Samplerate: - + Track BPM: Темп треку: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat Настукати ритм - + Hint: Use the Library Analyze view to run BPM detection. Порада: Використовуйте вигляд Аналіз Бібліотеки щоб запустити виявлення темпу. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply &Застосувати - + &Cancel &Скасувати - + (no color) @@ -9048,7 +9113,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9250,27 +9315,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) - + Rubberband (better) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9414,38 +9479,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. Check the logs for details. @@ -9453,12 +9518,12 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerColorSetting - + Change color - + Choose a new color @@ -9466,18 +9531,18 @@ Often results in higher quality beatgrids, but will not do well on tracks that h LegacyControllerFileSetting - + Browse... - - + + No file selected - + Select a file @@ -9485,15 +9550,15 @@ 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 @@ -9504,57 +9569,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut Скорочення @@ -9562,62 +9627,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9627,22 +9692,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9689,27 +9754,27 @@ Do you really want to overwrite it? MidiController - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9769,18 +9834,18 @@ Do you really want to overwrite it? MixxxLibraryFeature - + Missing Tracks - + Hidden Tracks - Export to Engine Prime + Export to Engine DJ @@ -9792,208 +9857,249 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + + Scan took %1 + + + + + No changes detected. + + + + + + %1 tracks in total + + + + + %1 new tracks found + + + + + %1 moved tracks detected + + + + + %1 tracks are missing (%2 total) + + + + + %1 tracks have been rediscovered + + + + + Library scan finished + + + + 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? @@ -10009,13 +10115,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Заблокувати - - + + Playlists Плейлисти @@ -10025,32 +10131,58 @@ Do you want to select an input device? - + + Unlock all playlists + + + + + Delete all unlocked playlists + + + + Unlock Розблокувати - + + + Confirm Deletion + + + + + Do you really want to delete all unlocked playlists? + + + + + Deleting %1 unlocked playlists.<br>This operation can not be undone! + + + + 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 Створити новий список відтворення @@ -11541,7 +11673,7 @@ Fully right: end of the effect period - + Deck %1 @@ -11674,7 +11806,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough Пересилання @@ -11705,7 +11837,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11838,12 +11970,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -11878,42 +12010,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -11971,54 +12103,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -12153,19 +12285,19 @@ may introduce a 'pumping' effect and/or distortion. Заблокувати - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12577,7 +12709,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl @@ -12759,7 +12891,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Обкладинки @@ -12995,197 +13127,197 @@ may introduce a 'pumping' effect and/or distortion. - + Adjust Beats Earlier - + When tapped, moves the beatgrid left by a small amount. - + Adjust Beats Later - + When tapped, moves the beatgrid right by a small amount. - + Tempo and BPM Tap - + Show/hide the spinning vinyl section. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Грати - + Plays track from the cue point. - + 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. Коли увімкнено, цей пристрій служитиме лідером синхронізації для всіх дек. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. Тоді коли в деку лідера синхронізації завантажено доріжку зі змінним темпом, інші синхронізовані пристрої адаптуватимуться під зміни темпу. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13423,924 +13555,932 @@ may introduce a 'pumping' effect and/or distortion. - + + Adjust beatgrid by exactly one half beat. Usable only on +tracks with constant tempo. + + + + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - + + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. + + + + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - - Dragging with Shift key pressed will not start previewing the hotcue - - - - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Зберегти банк Семплера - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Завантажити банк Семплера - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob - + Next Chain - + Previous Chain - + Next/Previous Chain - + Clear - + Clear the current effect. - + Toggle - + Toggle the current effect. - + Next Далі - + Clear Unit - + Clear effect unit. - + Show/hide parameters for effects in this unit. - + Toggle Unit - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the next effect. - + Previous Попередній - + Switch to the previous effect. - + Next or Previous - + Switch to either the next or previous effect. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter - + Adjusts a parameter of the effect. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill - - + + Holds the gain of the EQ to zero while active. - + Quick Effect Super Knob - + Quick Effect Super Knob (control linked effect parameters). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. - + Equalizer Parameter - + Adjusts the gain of the EQ filter. - + Hint: Change the default EQ mode in Preferences -> Equalizers. - - + + Adjust Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. - - + + Adjust beatgrid to match another playing deck. - + If quantize is enabled, snaps to the nearest beat. - + Quantize - + Toggles quantization. - + Loops and cues snap to the nearest beat when quantization is enabled. - + Reverse У зворотному напрямку - + Reverses track playback during regular playback. - + Puts a track into reverse while being held (Censor). - + Playback continues where the track would have been if it had not been temporarily reversed. - - - + + + Play/Pause - + Jumps to the beginning of the track. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. - + Sync and Reset Key - + Increases the pitch by one semitone. - + Decreases the pitch by one semitone. - + Enable Vinyl Control - + When disabled, the track is controlled by Mixxx playback controls. - + When enabled, the track responds to external vinyl control. - + Enable Passthrough - + Indicates that the audio buffer is too small to do all audio processing. - + Displays cover artwork of the loaded track. - + Displays options for editing cover artwork. - + Star Rating - + Assign ratings to individual tracks by clicking the stars. @@ -14475,33 +14615,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. - + Jumps to the beginning of the track and stops. - - + + Plays or pauses the track. - + (while playing) @@ -14521,205 +14661,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) - + Cue - + Headphone Навушники - + Mute - + Old Synchronize - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. - + If no deck is playing, syncs to the first deck that has a BPM. - + Decks can't sync to samplers and samplers can only sync to decks. - + Hold for at least a second to enable sync lock for this 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. Деки з постійною синхронізацією гратимуть з однаковим темпом, а деки, для яких також увімкнено квантування, матимуть вирівняні такти. - + Resets the key to the original track key. - + Speed Control - - - + + + Changes the track pitch independent of the tempo. - + Increases the pitch by 10 cents. - + Decreases the pitch by 10 cents. - + Pitch Adjust - + Adjust the pitch in addition to the speed slider pitch. - + Opens a menu to clear hotcues or edit their labels and colors. - + + Drag this button onto a Play button while previewing to continue playback after release. + + + + + Dragging with Shift key pressed will not start previewing the hotcue. + + + + Record Mix - + Toggle mix recording. - + Enable Live Broadcasting Жива трансляція - + Stream your mix over the Internet. - + Provides visual feedback for Live Broadcasting status: - + disabled, connecting, connected, failure. - + When enabled, the deck directly plays the audio arriving on the vinyl input. - + Playback will resume where the track would have been if it had not entered the loop. - + Loop Exit - + Turns the current loop off. Вимикає поточний цикл. - + Slip Mode - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. - + Once disabled, the audible playback will resume where the track would have been. - + Track Key The musical key of a track - + Displays the musical key of the loaded track. - + Clock - + Displays the current time. - + Audio Latency Usage Meter - + Displays the fraction of latency used for audio processing. - + A high value indicates that audible glitches are likely. - + Do not enable keylock, effects or additional decks in this situation. - + Audio Latency Overload Indicator @@ -14764,254 +14914,254 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Fast Rewind - + Fast rewind through the track. - + Fast Forward - + Fast forward through the track. - + Jumps to the end of the track. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. - - - + + + Pitch Control - + Pitch Rate - + Displays the current playback rate of the track. - + Repeat - + When active the track will repeat if you go past the end or reverse before the start. - + Eject - + Ejects track from the player. - + Hotcue - + If hotcue is set, jumps to the hotcue. - + If hotcue is not set, sets the hotcue to the current play position. - + Vinyl Control Mode - + Absolute mode - track position equals needle position and speed. - + Relative mode - track speed equals needle speed regardless of needle position. - + Constant mode - track speed equals last known-steady speed regardless of needle input. - + Vinyl Status - + Provides visual feedback for vinyl control status: - + Green for control enabled. - + Blinking yellow for when the needle reaches the end of the record. - + Loop-In Marker - + Loop-Out Marker - + Loop Halve - + Halves the current loop's length by moving the end marker. - + Deck immediately loops if past the new endpoint. - + Loop Double - + Doubles the current loop's length by moving the end marker. - + Beatloop - + Toggles the current loop on or off. - + Works only if Loop-In and Loop-Out marker are set. - + Vinyl Cueing Mode - + Determines how cue points are treated in vinyl control Relative mode: - + Off - Cue points ignored. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. - + Track Time - + Track Duration Тривалість треку - + Displays the duration of the loaded track. Показує тривалість завантаженого треку. - + Information is loaded from the track's metadata tags. Інформація завантажена з мета-даних треку. - + Track Artist Виконавець треку. - + Displays the artist of the loaded track. Показує виконавеця завантаженого треку. - + Track Title Назва треку - + Displays the title of the loaded track. Показує назву завантаженого треку - + Track Album Альбом треку - + Displays the album name of the loaded track. Показує альбом завантаженого треку - + Track Artist/Title Виконавець/Заголовок треку - + Displays the artist and title of the loaded track. Показує виконавця/заголовок завантаженого треку @@ -15019,12 +15169,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15032,47 +15182,42 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackExportDlg - + Export finished - + Exporting %1 - - - Overwrite Existing File? - - - "%1" already exists, overwrite? + Replace Existing File? - - &Overwrite + + "%1" already exists, replace? - - Over&write All + + &Replace - - &Skip + + Apply to all files - Skip &All + &Skip - + Export Error @@ -15244,47 +15389,47 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - + Toggle this cue type between normal cue and saved loop - + Left-click: Use the old size or the current beatloop size as the loop size - + Right-click: Use the current play position as loop end if it is after the cue - + Hotcue #%1 @@ -15408,407 +15553,438 @@ This can not be undone! - - E&xport Library to Engine Prime + + Search in Current View... + + + + + Search for tracks in the current library view - - Export the library to the Engine Prime format + + Ctrl+f - + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist - + Create a new playlist Створює новий плейлист - + Ctrl+n - + Create New &Crate - + Create a new crate Створює нову збірку - + Ctrl+Shift+N - - + + &View &Вигляд - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen &На весь екран - + Display Mixxx using the full screen Відображення Mixxx у повноекранному режимі - + &Options &Опції - + &Vinyl Control &Контроль Вінілу - + Use timecoded vinyls on external turntables to control Mixxx Використання таймкод-платівок на зовнішньому програвачі для контролю Mixxx - + Enable Vinyl Control &%1 - + &Record Mix &Запис Міксу - + Record your mix to a file Записати Ваш мікс у файл - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting Трансляція наж&иво - + Stream your mixes to a shoutcast or icecast server Трансляцыя ваших міксів на Shoutcast або Icecast сервер - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts К&лавіатурні скорочення - + Toggles keyboard shortcuts on or off Увімкнути чи вимкнути клавіатурні скорочення - + Ctrl+` - + &Preferences &Параметри - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help &Допомога - + Show Keywheel menu title Колесо тональностей - + + E&xport Library to Engine DJ + "Engine DJ" must not be translated + + + + + Export the library to the Engine DJ format + + + + Show keywheel tooltip text Показати колесо тональностей - + F12 Menubar|View|Show Keywheel - + &Community Support &Підтримка співтовариства - + Get help with Mixxx - + &User Manual &Керівництво користувача - + Read the Mixxx user manual. Читати інструкцію по Mixxx. - + &Keyboard Shortcuts К&лавіатурні скорочення - + Speed up your workflow with keyboard shortcuts. Працюйте ефективніше з клавіатурними скороченнями. - + &Settings directory Каталог параметр&ів - + Open the Mixxx user settings directory. Відкрити користувацький каталог параметрів Mixxx. - + &Translate This Application &Перекласти цю програму - + Help translate this application into your language. Домопогти перекладати цю програму на Вашу мову. - + &About &Про - + About the application Про цю програму @@ -15816,25 +15992,25 @@ This can not be undone! WOverview - + 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 @@ -15843,25 +16019,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun - + Clear input @@ -15872,169 +16036,163 @@ This can not be undone! Пошук… - + Clear the search bar input field - - Enter a string to search for + + Return - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Скорочення + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus + + Focus/Select All (Search in 'Tracks' library view) - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts - Скорочення + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus + + Delete query from history WSearchRelatedTracksMenu - + Search related Tracks - + Key Тональність - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Виконавець - + Album Artist Виконавець альбому - + Composer Композитор - + Title Назва - + Album Альбом - + Grouping Групування - + Year Рік - + Genre Стиль - + Directory - + &Search selected @@ -16042,599 +16200,625 @@ This can not be undone! WTrackMenu - + Load to - + Deck Програвач - + Sampler - + Add to Playlist Додати до Плейлиста - + Crates Збірки - + Metadata - + Update external collections - + Cover Art Обкладинки - + Adjust BPM - + Select Color - - + + Analyze Аналізувати - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) Додати до черги Авто-DJ (знизу) - + Add to Auto DJ Queue (top) Додати до черги Авто-DJ (наверх) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Видалити - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser Відкрити в файловому менеджері - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Рейтинг - + Cue Point - + + Hotcues - + Intro - + Outro - + Key Тональність - + ReplayGain - + Waveform - + Comment Примітка - + All Все - + + Sort hotcues by position (remove offsets) + + + + + Sort hotcues by position + + + + Lock BPM Замкнути BPM - + Unlock BPM Розімкнути BPM - + Double BPM - + Halve BPM Навпіл BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + + Shift Beatgrid Half Beat + + + + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + + Sorting hotcues of %n track(s) by position (remove offsets) + + + + + Sorting hotcues of %n track(s) by position + + + + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Скасувати - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16650,37 +16834,37 @@ This can not be undone! WTrackStemMenu - + Load for stem mixing - + Load pre-mixed stereo track - + Load the "%1" stem - + Load multiple stem into a stereo deck - + Select stems to load - + Release "CTRL" to load the current selection - + Use "CTRL" to select multiple stems @@ -16688,37 +16872,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16726,60 +16910,65 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Показати або приховати стовпці. + + + Shuffle Tracks + + 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. @@ -16793,67 +16982,78 @@ Mixxx необхідно QT з підтримкою SQLite. Будь ласка, mixxx::DlgLibraryExport - + Entire music library - - Selected crates + + Crates + + + + + Playlists + + + + + Selected crates/playlists - + Browse Навігація - + Export directory - + Database version - + Export Експортувати - + Cancel Скасувати - - Export Library to Engine Prime + + Export Library to Engine DJ + "Engine DJ" must not be translated - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16874,7 +17074,7 @@ Mixxx необхідно QT з підтримкою SQLite. Будь ласка, mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16884,23 +17084,23 @@ Mixxx необхідно QT з підтримкою SQLite. Будь ласка, mixxx::LibraryExporter - + Export Completed - - Exported %1 track(s) and %2 crate(s). + + Exported %1 track(s), %2 crate(s), and %3 playlist(s). - + Export Failed - - Exporting to Engine Prime... + + Exporting to Engine DJ... diff --git a/res/translations/mixxx_uz.ts b/res/translations/mixxx_uz.ts index 3221408c43af..63ef1902788a 100644 --- a/res/translations/mixxx_uz.ts +++ b/res/translations/mixxx_uz.ts @@ -29,32 +29,32 @@ - + Remove Crate as Track Source - + Auto DJ Авто DJ - + Confirmation Clear - + Do you really want to remove all tracks from the Auto DJ queue? - + This can not be undone. - + Add Crate as Track Source @@ -211,7 +211,7 @@ - + Export Playlist Қўшиқ рўйхатини экспорт қилиш @@ -258,13 +258,13 @@ - + Playlist Creation Failed - + An unknown error occurred while creating playlist: @@ -279,12 +279,12 @@ - + M3U Playlist (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) @@ -292,12 +292,12 @@ BaseSqlTableModel - + # # - + Timestamp @@ -305,7 +305,7 @@ BaseTrackPlayerImpl - + Couldn't load track. Қўшиқ қўшилмади @@ -313,137 +313,137 @@ BaseTrackTableModel - + Album Альбом - + Album Artist - + Artist Санъаткор - + Bitrate Битрейт - + BPM BPM - + Channels - + Color - + Comment Мулоҳаза - + Composer - + Cover Art - + Date Added Қўшилган санаси - + Last Played - + Duration Давомийлиги - + Type Тури - + Genre Жанри - + Grouping - + Key Калит - + Location Манзили - + Preview - + Rating Рейтинг - + ReplayGain - + Samplerate - + Played Ижро этилди - + Title Сарлавҳа - + Track # Қўшиқ # - + Year Йил - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk @@ -531,64 +531,64 @@ BrowseFeature - + Add to Quick Links - + Remove from Quick Links - + Add to Library - + Refresh directory tree - + Quick Links Тез боғламалар - - + + Devices Ускуналар - + Removable Devices Ташувчи қурилмалар - - + + Computer - + 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 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. @@ -740,82 +740,82 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - + Loads experimental QML GUI instead of legacy QWidget skin - + 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 @@ -825,27 +825,17 @@ 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. - - Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - - - - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - - Overrides the default application GUI style. Possible values: %1 - - - - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. @@ -944,11 +934,9 @@ trace - Above + Profiling messages - - - + + Deck %1 - %1 is the deck number 1 ... 4 @@ -1013,145 +1001,145 @@ trace - Above + Profiling messages - + Transport - + Strip-search through track - + Play button - - + + Set to full volume - - + + Set to zero volume - + Stop button - + Jump to start of track and play - + Jump to end of track - + Reverse roll (Censor) button - + Headphone listen button - - + + Mute button - + Toggle repeat mode - + Mix orientation (e.g. left, right, center) - + Set mix orientation to left - + Set mix orientation to center - + Set mix orientation to right - + Toggle slip mode - - + + BPM BPM - + Increase BPM by 1 - + Decrease BPM by 1 - + Increase BPM by 0.1 - + Decrease BPM by 0.1 - + BPM tap button - + Toggle quantize mode - + One-time beat sync (tempo only) - + One-time beat sync (phase only) - + Toggle keylock mode @@ -1161,193 +1149,193 @@ trace - Above + Profiling messages - + 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 @@ -1377,317 +1365,317 @@ trace - Above + Profiling messages - + Play - + Fast Rewind - + Fast Rewind button - + Fast Forward - + Fast Forward button - + Strip Search - + Play Reverse - + Play Reverse button - + Reverse Roll (Censor) - + Jump To Start - + Jumps to start of track - + Play From Start - + Stop - + Stop And Jump To Start - + Stop playback and jump to start of track - + Jump To End - + Volume - - - + + + Volume Fader - - + + Full Volume - - + + Zero Volume - + Track Gain - + Track Gain knob - - + + Mute - + Eject - - + + Headphone Listen - + Headphone listen (pfl) button - + Repeat Mode - + Slip Mode - + Orientation - + Orient Left - + Orient Center - + Orient Right - + BPM +1 - + BPM -1 - + BPM +0.1 - + BPM -0.1 - + BPM Tap - + Adjust Beatgrid Faster +.01 - + Increase track's average BPM by 0.01 - + Adjust Beatgrid Slower -.01 - + Decrease track's average BPM by 0.01 - + Move Beatgrid Earlier - + Adjust the beatgrid to the left - + Move Beatgrid Later - + Adjust the beatgrid to the right - + Adjust Beatgrid - + Align beatgrid to current position - + Adjust Beatgrid - Match Alignment - + Adjust beatgrid to match another playing deck. - + Quantize Mode - + Sync - + Beat Sync One-Shot - + Sync Tempo One-Shot - + Sync Phase One-Shot - + 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 @@ -1728,451 +1716,456 @@ trace - Above + Profiling messages - + 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 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 @@ -2187,108 +2180,108 @@ trace - Above + Profiling messages - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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) + - Adjust %1 @@ -2338,1138 +2331,1131 @@ trace - Above + Profiling messages - - + + Kill %1 - %1 is "Low EQ" "Mid EQ" or "High EQ" - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + 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 - - Microphone && Auxiliary Show/Hide - keep double & to prevent creation of keyboard accelerator - - - - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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 @@ -3644,7 +3630,7 @@ trace - Above + Profiling messages - + Lock Қулфлаш @@ -3674,7 +3660,7 @@ trace - Above + Profiling messages - + Enter new name for crate: @@ -3691,53 +3677,59 @@ trace - Above + Profiling messages Қутини импорт қилиш - + 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. - + Confirm Deletion - - + + Renaming Crate Failed Қутини қайта номлаш муваффақиятсиз якунланди - + Crate Creation Failed - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - + M3U Playlist (*.m3u) @@ -3746,29 +3738,23 @@ trace - Above + Profiling messages Crates are a great way to help organize the music you want to DJ with. - - - - Export to Engine DJ - - Crates let you organize your music however you'd like! - + Do you really want to delete crate <b>%1</b>? - + A crate cannot have a blank name. Қутида бўш ном бўлмайди - + A crate by that name already exists. Ушбу номли қути аллақачон мавжуд. @@ -3863,12 +3849,12 @@ trace - Above + Profiling messages - + Official Website - + Donate @@ -3987,97 +3973,97 @@ trace - Above + Profiling messages DlgAutoDJ - + Skip Ўтказиб юбориш - + Random - + Fade - + Enable Auto DJ Shortcut: Shift+F12 - + Disable Auto DJ Shortcut: Shift+F12 - + Trigger the transition to the next track Shortcut: Shift+F11 - + Skip the next track in the Auto DJ queue Shortcut: Shift+F10 - + Shuffle the content of the Auto DJ queue Shortcut: Shift+F9 - + Repeat the playlist - + Determines the duration of the transition - + Seconds - + Full Intro + Outro - + Fade At Outro Start - + Full Track - + Skip Silence - + Decks not used for Auto DJ must be stopped to enable Auto DJ mode. - + Auto DJ Fade Modes Full Intro + Outro: @@ -4103,50 +4089,50 @@ last sound. - + Repeat - + Auto DJ requires two decks assigned to opposite sides of the crossfader. - + One deck must be stopped to enable Auto DJ mode. - + Enable - + Disable - + Displays the duration and number of selected tracks. - - - + + + Auto DJ Авто DJ - + Shuffle - + 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. @@ -4354,37 +4340,32 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + Didn't get any midi messages. Please try again. - + Unable to detect a mapping -- please try again. Be sure to only touch one control at once. - + Successfully mapped control: - + <i>Ready to learn %1</i> - + Learning: %1. Now move a control on your controller. - - The selected control does not exist.<br>This likely a bug. Please report it on the Mixxx bug tracker.<br><a href='https://github.com/mixxxdj/mixxx/issues'>https://github.com/mixxxdj/mixxx/issues</a><br><br>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. @@ -4423,17 +4404,17 @@ You tried to learn: %1,%2 - + Log - + Search - + Stats @@ -4499,7 +4480,7 @@ You tried to learn: %1,%2 - + &Close @@ -4614,128 +4595,122 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 - + Shoutcast 1 - + Icecast 1 - + MP3 - + Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono - + Stereo - - - - + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - - Settings for %1 - Settings for broadcast profile, %1 is the profile name placeholder - - - - + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -5061,138 +5036,138 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefController - + Apply device settings? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? - + None - + %1 by %2 - + No Name - + No Description - + No Author - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + missing - + built-in - + Do you want to save the changes? - + Troubleshooting - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings - + Are you sure you want to clear all input mappings? - + Clear Output Mappings - + Are you sure you want to clear all output mappings? @@ -5481,137 +5456,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode - + Mixxx mode (no blinking) - + Pioneer mode - + Denon mode - + Numark mode - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) - + 10% - + 16% - + 24% - + 50% - + 90% @@ -5908,134 +5883,124 @@ You can always drag-and-drop tracks on screen to clone a deck. - - + + Effect Chain Presets - + Drag and drop to rearrange lists and copy chains between lists. Create and edit chain presets in the effect units in the main window. Please refer the manual for further details. - + Chain presets from these lists will be selectable in the given order in the main window and from controllers (depending on the controller mapping). - + Effects in this chain preset: - + effect 1 name - + effect 2 name - + effect 3 name - + Import - + Rename Қайта номлаш - + Export - + Delete - + Quick Effect Chain Presets - - + + Visible Effects - + Drag and drop to rearrange lists and show or hide effects. - + Hidden Effects - - - - - - - - - - - + Effect load behavior - + Keep metaknob position - + Reset metaknob to effect default - + Effect Info - + Version: - + Description: - + Author: - + Name: - + Type: @@ -6310,97 +6275,67 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - - Black - - - - - ExtraBold - - - - - Bold - - - - - SemiBold - - - - - Medium - - - - - Light - - - - + Select Library Font @@ -7275,142 +7210,138 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz - + Default (long delay) - + Experimental (no delay) - + Disabled (short delay) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled - + Enabled - + Stereo - + Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - - Find details in the Mixxx user manual - - - - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + 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. - + + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms - + Configuration error @@ -7428,131 +7359,126 @@ The loudness target is approximate and assumes track pregain and main output lev - + Sample Rate - + Audio Buffer - + Engine Clock - + Use soundcard clock for live audience setups and lowest latency.<br>Use network clock for broadcasting without a live audience. - + Main Mix - + Main Output Mode - + Microphone Monitor Mode - + Microphone Latency Compensation - - - - + + + + ms milliseconds - - Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). - - - - + 20 ms - + Buffer Underflow Count - + 0 - + Keylock/Pitch-Bending Engine - + Multi-Soundcard Synchronization - + Output - + Input - + System Reported Latency - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. - + Main Output Delay - + Headphone Output Delay - + Booth Output Delay - + Hints and Diagnostics - + Downsize your audio buffer to improve Mixxx's responsiveness. - + Query Devices @@ -7594,7 +7520,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show Signal Quality in Skin @@ -7630,51 +7556,46 @@ The loudness target is approximate and assumes track pregain and main output lev - Pitch estimator - - - - Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality - + http://www.xwax.co.uk - + Powered by xwax - + Hints - + Select sound devices for Vinyl Control in the Sound Hardware pane. @@ -7697,42 +7618,32 @@ The loudness target is approximate and assumes track pregain and main output lev - + Top - + Center - + Bottom - - 1/3rd of waveform viewer - - - - - Full waveform viewer height - - - - + OpenGL not available - + dropped frames - + Cached waveforms occupy %1 MiB on disk. @@ -7750,7 +7661,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays which OpenGL version is supported by the current platform. @@ -7760,7 +7671,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Average frame rate @@ -7776,7 +7687,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Displays the actual frame rate. @@ -7791,7 +7702,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + OpenGL status @@ -7883,57 +7794,52 @@ Select from different types of displays for the waveform, which differ primarily - + Beats until next marker - - Preferred font size - - - - - Text height limit + + Time until next marker - - Time until next marker + + Placement - - Placement + + Font size - + pt - + This functionality requires a waveform type marked "(GLSL)". - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -7963,7 +7869,7 @@ Select from different types of displays for the waveform, which differ primarily - + Clear Cached Waveforms @@ -8119,22 +8025,22 @@ Select from different types of displays for the waveform, which differ primarily - + Start Recording - + Recording to file: - + Stop Recording - + %1 MiB written in %2 @@ -8442,102 +8348,102 @@ This can not be undone! - + Filetype: - + BPM: BPM - + Location: - + Bitrate: - + Comments - + BPM BPM - + Sets the BPM to 75% of the current value. - + 3/4 BPM - + Sets the BPM to 50% of the current value. - + Displays the BPM of the selected track. - + Track # Қўшиқ # - + Album Artist - + Composer - + Title Сарлавҳа - + Grouping - + Key Калит - + Year Йил - + Artist Санъаткор - + Album Альбом - + Genre Жанри @@ -8547,179 +8453,179 @@ This can not be undone! - + Sets the BPM to 200% of the current value. - + Double BPM - + Halve BPM - + Clear BPM and Beatgrid - + Move to the previous item. "Previous" button - + &Previous - + Move to the next item. "Next" button - + &Next - + Duration: - + Import Metadata from MusicBrainz - + Re-Import Metadata from file - + Color - + Date added: - + Open in File Browser - + Samplerate: - + Track BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. - + 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. - + Tap to Beat - + Hint: Use the Library Analyze view to run BPM detection. - + Save changes and close the window. "OK" button - + &OK - + Discard changes and close the window. "Cancel" button - + Save changes and keep the window open. "Apply" button - + &Apply - + &Cancel - + (no color) @@ -8876,7 +8782,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9329,15 +9235,15 @@ 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 @@ -9348,57 +9254,57 @@ Shown when VuMeter can not be displayed. Please keep - + activate - + toggle - + right - + left - + right small - + left small - + up - + down - + up small - + down small - + Shortcut @@ -9406,62 +9312,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9533,32 +9439,32 @@ Do you really want to overwrite it? MidiController - + MIDI Controller - + MixxxControl(s) not found - + 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: - + Some LEDs or other feedback may not work correctly. - + * Check to see that the MixxxControl names are spelled correctly in the mapping file (.xml) @@ -9629,7 +9535,7 @@ Do you really want to overwrite it? - Export to Engine DJ + Export to Engine Prime @@ -9641,122 +9547,122 @@ 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 - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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 @@ -9776,73 +9682,73 @@ Do you really want to overwrite it? - + 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? @@ -9858,13 +9764,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Қулфлаш - + Playlists @@ -9874,32 +9780,32 @@ Do you want to select an input device? - + 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 @@ -10072,82 +9978,69 @@ Do you want to scan your library for cover files now? - + Main - Audio path indetifier - + Booth - Audio path indetifier - + Headphones - Audio path indetifier - + Left Bus - Audio path indetifier - + Center Bus - Audio path indetifier - + Right Bus - Audio path indetifier - + Invalid Bus - Audio path indetifier - + Deck - Audio path indetifier - + Record/Broadcast - Audio path indetifier - + Vinyl Control - Audio path indetifier - + Microphone - Audio path indetifier - + Auxiliary - Audio path indetifier - + Unknown path type %1 - Audio path @@ -11461,7 +11354,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Sampler %1 @@ -11589,7 +11482,7 @@ may introduce a 'pumping' effect and/or distortion. - + various @@ -11695,54 +11588,54 @@ may introduce a 'pumping' effect and/or distortion. 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 @@ -11877,19 +11770,19 @@ may introduce a 'pumping' effect and/or distortion. Қулфлаш - - + + Confirm Deletion - + Do you really want to delete all unlocked playlist from <b>%1</b>?<br><br> %1 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak - + Deleting %1 playlists from <b>%2</b>.<br><br> %1 is the number of playlists to be deleted %2 is the year <b> + </b> are used to make the text in between bold in the popup <br> is a linebreak @@ -12869,7 +12762,7 @@ may introduce a 'pumping' effect and/or distortion. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). @@ -13218,11 +13111,6 @@ may introduce a 'pumping' effect and/or distortion. Hold or short click for latching to mix this input into the main output. - - - Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. - - If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. @@ -14490,12 +14378,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Eject - + Ejects track from the player. @@ -14693,12 +14581,12 @@ Use this to change only the effected (wet) signal with EQ and filter effects. TrackCollection - + Hiding tracks - + The selected tracks are in the following playlists:%1Hiding them will remove them from these playlists. Continue? @@ -15082,408 +14970,407 @@ This can not be undone! - + + E&xport Library to Engine Prime + + + + + Export the library to the Engine Prime format + + + + Create &New Playlist - + Create a new playlist - + Ctrl+n - + Create New &Crate - + Create a new crate - + Ctrl+Shift+N - - + + &View - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings - + Show Microphone Section - + Show the microphone section of the Mixxx interface. - + Ctrl+2 Menubar|View|Show Microphone Section - + Show Vinyl Control Section - + Show the vinyl control section of the Mixxx interface. - + Ctrl+3 Menubar|View|Show Vinyl Control Section - + Show Preview Deck - + Show the preview deck in the Mixxx interface. - + Ctrl+4 Menubar|View|Show Preview Deck - + Show Cover Art - + Show cover art in the Mixxx interface. - + Ctrl+6 Menubar|View|Show Cover Art - + Maximize Library - + Maximize the track library to take up all the available screen space. - + Space Menubar|View|Maximize Library - + &Full Screen - + Display Mixxx using the full screen - + &Options - + &Vinyl Control - + Use timecoded vinyls on external turntables to control Mixxx - + Enable Vinyl Control &%1 - + &Record Mix - + Record your mix to a file - + Ctrl+R - + Enable Live &Broadcasting - + Stream your mixes to a shoutcast or icecast server - + Ctrl+L - + Enable &Keyboard Shortcuts - + Toggles keyboard shortcuts on or off - + Ctrl+` - + &Preferences - + Change Mixxx settings (e.g. playback, MIDI, controls) - + &Developer - + &Reload Skin - + Reload the skin - + Ctrl+Shift+R - + Developer &Tools - + Opens the developer tools dialog - + Ctrl+Shift+T - + Stats: &Experiment Bucket - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. - + Ctrl+Shift+E - + Stats: &Base Bucket - + Enables base mode. Collects stats in the BASE tracking bucket. - + Ctrl+Shift+B - + Deb&ugger Enabled - + Enables the debugger during skin parsing - + Ctrl+Shift+D - + &Help - + Show Keywheel menu title - - E&xport Library to Engine DJ - "Engine DJ" must not be translated - - - - - Export the library to the Engine DJ format - - - - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support - + Get help with Mixxx - + &User Manual - + Read the Mixxx user manual. - + &Keyboard Shortcuts - + Speed up your workflow with keyboard shortcuts. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application - + Help translate this application into your language. - + &About - + About the application @@ -15491,25 +15378,25 @@ This can not be undone! WOverview - + 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 @@ -15639,77 +15526,77 @@ This can not be undone! WSearchRelatedTracksMenu - + Search related Tracks - + Key Калит - + harmonic with %1 - + BPM BPM - + between %1 and %2 - + Artist Санъаткор - + Album Artist - + Composer - + Title Сарлавҳа - + Album Альбом - + Grouping - + Year Йил - + Genre Жанри - + Directory - + &Search selected @@ -15717,594 +15604,594 @@ This can not be undone! WTrackMenu - + Load to - + Deck - + Sampler - + Add to Playlist - + Crates Қутилар - + Metadata - + Update external collections - + Cover Art - + Adjust BPM - + Select Color - - + + Analyze - - + + Delete Track Files - + Add to Auto DJ Queue (bottom) - + Add to Auto DJ Queue (top) - + Add to Auto DJ Queue (replace) - + Preview Deck - + Remove Олиб ташлаш - + Remove from Playlist - + Remove from Crate - + Hide from Library - + Unhide from Library - + Purge from Library - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties - + Open in File Browser - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Рейтинг - + Cue Point - + Hotcues - + Intro - + Outro - + Key Калит - + ReplayGain - + Waveform - + Comment Мулоҳаза - + All - + Lock BPM - + Unlock BPM - + Double BPM - + Halve BPM - + 2/3 BPM - + 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16320,37 +16207,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16358,7 +16245,7 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. @@ -16366,7 +16253,7 @@ This can not be undone! WaveformWidgetFactory - + legacy @@ -16446,52 +16333,52 @@ This can not be undone! 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. @@ -16537,33 +16424,32 @@ Click OK to exit. - - Export Library to Engine DJ - "Engine DJ" must not be translated + + Export Library to Engine Prime - + Export Library To - + No Export Directory Chosen - + No export directory was chosen. Please choose a directory in order to export the music library. - + 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. @@ -16584,7 +16470,7 @@ Click OK to exit. mixxx::EnginePrimeExportJob - + Failed to export track %1 - %2: %3 %1 is the artist %2 is the title and %3 is the original error message @@ -16610,7 +16496,7 @@ Click OK to exit. - Exporting to Engine DJ... + Exporting to Engine Prime... diff --git a/res/translations/mixxx_vi.qm b/res/translations/mixxx_vi.qm index 80bdfa8aefb6..8d2ed7ba7e9a 100644 Binary files a/res/translations/mixxx_vi.qm and b/res/translations/mixxx_vi.qm differ diff --git a/res/translations/mixxx_vi.ts b/res/translations/mixxx_vi.ts index 6f6a7c0e5c89..1e87eaade34c 100644 --- a/res/translations/mixxx_vi.ts +++ b/res/translations/mixxx_vi.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,54 +27,55 @@ AutoDJFeature - + Crates - Thùng + Crates + - + Enable Auto DJ - Bật Auto DJ + DJ Tự động - + Disable Auto DJ - Tắt Auto DJ + Tắt Tự động DJ - + Clear Auto DJ Queue - Dọn hàng đợi Auto DJ + Dọn hàng đợi Tự động DJ - + Remove Crate as Track Source - Loại bỏ thùng như theo dõi nguồn + Xoá Crate làm Nguồn track nhạc - + Auto DJ Tự động DJ - + Confirmation Clear Xác nhận Xoá - + Do you really want to remove all tracks from the Auto DJ queue? Bạn có muốn xoá mọi track nhạc khỏi hàng đợi Tự động DJ không? - + This can not be undone. Hành động này không thể quay lại được. - + Add Crate as Track Source - Thêm thùng như theo dõi nguồn + Thêm Crate làm Nguồn track nhạc @@ -81,20 +90,20 @@ Error loading Banshee database - Lỗi tải Banshee cơ sở dữ liệu + Lỗi tải Cơ sở dữ liệu Banshee Banshee database file not found at - Banshee cơ sở dữ liệu tập tin không tìm thấy tại + Không tìm thấy tệp Cơ sở dữ liệu Banshee 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 + Lỗi tải Cơ sở dữ liệu Banshee của bạn tại @@ -103,12 +112,12 @@ Add to Auto DJ Queue (bottom) - Thêm vào hàng đợi DJ tự động (phía dưới) + Thêm vào hàng đợi DJ tự động (dưới) Add to Auto DJ Queue (top) - Thêm vào hàng đợi DJ tự động (top) + Thêm vào hàng đợi DJ Tự động (trên) @@ -138,12 +147,12 @@ Playlist Creation Failed - Sáng tạo danh sách phát đã thất bại + Tạo Playlist không thành cô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: + Lỗi vô định khi tạo Playlist: @@ -151,28 +160,28 @@ New Playlist - Danh sách chơi mới + Playlist mới Add to Auto DJ Queue (bottom) - Thêm vào hàng đợi DJ tự động (phía dưới) + Thêm vào hàng đợi DJ Tự động (dưới) Create New Playlist - Tạo danh sách chơi mới + Tạo Playlist mới Add to Auto DJ Queue (top) - Thêm vào hàng đợi DJ tự động (top) + Thêm vào hàng đợi DJ Tự động (trên) Remove - Loại bỏ + Xoá @@ -187,13 +196,13 @@ Duplicate - Bản sao + Tạo bản sao Import Playlist - Chuyển nhập danh sách phát + Nhập Playlist @@ -203,29 +212,29 @@ Analyze entire Playlist - Phân tích toàn bộ danh sách phát + Phân tích toàn bộ Playlist Enter new name for playlist: - Nhập tên mới cho danh sách chơi: + Nhập tên mới cho Playlist: Duplicate Playlist - Lặp lại danh sách chơi + Tạo bản sao cho Playlist Enter name for new playlist: - Nhập tên cho danh sách phát mới: + Nhập tên cho Playlist mới: - + Export Playlist - Xuất chuyển danh sách chơi + Xuất Playlist @@ -242,27 +251,27 @@ Rename Playlist - Đổi tên danh sách chơi + Đổi tên Playlist Renaming Playlist Failed - Đổi tên danh sách phát đã thất bại + Đổi tên Playlist thất bại A playlist by that name already exists. - Một danh sách tên đó đã tồn tại. + Đã có Playlist tồn tại có cùng tên. A playlist cannot have a blank name. - Một danh sách không thể có một tên trống. + Tên Playlist không được để trống. @@ -277,15 +286,15 @@ - + Playlist Creation Failed - Sáng tạo danh sách phát đã thất bại + Tạo Playlist 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: + Lỗi vô định khi tạo playlist: @@ -298,25 +307,25 @@ Bạn có muốn xoá Playlist <b>%1</b>? - + M3U Playlist (*.m3u) Playlist M3U (*.m3u) - + M3U Playlist (*.m3u);;M3U8 Playlist (*.m3u8);;PLS Playlist (*.pls);;Text CSV (*.csv);;Readable Text (*.txt) - M3U danh sách bài hát (*.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) + Playlist M3U (*.m3u); playlist M3U8 (*.m3u8); playlist PLS (* .pls); Văn bản CSV (*.csv); Văn bản dạng đọc (*.txt) BaseSqlTableModel - + # # - + Timestamp Dấu thời gian @@ -324,9 +333,9 @@ BaseTrackPlayerImpl - + Couldn't load track. - Không thể nạp theo dõi. + Không thể load track nhạc. @@ -339,7 +348,7 @@ Album Artist - Album nghệ sĩ + Nghệ sĩ của Album @@ -362,7 +371,7 @@ Kênh - + Color Màu @@ -377,9 +386,9 @@ Nhà soạn nhạc - + Cover Art - Bìa + Ảnh bìa @@ -387,14 +396,14 @@ Ngày thêm vào - + Last Played Lần cuối phát Duration - Thời gian + Độ dài @@ -414,10 +423,10 @@ Key - Chìa khóa + Khoá - + Location Vị trí @@ -427,7 +436,7 @@ Tổng quan - + Preview Xem trước @@ -449,7 +458,7 @@ Played - Chơi + Đã phát @@ -459,7 +468,7 @@ Track # - Theo dõi # + STT Track # @@ -467,7 +476,7 @@ Năm - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk Đang tải hình ảnh ... @@ -483,28 +492,28 @@ Please enable at least one connection to use Live Broadcasting. - Vui lòng bật ít nhất một kết nối để dùng Live Broadcasting (Phát Trực tiếp). + Vui lòng bật ít nhất một kết nối để dùng Phát Trực tiếp. BroadcastProfile - + Can't use secure password storage: keychain access failed. Không thể dùng kho lưu trữ mật khẩu bảo mật: không truy cập được keychain. - + Secure password retrieval unsuccessful: keychain access failed. Không thể truy xuất mật khẩu bảo mật: không truy cập được keychain. - + Settings error Lỗi Cài đặt - + <b>Error with settings for '%1':</b><br> <b>Lỗi Cài đặt cho '%1':</b><br> @@ -514,7 +523,7 @@ Enabled - Kích hoạt + Bật @@ -557,17 +566,17 @@ Add to Quick Links - Thêm vào liên kết nhanh + Thêm vào Liên kết Nhanh Remove from Quick Links - Loại bỏ từ liên kết nhanh + Xoá khỏi Liên kết Nhanh Add to Library - Thêm vào thư viện + Thêm vào Thư viện @@ -577,7 +586,7 @@ Quick Links - Liên kết nhanh + Liên kết Nhanh @@ -588,23 +597,23 @@ Removable Devices - Thiết bị di động + Thiết bị Di động - + Computer Máy tính Music Directory Added - Âm nhạc thư mục bổ sung + Đường dẫn nguồn Nhạc đã được thêm 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? + Bạn đã thêm vào một hoặc nhiều thư mục nhạc. Các bài nhạc trong những thư mục này sẽ không hiện cho dến khi bạn quét lại thư viện của bạn. Bạn có muốn quét bây giờ không? @@ -612,17 +621,17 @@ Quét - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. Mục "Máy tính" giúp tìm kiếm, xem trước và tải track nhạc từ các thư mục trong ổ cứng và thiết bị lưu trữ ngoài. - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + If you load a track file from here, it will be added to your library. @@ -657,7 +666,7 @@ Track # - Theo dõi # + STT Track # @@ -682,7 +691,7 @@ Duration - Thời gian + Độ dài @@ -735,12 +744,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. @@ -771,87 +780,92 @@ 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 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 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. - + Top-level directory where Mixxx should look for settings. Default is: - + Starts Auto DJ when Mixxx is launched. - + Rescans the library when Mixxx is launched. - + Use legacy vu meter - + Use legacy spinny - - Loads experimental QML GUI instead of legacy QWidget skin + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version - + 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 @@ -861,32 +875,32 @@ 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. - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. - + Preview rendered controller screens in the Setting windows. @@ -979,2566 +993,2747 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output Đầu ra tai nghe - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 Sàn %1 - + Sampler %1 Sampler %1 - + Preview Deck %1 Xem trước sàn %1 - + Microphone %1 Micro %1 - + Auxiliary %1 Liên minh %1 - + Reset to default Đặt lại về mặc định - + Effect Rack %1 Có hiệu lực Rack %1 - + Parameter %1 Tham số %1 - + Mixer Máy trộn - - + + Crossfader Crossfader - + Headphone mix (pre/main) Tai nghe kết hợp (trước/chính) - + Toggle headphone split cueing Bật tắt tai nghe tách cueing - + Headphone delay Sự chậm trễ tai nghe - + Transport Giao thông vận tải - + Strip-search through track Strip-Search thông qua theo dõi - + Play button Nút Play - - + + 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 - + Stop button Dừng lại nút - + Jump to start of track and play Nhảy để bắt đầu theo dõi và chơi - + Jump to end of track Nhảy đến kết thúc của theo dõi - + Reverse roll (Censor) button Đả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 - + Toggle repeat mode Bật tắt cheá ñoä Laëp laïi - - + + 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 - + Toggle slip mode Bật tắt chế độ chống trượt - - + + BPM BPM - + Increase BPM by 1 Tăng BPM bằng 1 - + Decrease BPM by 1 Giảm BPM bằng 1 - + Increase BPM by 0.1 Tăng BPM bằng 0,1 - + Decrease BPM by 0.1 Giảm BPM bằng 0,1 - + BPM tap button BPM tap nút - + Toggle quantize mode Bật/tắt quantize chế độ - + One-time beat sync (tempo only) Một lần đánh bại đồng bộ (nhịp độ) - + One-time beat sync (phase only) 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 - + Equalizers 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 - + Slot %1 Khe cắm %1 - + Headphone Mix Kết hợp tai nghe - + Headphone Split Cue Tai nghe Split Cue - + Headphone Delay Sự chậm trễ tai nghe - + Play Chơi - + Fast Rewind Tua nhanh - + Fast Rewind button Nhanh chóng tua lại nút - + Fast Forward Tua đi - + Fast Forward button Nhanh chóng chuyển tiếp nút - + Strip Search Dải tìm - + Play Reverse Chơi đảo ngược - + Play Reverse button Chơi đảo ngược nút - + Reverse Roll (Censor) Đảo ngược cuộn (kiểm duyệt) - + Jump To Start Nhảy để bắt đầu - + Jumps to start of track Nhảy để bắt đầu theo dõi - + Play From Start Chơi từ đầu - + Stop Dừng - + Stop And Jump To Start Ngăn chặn và nhảy để bắt đầu - + Stop playback and jump to start of track Ngừng phát lại và nhảy để bắt đầu theo dõi - + Jump To End Nhảy đến cuối - + Volume Khối lượng - - - + + + Volume Fader Khối lượng đổi - - + + Full Volume Khối lượng đầy đủ - - + + Zero Volume Khối lượng không - + Track Gain Ca khúc đạt được - + Track Gain knob Ca khúc đạt được knob - - + + Mute Tắt tiếng - + Eject Đẩy ra - - + + Headphone Listen Tai nghe nghe - + Headphone listen (pfl) button Tai nghe nghe (pfl) nút - + Repeat Mode Lặp lại chế độ - + Slip Mode Chế độ chống trượt - - + + 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 - + BPM +1 BPM + 1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM-0.1 - + BPM Tap BPM Tap - + Adjust Beatgrid Faster +.01 Điều chỉnh Beatgrid nhanh hơn +.01 - + Increase track's average BPM by 0.01 Tăng BPM trung bình của con đường mòn bởi 0,01 - + Adjust Beatgrid Slower -.01 Điều chỉnh Beatgrid chậm hơn-.01 - + Decrease track's average BPM by 0.01 Giảm BPM trung bình của con đường mòn bởi 0,01 - + Move Beatgrid Earlier Beatgrid di chuyển trước đó - + Adjust the beatgrid to the left Điều chỉnh beatgrid bên trái - + Move Beatgrid Later Di chuyển Beatgrid sau đó - + Adjust the beatgrid to the right Điều chỉnh beatgrid ở bên phải - + Adjust Beatgrid Điều chỉnh Beatgrid - + Align beatgrid to current position Sắp xếp beatgrid đến vị trí hiện tại - + Adjust Beatgrid - Match Alignment Điều chỉnh Beatgrid - trận đấu liên kết - + Adjust beatgrid to match another playing deck. Điều chỉnh beatgrid để phù hợp với một sân chơi. - + Quantize Mode Quantize chế độ - + Sync Đồng bộ - + Beat Sync One-Shot Đánh bại đồng bộ một-shot - + Sync Tempo One-Shot Tiến độ đồng bộ một-shot - + Sync Phase One-Shot 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 - + High EQ Cao EQ - + Mid EQ Giữa EQ - - + + Main Output - + Main Output Balance - + Main Output Delay - + Main Output Gain - + Low EQ 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 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 - + 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ỏ - + Headphone Gain Tai nghe được - + Headphone gain Tai nghe được - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync - + One-time beat sync tempo (and phase with quantize enabled) - + 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ỹ) - - + + Adjust %1 Điều chỉnh %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 - + Button Parameter %1 - + Skin Da - + Controller - + Crossfader / Orientation - + Main Output gain - + Main Output balance - + Main Output delay - + Headphone Tai nghe - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" Giết %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. - + BPM / Beatgrid - + Halve BPM - + Multiply current BPM by 0.5 - + 2/3 BPM - + Multiply current BPM by 0.666 - + 3/4 BPM - + Multiply current BPM by 0.75 - + 4/3 BPM - + Multiply current BPM by 1.333 - + 3/2 BPM - + Multiply current BPM by 1.5 - + Double BPM - + Multiply current BPM by 2 - + Tempo Tap - + Tempo tap button - + Move Beatgrid - + Adjust the beatgrid to the left or right - + Move Beatgrid Half a Beat - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - - + + Toggle the BPM/beatgrid lock - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - + 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 - + Decrease Speed (Fine) - + 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 - - + + Sort hotcues by position - - + + Sort hotcues by position (remove offsets) - + 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 - + if the track has no beats the unit is seconds - + 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 %1 Beats set from its end point - + Loop Roll %1 Beats set from its end point - + Create %1-beat loop with the current play position as loop end - + Create temporary %1-beat loop roll with the current play position as loop end - + Loop Beats - + Loop Roll Beats - + Go To Loop In - + Go to Loop In button - + Go To Loop Out - + Go to Loop Out button - + 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 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position - + Beat Jump / Loop Move Forward - + Beat Jump / Loop Move Backward - + Loop Move Forward - + Loop Move Backward - + Remove Temporary Loop - + Remove the temporary loop - + 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 - + Sort focused column - + Sort the column of the cell that is currently focused, equivalent to clicking on its header - + 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 - + Clear search - + Clears the search query - - + + Select Next Color Available - + Select the next color in the color palette for the first selected track - - + + Select Previous Color Available - + Select the previous color in the color palette for the first selected track - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button - + + Quick Effect Enable Button - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator - + Waveform Zoom Reset To Default - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms - + Select the next color in the color palette for the loaded track. - + Select previous color in the color palette for the loaded track. - + Navigate Through Track Colors - + Select either next or previous color in the palette for the loaded track. - + 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. - - + + + Deck %1 Stems + + + + + 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. + + 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 + + + + + Controller + + + Unknown + + + + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + - - Cover Art Show/Hide (Decks) + + Physical Max - - Show/hide cover art in the main decks + + Unit Scaling - - Vinyl Spinner Show/Hide - Vinyl Spinner Hiển thị/ẩn + + Unit + - - Show/hide spinning vinyl widget - Hiển thị/ẩn quay vinyl Tiện ích + + Abs/Rel + - - Vinyl Spinners Show/Hide (All Decks) + + + Wrap - - Show/Hide all spinnies + + + Linear - - Toggle Waveforms + + + Preferred - - Show/hide the scrolling waveforms. + + + Null - - Waveform zoom - Thu phóng dạng sóng + + + Volatile + - - Waveform Zoom - Thu phóng dạng sóng + + Usage Page + - - Zoom waveform in - Phóng to dạng sóng + + Usage + - - Waveform Zoom In - Dạng sóng phóng to + + Relative + - - Zoom waveform out - Thu nhỏ dạng sóng + + Absolute + - - Star Rating Up + + No Wrap - - Increase the track rating by one star + + Non Linear - - Star Rating Down + + No Preferred - - Decrease the track rating by one star + + No Null - - - Controller - - Unknown + + Non Volatile @@ -3644,32 +3839,32 @@ trace - Above + Profiling messages 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. @@ -3677,27 +3872,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem - + The mapping for controller "%1" cannot be opened. - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. - + File: - + Error: @@ -3730,7 +3925,7 @@ trace - Above + Profiling messages - + Lock Khóa @@ -3760,7 +3955,7 @@ trace - Above + Profiling messages Tự động theo dõi DJ nguồn - + Enter new name for crate: Nhập tên mới cho thùng: @@ -3777,22 +3972,22 @@ trace - Above + Profiling messages 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 @@ -3802,28 +3997,28 @@ trace - Above + Profiling messages - + Confirm Deletion - - + + 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 danh sách bài hát (*.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) - + M3U Playlist (*.m3u) M3U danh sách bài hát (*.m3u) @@ -3844,17 +4039,17 @@ trace - Above + Profiling messages Thùng cho phép bạn tổ chức âm nhạc của bạn Tuy nhiên bạn muốn! - + Do you really want to delete crate <b>%1</b>? - + 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. @@ -3949,12 +4144,12 @@ trace - Above + Profiling messages Trong quá khứ những người đóng góp - + Official Website - + Donate @@ -4741,122 +4936,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 NPP - + Ogg Vorbis Ogg Vorbis - + Opus - + AAC - + HE-AAC - + HE-AACv2 - + Automatic - + Mono Mono - + Stereo Âm thanh nổi - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed - + You can't create more than %1 source connections. - + Source connection %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. - + Are you sure you want to disconnect every active source connection? - - + + Confirmation required - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. - + Are you sure you want to delete '%1'? - + Renaming '%1' - + New name for '%1': - + Can't rename '%1' to '%2': name already in use @@ -4869,27 +5081,27 @@ Two source connections to the same server that have the same mountpoint can not Sống phát thanh truyền tuỳ chọn - + Mixxx Icecast Testing Mixxx Icecast thử nghiệm - + Public stream Khu vực stream - + http://www.mixxx.org http://www.Mixxx.org - + Stream name Dòng tên - + 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. Do sai sót trong một số khách hàng trực tuyến, Cập Nhật Ogg Vorbis siêu dữ liệu tự động có thể gây ra lỗi này nghe và disconnections. Kiểm tra hộp này để cập nhật các siêu dữ liệu anyway. @@ -4929,67 +5141,72 @@ Two source connections to the same server that have the same mountpoint can not - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. Tự động cập nhật siêu dữ liệu Ogg Vorbis. - + ICQ - + AIM - + Website Trang web - + Live mix Trực tiếp kết hợp - + IRC - + Select a source connection above to edit its settings here - + Password storage - + Plain text - + Secure storage (OS keychain) - + Genre Thể loại - + Use UTF-8 encoding for metadata. Sử dụng UTF-8 mã hóa cho siêu dữ liệu. - + Description Mô tả @@ -5015,42 +5232,42 @@ Two source connections to the same server that have the same mountpoint can not Kênh - + Server connection Kết nối máy chủ - + Type Loại - + Host Máy chủ lưu trữ - + Login Đăng nhập - + Mount Gắn kết - + Port Cổng - + Password Mật khẩu - + Stream info @@ -5060,17 +5277,17 @@ Two source connections to the same server that have the same mountpoint can not - + Use static artist and title. - + Static title - + Static artist @@ -5129,13 +5346,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number - + Color @@ -5180,17 +5398,22 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + Key palette @@ -5198,114 +5421,114 @@ associated with each key. DlgPrefController - + Apply device settings? Áp dụng thiết đặt? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? Cài đặt của bạn phải được áp dụng trước khi bắt đầu thuật sĩ học tập. Áp dụng thiết đặt và tiếp tục? - + None Không có - + %1 by %2 %1 bởi %2 - + Mapping has been edited - + Always overwrite during this session - + Save As - + Overwrite - + Save user mapping - + Enter the name for saving the mapping to the user folder. - + Saving mapping failed - + A mapping cannot have a blank name and may not contain special characters. - + A mapping file with that name already exists. - + Do you want to save the changes? - + Troubleshooting Giải đáp thắc mắc - + <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. - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? - + Clear Input Mappings Rõ ràng đầu vào ánh xạ - + Are you sure you want to clear all input mappings? Bạn có chắc bạn muốn xóa tất cả các ánh xạ đầu vào không? - + Clear Output Mappings Rõ ràng sản lượng ánh xạ - + Are you sure you want to clear all output mappings? Bạn có chắc bạn muốn xóa tất cả ra ánh xạ? @@ -5323,100 +5546,105 @@ Apply settings and continue? Kích hoạt - + + Refresh mapping list + + + + Device Info - + Physical Interface: - + Vendor name: - + Product name: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: Trò chơi mô tả: - + Support: Hỗ trợ: - + Screens preview - + Input Mappings Ánh xạ đầu vào - - + + Search Tìm - - + + Add Thêm - - + + Remove Loại bỏ @@ -5436,17 +5664,17 @@ Apply settings and continue? - + Mapping Info - + Author: Tác giả: - + Name: Tên: @@ -5456,28 +5684,28 @@ Apply settings and continue? Thuật sĩ học tập (MIDI chỉ) - + Data protocol: - + Mapping Files: - + Mapping Settings - - + + Clear All Xóa tất cả - + Output Mappings Ánh xạ đầu ra @@ -5492,21 +5720,21 @@ 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. - + Mixxx DJ Hardware Guide - + MIDI Mapping File Format - + MIDI Scripting with Javascript @@ -5636,6 +5864,16 @@ Apply settings and continue? Multi-Sampling + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5665,137 +5903,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Chế độ Mixxx - + Mixxx mode (no blinking) Mixxx chế độ (không nhấp nháy) - + Pioneer mode Chế độ tiên phong - + Denon mode Chế độ Denon - + Numark mode Numark chế độ - + CUP mode - + mm:ss%1zz - Traditional - + mm:ss - Traditional (Coarse) - + s%1zz - Seconds - + sss%1zz - Seconds (Long) - + s%1sss%2zz - Kiloseconds - + Intro start - + Main cue - + First hotcue - + First sound (skip silence) - + Beginning of track - + Reject - + Allow, but stop deck - + Allow, play from load point - + 4% - + 6% (semitone) - + 8% (Technics SL-1210) 8% (máy móc SL-1210) - + 10% 10% - + 16% - + 24% - + 50% 50% - + 90% 90% @@ -6227,62 +6465,62 @@ 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 - + Disabled - + 2x MSAA - + 4x MSAA - + 8x MSAA - + 16x MSAA - + 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, scaling or multi-sampling settings will take effect. @@ -6509,67 +6747,97 @@ and allows you to pitch adjust them for harmonic mixing. - + 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 - + Item is not a directory or directory is missing - + 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 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font Chọn phông chữ thư viện @@ -6618,262 +6886,267 @@ and allows you to pitch adjust them for harmonic mixing. - + Audio File Formats Định dạng tập tin âm thanh - + Track Table View - + Track Double-Click Action: - + BPM display precision: - + Session History - + Track duplicate distance - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. - + Delete history playlist with less than N tracks - + Library Font: Thư viện phông: - + + Show scan summary dialog + + + + Grey out played tracks - + Track Search - + Enable search completions - + Enable search history keyboard shortcuts - + Percentage of pitch slider range for 'fuzzy' BPM search: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks - + Preferred Cover Art Fetcher Resolution - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. - + Note: ">1200 px" can fetch up to very large cover arts. - + >1200 px (if available) - + 1200 px (if available) - + 500 px - + 250 px - + Settings Directory - + The Mixxx settings directory 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. - + Open Mixxx Settings Folder - + Library Row Height: Thư viện hàng chiều cao: - + Use relative paths for playlist export if possible Sử dụng đường dẫn tương đối để xuất khẩu danh sách chơi nếu có thể - + ... ... - + px px - + Synchronize library track metadata from/to file tags - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library - + Synchronize Serato track metadata from/to file tags (experimental) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. - + Edit metadata after clicking selected track - + Search-as-you-type timeout: - + ms MS - + Load track to next available deck Tải ca khúc để boong có sẵn tiếp theo - + External Libraries Bên ngoài thư viện - + You will need to restart Mixxx for these settings to take effect. Bạn sẽ cần phải khởi động lại Mixxx cho các thiết đặt này có hiệu lực. - + Show Rhythmbox Library Hiển thị Rhythmbox thư viện - + Track Metadata Synchronization / Playlists - + Add track to Auto DJ queue (bottom) - + Add track to Auto DJ queue (top) - + Ignore - + Show Banshee Library Hiển thị Banshee thư viện - + Show iTunes Library Hiển thị iTunes thư viện - + Show Traktor Library Hiển thị Traktor thư viện - + Show Rekordbox Library - + Show Serato Library - + All external libraries shown are write protected. Tất cả các thư viện bên ngoài Hiển thị là bảo vệ cấm ghi. @@ -7218,33 +7491,33 @@ and allows you to pitch adjust them for harmonic mixing. DlgPrefRecord - + Choose recordings directory Chọn thư mục bản ghi âm - - + + Recordings directory invalid - + Recordings directory must be set to an existing directory. - + Recordings directory must be set to a directory. - + Recordings directory not writable - + You do not have write access to %1. Choose a recordings directory you have write access to. @@ -7262,43 +7535,55 @@ and allows you to pitch adjust them for harmonic mixing. Trình duyệt... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality Chất lượng - + Tags Tags - + Title Tiêu đề - + Author Tác giả - + Album Album - + Output File Format - + Compression - + Lossy @@ -7313,12 +7598,12 @@ and allows you to pitch adjust them for harmonic mixing. - + Compression Level - + Lossless @@ -7449,172 +7734,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) Mặc định (dài sự chậm trễ) - + Experimental (no delay) Thử nghiệm (có sự chậm trễ) - + Disabled (short delay) Khuyết tật (sự chậm trễ ngắn) - + Soundcard Clock - + Network Clock - + Direct monitor (recording and broadcasting only) - + Disabled Khuyết tật - + Enabled Kích hoạt - + Stereo Âm thanh nổi - + Mono Mono - + To enable Realtime scheduling (currently disabled), see the %1. - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. - + Mixxx DJ Hardware Guide - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) - + 2048 frames/period - + 4096 frames/period - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. - + Refer to the Mixxx User Manual for details. - + Configured latency has changed. - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. - + Realtime scheduling is enabled. - + Main output only - + Main and booth outputs - + %1 ms %1 ms - + Configuration error Lỗi cấu hình @@ -7681,17 +7971,22 @@ The loudness target is approximate and assumes track pregain and main output lev MS - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count Bộ đệm Underflow tính - + 0 0 @@ -7716,12 +8011,12 @@ The loudness target is approximate and assumes track pregain and main output lev Đầu vào - + System Reported Latency Hệ thống báo cáo trễ - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. Phóng to đệm âm thanh của bạn nếu truy cập underflow đang gia tăng hoặc bạn nghe hiện ra trong khi phát lại. @@ -7751,7 +8046,7 @@ The loudness target is approximate and assumes track pregain and main output lev Gợi ý và chẩn đoán - + Downsize your audio buffer to improve Mixxx's responsiveness. Giảm bớt đệm âm thanh của bạn để cải thiện để đáp ứng của Mixxx. @@ -7798,7 +8093,7 @@ The loudness target is approximate and assumes track pregain and main output lev Cấu hình vinyl - + Show Signal Quality in Skin Hiển thị chất lượng tín hiệu trong da @@ -7834,46 +8129,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 - + Deck 2 - + Deck 3 - + Deck 4 - + Signal Quality Chất lượng tín hiệu - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax Được tài trợ bởi xwax - + Hints Gợi ý - + Select sound devices for Vinyl Control in the Sound Hardware pane. Chọn thiết bị âm thanh cho Vinyl kiểm soát trong ngăn phần cứng âm thanh. @@ -7881,58 +8181,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered Lọc - + HSV HSV - + RGB RGB - + Top - + Center - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL không sẵn dùng - + dropped frames bỏ khung - + Cached waveforms occupy %1 MiB on disk. @@ -7950,22 +8250,17 @@ The loudness target is approximate and assumes track pregain and main output lev Tỷ lệ khung hình - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. Hiển thị phiên bản OpenGL nào được hỗ trợ bởi nền tảng hiện tại. - - Normalize waveform overview - Bình thường hóa dạng sóng tổng quan - - - + Average frame rate Tỷ lệ khung hình trung bình @@ -7981,7 +8276,7 @@ The loudness target is approximate and assumes track pregain and main output lev Mức thu phóng mặc định - + Displays the actual frame rate. Hiển thị tỷ lệ khung hình thực tế. @@ -8016,7 +8311,7 @@ The loudness target is approximate and assumes track pregain and main output lev Thấp - + Show minute markers on waveform overview @@ -8061,7 +8356,7 @@ The loudness target is approximate and assumes track pregain and main output lev Toàn cầu tăng thị giác - + 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. @@ -8128,22 +8423,22 @@ Select from different types of displays for the waveform, which differ primarily - + Caching - + 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. - + Enable waveform caching - + Generate waveforms when analyzing library @@ -8159,7 +8454,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8189,12 +8484,58 @@ Select from different types of displays for the waveform, which differ primarily - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms @@ -8683,7 +9024,7 @@ This can not be undone! BPM: - + Location: Địa điểm: @@ -8698,27 +9039,27 @@ This can not be undone! Ý kiến - + BPM BPM - + Sets the BPM to 75% of the current value. Thiết lập BPM đến 75% của giá trị hiện tại. - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. Thiết lập BPM 50% của giá trị hiện tại. - + Displays the BPM of the selected track. Hiển thị BPM đường đã chọn. @@ -8773,49 +9114,49 @@ This can not be undone! Thể loại - + ReplayGain: - + Sets the BPM to 200% of the current value. Thiết lập BPM 200% giá trị hiện tại. - + Double BPM Đôi BPM - + Halve BPM Giảm một nửa BPM - + Clear BPM and Beatgrid Rõ ràng BPM và Beatgrid - + Move to the previous item. "Previous" button Di chuyển đến mục trước. - + &Previous & Trước - + Move to the next item. "Next" button Di chuyển đến mục kế tiếp. - + &Next & Tiếp theo @@ -8840,12 +9181,12 @@ This can not be undone! - + Date added: - + Open in File Browser Mở trong trình duyệt tập tin @@ -8855,102 +9196,107 @@ This can not be undone! - + + Filesize: + + + + Track BPM: Theo dõi BPM: - + 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. - + Assume constant tempo - + Sets the BPM to 66% of the current value. Thiết lập BPM 66% của giá trị hiện tại. - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. - + 3/2 BPM - + Sets the BPM to 133% of the current value. - + 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. Khai thác với nhịp đập để thiết lập BPM để tốc độ bạn đang khai thác. - + Tap to Beat Bấm vào để đánh bại - + Hint: Use the Library Analyze view to run BPM detection. Gợi ý: Sử dụng xem thư viện phân tích để chạy việc phát hiện BPM. - + Save changes and close the window. "OK" button Lưu thay đổi và đóng cửa sổ. - + &OK & OK - + Discard changes and close the window. "Cancel" button Bỏ các thay đổi và đóng cửa sổ. - + Save changes and keep the window open. "Apply" button Lưu thay đổi và giữ cho cửa sổ mở. - + &Apply & Áp dụng - + &Cancel & Hủy bỏ - + (no color) @@ -9107,7 +9453,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h - + (no color) @@ -9309,27 +9655,27 @@ 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) - + Rubberband R3 (near-hi-fi quality) - + Unknown, using Rubberband (better) - + Unknown, using Soundtouch @@ -9544,15 +9890,15 @@ 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 @@ -9563,57 +9909,57 @@ Shown when VuMeter can not be displayed. Please keep 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 @@ -9621,62 +9967,62 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies - - + + This directory can not be read. - + An unknown error occurred. Aborting the operation to avoid library inconsistencies - + Can't add Directory to Library - + Could not add <b>%1</b> to your library. %2 - + Can't remove Directory from Library - + An unknown error occurred. - + This directory does not exist or is inaccessible. - + Relink Directory - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9686,22 +10032,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9839,12 +10185,12 @@ Do you really want to overwrite it? Ẩn bài nhạc - + Export to Engine DJ - + Tracks @@ -9852,37 +10198,37 @@ 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 @@ -9892,211 +10238,211 @@ Do you really want to overwrite it? - + Allow Mixxx to hide the menu bar? - + Hide Always show the menu bar? - + Always show - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label - + Ask me again - - + + 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? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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? @@ -10112,13 +10458,13 @@ Do you want to select an input device? PlaylistFeature - + Lock Khóa - - + + Playlists Danh sách phát @@ -10128,58 +10474,63 @@ Do you want to select an input device? - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock Mở khóa - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + 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 @@ -10278,59 +10629,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 @@ -10444,69 +10795,82 @@ Bạn có muốn quét thư viện của bạn cho tệp bìa bây giờ?14-bit (MSB) - + Main + Audio path indetifier - + Booth + Audio path indetifier - + Headphones + Audio path indetifier Tai nghe - + Left Bus + Audio path indetifier Xe buýt bên trái - + Center Bus + Audio path indetifier Xe buýt Trung tâm - + Right Bus + Audio path indetifier Xe buýt bên phải - + Invalid Bus + Audio path indetifier Xe buýt không hợp lệ - + Deck + Audio path indetifier Sàn - + Record/Broadcast + Audio path indetifier - + Vinyl Control + Audio path indetifier Vinyl kiểm soát - + Microphone + Audio path indetifier Micro - + Auxiliary + Audio path indetifier Liên minh - + Unknown path type %1 + Audio path Đường dẫn không rõ loại %1 @@ -10835,47 +11199,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang - + Metronome - + + The Mixxx Team - + Adds a metronome click sound to the stream - + BPM BPM - + Set the beats per minute value of the click sound - + Sync Đồng bộ - + Synchronizes the BPM with the track if it can be retrieved - + + Gain - + Set the gain of metronome click sound @@ -11659,14 +12025,14 @@ Fully right: end of the effect period - - + + encoder failure - - + + Failed to apply the selected settings. @@ -11804,7 +12170,7 @@ Hint: compensates "chipmunk" or "growling" voices - + Passthrough @@ -11872,15 +12238,86 @@ and the processed output signal as close as possible in perceived loudness + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + Threshold (dBFS) + Threshold + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + + + + + Knee (dB) + + + + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + + + + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + + + + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + + The Threshold knob adjusts the level above which the compressor starts attenuating the input signal @@ -11909,6 +12346,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Knee @@ -11919,11 +12357,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu + Attack (ms) + Attack @@ -11935,11 +12375,13 @@ will set in once the signal exceeds the threshold + Release (ms) + Release @@ -11968,12 +12410,12 @@ may introduce a 'pumping' effect and/or distortion. - + built-in - + missing @@ -12008,42 +12450,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12304,193 +12746,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx phát hiện lỗi - + Could not allocate shout_t Không thể cấp phát shout_t - + Could not allocate shout_metadata_t Không thể cấp phát shout_metadata_t - + Error setting non-blocking mode: Lỗi cài đặt không chặn chế độ: - + Error setting tls mode: - + Error setting hostname! Lỗi cài đặt tên miền máy chủ! - + Error setting port! Lỗi cài đặt cổng! - + Error setting password! Lỗi cài đặt mật khẩu! - + Error setting mount! Lỗi cài đặt núi! - + Error setting username! Lỗi cài đặt tên người dùng! - + Error setting stream name! Lỗi thiết lập dòng tên! - + Error setting stream description! Lỗi cài đặt dòng mô tả! - + Error setting stream genre! Lỗi cài đặt stream thể loại! - + Error setting stream url! Lỗi cài đặt stream url! - + Error setting stream IRC! - + Error setting stream AIM! - + Error setting stream ICQ! - + Error setting stream public! Lỗi cài đặt dòng công cộng! - + Unknown stream encoding format! - + Use a libshout version with %1 enabled - + 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. - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. - + Unsupported sample rate - + Error setting bitrate Lỗi cài đặt bitrate - + Error: unknown server protocol! Lỗi: giao thức máy chủ không rõ! - + Error: Shoutcast only supports MP3 and AAC encoders - + Error setting protocol! Lỗi cài đặt giao thức! - + Network cache overflow - + Connection error - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> - + Connection message - + <b>Message from Live Broadcasting connection '%1':</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. - + Lost connection to streaming server. - + Please check your connection to the Internet. - + Can't connect to streaming server Không thể kết nối với máy chủ streaming - + Please check your connection to the Internet and verify that your username and password are correct. Xin vui lòng kiểm tra kết nối Internet của bạn và xác minh rằng tên người dùng và mật khẩu của bạn là chính xác. @@ -12498,7 +12940,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered Lọc @@ -12506,23 +12948,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device một thiết bị - + An unknown error occurred Lỗi không biết xảy ra - + Two outputs cannot share channels on "%1" - + Error opening "%1" @@ -12707,7 +13149,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl Quay Vinyl @@ -12889,7 +13331,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art Bìa @@ -13079,243 +13521,243 @@ may introduce a 'pumping' effect and/or distortion. Giữ độ lợi EQ thấp bằng không trong khi hoạt động. - + Displays the tempo of the loaded track in BPM (beats per minute). Hiển thị tiến độ của đường nạp trong BPM (nhịp mỗi phút). - + Tempo Tiến độ - + Key The musical key of a track Chìa khóa - + BPM Tap BPM Tap - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. Khi khai thác liên tục, điều chỉnh BPM để phù hợp với tapped BPM. - + Adjust BPM Down Điều chỉnh BPM xuống - + When tapped, adjusts the average BPM down by a small amount. Khi khai thác, điều chỉnh trung bình BPM xuống bởi một số lượng nhỏ. - + Adjust BPM Up Điều chỉnh BPM lên - + When tapped, adjusts the average BPM up by a small amount. Khi khai thác, điều chỉnh BPM trung bình lên bởi một số lượng nhỏ. - + Adjust Beats Earlier Điều chỉnh nhịp đập trước đó - + When tapped, moves the beatgrid left by a small amount. Khi khai thác, di chuyển beatgrid rời bởi một số lượng nhỏ. - + Adjust Beats Later Điều chỉnh nhịp đập sau - + When tapped, moves the beatgrid right by a small amount. Khi khai thác, di chuyển beatgrid ngay bởi một số lượng nhỏ. - + Tempo and BPM Tap Tiến độ và BPM Tap - + Show/hide the spinning vinyl section. Hiển thị/ẩn phần vinyl quay. - + Keylock - + Toggling keylock during playback may result in a momentary audio glitch. - + Toggle visibility of Loop Controls - + Toggle visibility of Beatjump Controls - + Toggle visibility of Rate Control - + Toggle visibility of Key Controls - + (while previewing) - + Places a cue point at the current position on the waveform. - + Stops track at cue point, OR go to cue point and play after release (CUP mode). - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). - + Is latching the playing state. - + Seeks the track to the cue point and stops. - + Play Chơi - + Plays track from the cue point. - + 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. - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. - + Tempo Range Display - + Displays the current range of the tempo slider. - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). - + Delete selected hotcue. - + Track Comment - + Displays the comment tag of the loaded track. - + Opens separate artwork viewer. - + Effect Chain Preset Settings - + Show the effect chain settings menu for this unit. - + Select and configure a hardware device for this input - + Recording Duration @@ -13538,947 +13980,982 @@ may introduce a 'pumping' effect and/or distortion. - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap - + Rate Tap and BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change - + Revert last BPM/Beatgrid Change of the loaded track. - - + + Toggle the BPM/beatgrid lock - + Tempo and Rate Tap - + Tempo, Rate Tap and BPM Tap - + Shift cues earlier - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. - + Left click: shift 10 milliseconds earlier - + Right click: shift 1 millisecond earlier - + Shift cues later - + Left click: shift 10 milliseconds later - + Right click: shift 1 millisecond later - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. - + Main mix enable - + Hold or short click for latching to mix this input into the main output. - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. - + If the play position is inside an active loop, stores the loop as loop cue. - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers - + Toggle expanded samplers view. - + Displays the duration of the running recording. - + Auto DJ is active - + Red for when needle skip has been detected. - + Hot Cue - Track will seek to nearest previous hotcue point. - + Sets the track Loop-In Marker to the current play position. - + Press and hold to move Loop-In Marker. - + Jump to Loop-In Marker. - + Sets the track Loop-Out Marker to the current play position. - + Press and hold to move Loop-Out Marker. - + Jump to Loop-Out Marker. - + If the track has no beats the unit is seconds. - + Beatloop Size - + 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. - + 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. - + Start a loop over the set number of beats. - + Temporarily enable a rolling loop over the set number of beats. - + Beatloop Anchor - + Define whether the loop is created and adjusted from its staring point or ending point. - + Beatjump/Loop Move Size - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. - + Beatjump Forward - + Jump forward by the set number of beats. - + Move the loop forward by the set number of beats. - + Jump forward by 1 beat. - + Move the loop forward by 1 beat. - + Beatjump Backward - + Jump backward by the set number of beats. - + Move the loop backward by the set number of beats. - + Jump backward by 1 beat. - + Move the loop backward by 1 beat. - + Reloop - + 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. - + Enable loop, jump to Loop-In Marker, and stop playback. - + Displays the elapsed and/or remaining time of the track loaded. - + Click to toggle between time elapsed/remaining time/both. - + Hint: Change the time format in Preferences -> Decks. - + Show/hide intro & outro markers and associated buttons. - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker - - - - + + + + If marker is set, jumps to the marker. - - - - + + + + If marker is not set, sets the marker to the current play position. - - - - + + + + If marker is set, clears the marker. - + Intro End Marker - + Outro Start Marker - + Outro End Marker - + Mix - + 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: Add wet to dry - + Mix Mode - + 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 (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 left 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 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu - + Show/hide skin settings menu - + Save Sampler Bank Lưu Sampler ngân hàng - + Save the collection of samples loaded in the samplers. - + Load Sampler Bank Tải Sampler ngân hàng - + Load a previously saved collection of samples into the samplers. - + Show Effect Parameters - + Enable Effect - + Meta Knob Link - + Set how this parameter is linked to the effect's Meta Knob. - + Meta Knob Link Inversion - + Inverts the direction this parameter moves when turning the effect's Meta Knob. - + Super Knob Siêu Knob - + Next Chain Tiếp theo chuỗi - + Previous Chain Chuỗi trước - + Next/Previous Chain Kế tiếp/trước Chuỗi - + 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 - + Clear Unit Rõ ràng đơn vị - + Clear effect unit. Đơn vị có hiệu lực rõ ràng. - + Show/hide parameters for effects in this unit. - + Toggle Unit Chuyển đổi đơn vị - + Enable or disable this whole effect unit. - + Controls the Meta Knob of all effects in this unit together. - + Load next 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. - - - - - - - - - + + + + + + + + + Assign Effect Unit - + Assign this effect unit to the channel output. - + Route the headphone channel through this effect unit. - + Route this deck through the indicated effect unit. - + Route this sampler through the indicated effect unit. - + Route this microphone 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. - + Switch to the 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 the next or previous effect. Chuyển sang một trong hai tác dụng kế tiếp hoặc trước đó. - + Meta Knob - + Controls linked parameters of this effect - + Effect Focus Button - + Focuses this effect. - + Unfocuses this effect. - + Refer to the web page on the Mixxx wiki for your controller for more information. - + Effect Parameter Có hiệu lực tham số - + Adjusts a parameter of the effect. Điều chỉnh các thông số của hiệu lực. - + Inactive: parameter not linked - + Active: parameter moves with Meta Knob - + 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 - - + + Equalizer Parameter Kill Bộ chỉnh âm tham số giết - - + + Holds the gain of the EQ to zero while active. Tổ chức đạt được của các EQ bằng không trong khi hoạt động. - + Quick Effect Super Knob Hiệu ứng nhanh siêu Knob - + Quick Effect Super Knob (control linked effect parameters). Nhanh chóng có hiệu lực Super Knob (kiểm soát tham số liên kết có hiệu lực). - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. Gợi ý: Các thay đổi chế độ có hiệu lực nhanh chóng mặc định trong tuỳ chọn-> Equalizers. - + Equalizer Parameter Bộ chỉnh âm tham số - + Adjusts the gain of the EQ filter. Điều chỉnh độ lợi của các bộ lọc EQ. - + Hint: Change the default EQ mode in Preferences -> Equalizers. Gợi ý: Các thay đổi chế độ EQ mặc định trong tuỳ chọn-> Equalizers. - - + + Adjust Beatgrid Điều chỉnh Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. Điều chỉnh beatgrid để đánh bại gần nhất liên kết với vị trí chơi hiện tại. - - + + Adjust beatgrid to match another playing deck. Điều chỉnh beatgrid để phù hợp với một sân chơi. - + If quantize is enabled, snaps to the nearest beat. Nếu quantize được kích hoạt, snaps để đánh bại gần nhất. - + Quantize Quantize - + Toggles quantization. Bật tắt sự lượng tử hóa. - + Loops and cues snap to the nearest beat when quantization is enabled. Vòng và tín hiệu snap để đánh bại gần nhất khi sự lượng tử hóa được kích hoạt. - + Reverse Đảo ngược - + Reverses track playback during regular playback. Ảnh theo dõi phát lại trong khi phát lại thường xuyên. - + Puts a track into reverse while being held (Censor). Đặt một ca khúc vào đảo ngược trong khi được tổ chức (kiểm duyệt). - + Playback continues where the track would have been if it had not been temporarily reversed. Phát lại tiếp tục nơi đường sẽ có là nếu nó đã không được tạm thời đảo ngược. - - - + + + Play/Pause Phát/tạm dừng - + Jumps to the beginning of the track. Nhảy tới bắt đầu theo dõi. - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. Đồng bộ tiến độ (BPM) và các giai đoạn của đường khác, nếu BPM được phát hiện trên cả hai. - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. Đồng bộ tiến độ (BPM) của các ca khúc khác, nếu BPM được phát hiện trên cả hai. - + Sync and Reset Key Đồng bộ và thiết lập lại phím - + Increases the pitch by one semitone. Tăng sân một semitone. - + Decreases the pitch by one semitone. Giảm trong trận đấu bởi một semitone. - + Enable Vinyl Control Cho phép điều khiển Vinyl - + When disabled, the track is controlled by Mixxx playback controls. Khi tắt, theo dõi được điều khiển bởi Mixxx phát lại điều khiển. - + When enabled, the track responds to external vinyl control. Khi kích hoạt, theo dõi phản ứng để kiểm soát bên ngoài nhựa vinyl. - + Enable Passthrough Sử Passthrough - + Indicates that the audio buffer is too small to do all audio processing. Chỉ ra rằng các bộ đệm âm thanh quá nhỏ để làm tất cả âm thanh xử lý. - + Displays cover artwork of the loaded track. Hiển thị bao gồm các tác phẩm nghệ thuật của các ca khúc được nạp. - + Displays options for editing cover artwork. Hiển thị các tùy chọn để chỉnh sửa bìa. - + Star Rating Xếp hạng sao - + Assign ratings to individual tracks by clicking the stars. Gán xếp hạng cho bài hát riêng lẻ bằng cách nhấp vào các ngôi sao. @@ -14613,33 +15090,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + Prevents the pitch from changing when the rate changes. Ngăn chặn sân thay đổi khi tốc độ thay đổi. - + Changes the number of hotcue buttons displayed in the deck - + Starts playing from the beginning of the track. Bắt đầu phát từ sự khởi đầu của đường đua. - + Jumps to the beginning of the track and stops. Nhảy tới bắt đầu theo dõi và dừng lại. - - + + Plays or pauses the track. Phát hoặc tạm dừng theo dõi. - + (while playing) (trong khi chơi) @@ -14659,215 +15136,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects. - + (while stopped) (trong khi dừng lại) - + Cue Cue - + Headphone Tai nghe - + Mute Tắt tiếng - + Old Synchronize Old đồng bộ hóa - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. Đồng bộ đến tầng đầu tiên (theo thứ tự số) mà đang phát một ca khúc và có một BPM. - + If no deck is playing, syncs to the first deck that has a BPM. Nếu không có Sân chơi, đồng bộ đến tầng đầu tiên có một BPM. - + 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. - + Hold for at least a second to enable sync lock for this deck. Giữ cho một thứ hai để cho phép đồng bộ khóa cho boong này. - + 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. Sàn với đồng bộ khóa sẽ chơi tất cả ở cùng một tiến độ, và sàn tàu cũng có quantize kích hoạt sẽ luôn luôn có nhịp đập của họ xếp hàng. - + Resets the key to the original track key. Đặt lại chìa khóa đến chính ca khúc ban đầu. - + Speed Control Kiểm soát tốc độ - - - + + + Changes the track pitch independent of the tempo. Thay đổi sân theo dõi độc lập tiến độ. - + Increases the pitch by 10 cents. Tăng sân 10 cent. - + Decreases the pitch by 10 cents. Làm giảm độ cao thấp của 10 cent. - + Pitch Adjust Điều chỉnh pitch - + Adjust the pitch in addition to the speed slider pitch. Điều chỉnh sân ngoài sân trượt tốc độ. - + Opens a menu to clear hotcues or edit their labels and colors. - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix Ghi kết hợp - + Toggle mix recording. Chuyển đổi kết hợp ghi âm. - + Enable Live Broadcasting Kích hoạt tính năng sống phát sóng - + Stream your mix over the Internet. Dòng hỗn hợp của bạn qua Internet. - + Provides visual feedback for Live Broadcasting status: Cung cấp phản hồi thị giác cho Live phát thanh truyền tình trạng: - + disabled, connecting, connected, failure. vô hiệu hóa, kết nối, kết nối, thất bại. - + When enabled, the deck directly plays the audio arriving on the vinyl input. Khi kích hoạt, tầng trực tiếp phát âm thanh đến ngày vinyl đầu vào. - + Playback will resume where the track would have been if it had not entered the loop. Phát lại sẽ tiếp tục nơi đường sẽ có là nếu nó đã không nhập vào vòng lặp. - + Loop Exit Thoát khỏi vòng lặp - + Turns the current loop off. Tắt các vòng lặp hiện tại. - + Slip Mode Chế độ chống trượt - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. Khi hoạt động, phát lại tiếp tục tắt trong nền trong một đầu đảo ngược, vòng lặp, vv. - + Once disabled, the audible playback will resume where the track would have been. Sau khi vô hiệu hóa, phát lại âm thanh sẽ tiếp tục nơi đường sẽ có. - + Track Key The musical key of a track Theo dõi các phím - + Displays the musical key of the loaded track. Hiển thị phím âm nhạc của ca khúc được nạp. - + Clock Đồng hồ - + Displays the current time. Hiển thị thời gian hiện tại. - + Audio Latency Usage Meter Độ trễ âm thanh sử dụng đồng hồ - + Displays the fraction of latency used for audio processing. Hiển thị các phần của độ trễ được sử dụng để xử lý âm thanh. - + A high value indicates that audible glitches are likely. Một giá trị cao cho thấy rằng âm thanh ổn định có khả năng. - + Do not enable keylock, effects or additional decks in this situation. Không cho phép khóa bàn phím, hiệu ứng hoặc bổ sung sàn trong tình huống này. - + Audio Latency Overload Indicator Âm thanh độ trễ quá tải chỉ số @@ -14907,259 +15384,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.Kích hoạt Vinyl kiểm soát từ trình đơn-> tùy chọn. - + Displays the current musical key of the loaded track after pitch shifting. Hiển thị phím âm nhạc hiện tại theo dõi tải sau Sân chuyển. - + Fast Rewind Tua nhanh - + Fast rewind through the track. Tua lại nhanh thông qua đường. - + Fast Forward Tua đi - + Fast forward through the track. Nhanh chóng chuyển tiếp thông qua theo dõi. - + Jumps to the end of the track. Nhảy đến cuối đường. - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. Sets sân cho một phím cho phép sự chuyển tiếp điều hòa từ các ca khúc khác. Yêu cầu một khoá được phát hiện trên cả hai sàn tham gia. - - - + + + Pitch Control Kiểm soát Sân - + Pitch Rate Tỷ lệ pitch - + Displays the current playback rate of the track. Hiển thị mức độ phát hiện tại theo dõi. - + Repeat Lặp lại - + When active the track will repeat if you go past the end or reverse before the start. Khi hoạt động theo dõi sẽ lặp lại nếu bạn đi qua cuối cùng hoặc ngược lại trước khi bắt đầu. - + Eject Đẩy ra - + Ejects track from the player. Đẩy ra theo dõi từ người chơi. - + Hotcue Hotcue - + If hotcue is set, jumps to the hotcue. Nếu hotcue được thiết lập, nhảy vào hotcue. - + If hotcue is not set, sets the hotcue to the current play position. Nếu hotcue không được thiết lập, đặt hotcue vị trí chơi hiện tại. - + Vinyl Control Mode Vinyl kiểm soát chế độ - + Absolute mode - track position equals needle position and speed. Chế độ tuyệt đối - theo dõi vị trí bằng kim vị trí và tốc độ. - + Relative mode - track speed equals needle speed regardless of needle position. Chế độ tương đối - theo dõi tốc độ bằng kim tốc độ bất kể vị trí kim. - + Constant mode - track speed equals last known-steady speed regardless of needle input. Chế độ liên tục - theo dõi tốc độ bằng cuối cùng được biết đến-tăng tốc độ bất kể kim đầu vào. - + Vinyl Status Tình trạng vinyl - + Provides visual feedback for vinyl control status: Cung cấp phản hồi thị giác cho vinyl kiểm soát tình trạng: - + Green for control enabled. Màu xanh lá cây để kiểm soát được kích hoạt. - + Blinking yellow for when the needle reaches the end of the record. Nhấp nháy màu vàng cho khi kim đạt đến sự kết thúc của kỷ lục. - + Loop-In Marker Vòng lặp trong điểm đánh dấu - + Loop-Out Marker - + Loop Halve Loop giảm một nửa - + Halves the current loop's length by moving the end marker. Halves vòng lặp hiện tại chiều dài bằng cách di chuyển các điểm đánh dấu kết thúc. - + Deck immediately loops if past the new endpoint. Boong ngay lập tức vòng nếu qua điểm cuối mới. - + Loop Double Vòng lặp đôi - + Doubles the current loop's length by moving the end marker. Tăng gấp đôi chiều dài của vòng lặp hiện tại bằng cách di chuyển các điểm đánh dấu kết thúc. - + Beatloop - + Toggles the current loop on or off. Bật tắt vòng lặp hiện tại hoặc tắt. - + Works only if Loop-In and Loop-Out marker are set. Chỉ khi vòng lặp trong các công trình và điểm đánh dấu Loop-Out được thiết lập. - + Vinyl Cueing Mode Vinyl Cueing chế độ - + Determines how cue points are treated in vinyl control Relative mode: Xác định cách cue điểm được điều trị trong vinyl kiểm soát tương đối chế độ: - + Off - Cue points ignored. Off - Cue điểm bỏ qua. - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. Một Cue - nếu kim sẽ bị ngắt sau cue điểm, theo dõi sẽ tìm đến thời điểm cue. - + Track Time Theo dõi thời gian - + Track Duration Theo dõi thời gian - + Displays the duration of the loaded track. Hiển thị thời gian theo dõi được nạp. - + Information is loaded from the track's metadata tags. Thông tin được nạp từ thẻ siêu dữ liệu của con đường mòn. - + Track Artist Nghệ sĩ theo dõi - + Displays the artist of the loaded track. Hiển thị các nghệ sĩ theo dõi nạp. - + Track Title Theo dõi các tiêu đề - + Displays the title of the loaded track. Hiển thị tiêu đề của các ca khúc được nạp. - + Track Album Theo dõi Album - + Displays the album name of the loaded track. Hiển thị tên album theo dõi nạp. - + Track Artist/Title Theo dõi các nghệ sĩ/tiêu đề - + Displays the artist and title of the loaded track. Hiển thị các nghệ sĩ và tiêu đề của các ca khúc được nạp. @@ -15387,47 +15864,75 @@ This can not be undone! WCueMenuPopup - + Cue number - + Cue position - + Edit cue label - + Label... - + Delete this cue - - Toggle this cue type between normal cue and saved loop + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). - - Left-click: Use the old size or the current beatloop size as the loop size + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. - - Right-click: Use the current play position as loop end if it is after the cue + + Right-click: use current play position as new jump start position - + Hotcue #%1 @@ -15552,323 +16057,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist Tạo & danh sách chơi mới - + Create a new playlist Tạo một danh sách mới - + Ctrl+n Ctrl + n - + Create New &Crate Tạo mới & thùng - + Create a new crate Tạo một thùng mới - + Ctrl+Shift+N Ctrl + Shift + N - - + + &View & Xem - + Auto-hide menu bar - + Auto-hide the main menu bar when it's not used. - + May not be supported on all skins. Có thể không được hỗ trợ trên tất cả da. - + Show Skin Settings Menu - + Show the Skin Settings Menu of the currently selected Skin - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl + 1 - + Show Microphone Section Hiển thị Micro phần - + Show the microphone section of the Mixxx interface. Hiển thị phần micro của giao diện Mixxx. - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl + 2 - + Show Vinyl Control Section Hiển thị Vinyl kiểm soát phần - + Show the vinyl control section of the Mixxx interface. Hiển thị phần vinyl kiểm soát của giao diện Mixxx. - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl + 3 - + Show Preview Deck Hiển thị xem trước sàn - + Show the preview deck in the Mixxx interface. Hiển thị xem trước sàn trong giao diện Mixxx. - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl + 4 - + Show Cover Art Bìa đĩa Hiển thị - + Show cover art in the Mixxx interface. Hiển thị nghệ thuật bao gồm trong giao diện Mixxx. - + Ctrl+6 Menubar|View|Show Cover Art Ctrl + 6 - + Maximize Library Tối đa hóa thư viện - + 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. - + Space Menubar|View|Maximize Library - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen & Toàn màn hình - + Display Mixxx using the full screen Hiển thị Mixxx bằng cách sử dụng toàn màn hình - + &Options & Tùy chọn - + &Vinyl Control & Vinyl kiểm soát - + Use timecoded vinyls on external turntables to control Mixxx Sử dụng timecoded vinyls trên bên ngoài xoay để kiểm soát Mixxx - + Enable Vinyl Control &%1 Kích hoạt tính năng Vinyl kiểm soát & %1 - + &Record Mix & Ghi kết hợp - + Record your mix to a file Ghi lại hỗn hợp của bạn vào một tập tin - + Ctrl+R Ctrl + R - + Enable Live &Broadcasting Sử sống & phát thanh truyền - + Stream your mixes to a shoutcast or icecast server Dòng hỗn hợp của bạn đến một máy chủ shoutcast hoặc icecast - + Ctrl+L Ctrl + L - + Enable &Keyboard Shortcuts Kích hoạt tính năng & phím tắt - + Toggles keyboard shortcuts on or off Chuyển phím tắt Baät hoaëc taét - + Ctrl+` Ctrl +' - + &Preferences & Sở thích - + Change Mixxx settings (e.g. playback, MIDI, controls) Thay đổi cài đặt Mixxx (ví dụ như các điều khiển phát lại, MIDI) - + &Developer & Phát triển - + &Reload Skin & Tải lại da - + Reload the skin Tải lại da - + Ctrl+Shift+R Ctrl + Shift + R - + Developer &Tools Công cụ phát triển & - + Opens the developer tools dialog Mở hộp thoại công cụ phát triển - + Ctrl+Shift+T Ctrl + Shift + T - + Stats: &Experiment Bucket Thống kê: & thử nghiệm Xô - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. Cho phép thử nghiệm chế độ. Thu thập số liệu thống kê trong thử nghiệm theo dõi thùng. - + Ctrl+Shift+E Ctrl + Shift + E - + Stats: &Base Bucket Thống kê: & căn cứ Xô - + Enables base mode. Collects stats in the BASE tracking bucket. Cho phép cơ sở chế độ. Thu thập số liệu thống kê căn cứ theo dõi Xô. - + Ctrl+Shift+B Ctrl + Shift + B - + Deb&ugger Enabled Deb & ugger đã bật - + Enables the debugger during skin parsing Cho phép trình gỡ lỗi trong da phân tích - + Ctrl+Shift+D Ctrl + Shift + D - + &Help & Trợ giúp - + Show Keywheel menu title @@ -15885,74 +16430,74 @@ This can not be undone! - + Show keywheel tooltip text - + F12 Menubar|View|Show Keywheel - + &Community Support & Hỗ trợ cộng đồng - + Get help with Mixxx Nhận trợ giúp với Mixxx - + &User Manual & Hướng dẫn sử dụng - + Read the Mixxx user manual. Đọc hướng dẫn sử dụng Mixxx. - + &Keyboard Shortcuts & Phím tắt - + Speed up your workflow with keyboard shortcuts. Tăng tốc độ công việc của bạn với phím tắt. - + &Settings directory - + Open the Mixxx user settings directory. - + &Translate This Application & Dịch ứng dụng này - + Help translate this application into your language. Giúp chúng tôi dịch ứng dụng này sang ngôn ngữ của bạn. - + &About & Giới thiệu - + About the application Về ứng dụng @@ -15960,25 +16505,25 @@ This can not be undone! WOverview - + 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 @@ -15987,25 +16532,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - Rõ ràng đầu vào - - - - Ctrl+F - Search|Focus - Ctrl + F - - - + Search noun Tìm - + Clear input Rõ ràng đầu vào @@ -16016,93 +16549,87 @@ This can not be undone! Tìm... - + Clear the search bar input field - - Enter a string to search for - Nhập một chuỗi tìm kiếm + + Return + - - Use operators like bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. - - For more information see User Manual > Mixxx Library + + Use operators like bpm:115-128, artist:BooFar, -year:1990. - Shortcut - Lối tắt + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl + F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - Tập trung + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace + + Additional Shortcuts When Focused: - Shortcuts + Trigger search before search-as-you-type timeout or focus tracks view afterwards - Return + Esc or Ctrl+Return - Trigger search before search-as-you-type timeout orjump to tracks view afterwards + Immediately trigger search and focus tracks view + Exit search bar and leave focus - + Ctrl+Space - + Toggle search history Shows/hides the search history entries - + Delete or Backspace - - Delete query from history + + in search history - - Esc - Esc - - - - Exit search - Exit search bar and leave focus - Tìm lối ra + + Delete query from history + @@ -16186,625 +16713,640 @@ This can not be undone! WTrackMenu - + Load to - + Deck Sàn - + Sampler Sampler - + Add to Playlist Thêm vào danh sách chơi - + Crates Thùng - + Metadata - + Update external collections - + Cover Art Bìa - + Adjust BPM - + Select Color - - + + Analyze Phân tích - - + + Delete Track Files - + 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) - + Preview Deck Xem trước sàn - + Remove Loại bỏ - + Remove from Playlist - + Remove from Crate - + Hide from Library Ẩn từ thư viện - + Unhide from Library Bỏ ẩn từ thư viện - + Purge from Library Xoá khỏi thư viện - + Move Track File(s) to Trash - + Delete Files from Disk - + Properties Thuộc tính - + Open in File Browser Mở trong trình duyệt tập tin - + Select in Library - + Import From File Tags - + Import From MusicBrainz - + Export To File Tags - + BPM and Beatgrid - + Play Count - + Rating Đánh giá - + Cue Point - - + + Hotcues Hotcues - + Intro - + Outro - + Key Chìa khóa - + ReplayGain - + Waveform - + Comment Bình luận - + All Tất cả - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM Khóa BPM - + Unlock BPM Mở khóa BPM - + Double BPM Đôi BPM - + Halve BPM Giảm một nửa BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM - + 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze - + Reanalyze (constant BPM) - + Reanalyze (variable BPM) - + Update ReplayGain from Deck Gain - + Deck %1 Sàn %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) - + Undo BPM/beats change of %n track(s) - + Locking BPM of %n track(s) - + Unlocking BPM of %n track(s) - + Setting rating 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) - + Clearing comment 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) - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + 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) - + Move these files to the trash bin? - + Permanently delete these files from disk? - - + + This can not be undone! - + Cancel Hủy bỏ - + Delete Files - + Okay - + Move Track File(s) to Trash? - + Track Files Deleted - + Track Files Moved To Trash - + %1 track files were moved to trash and purged from the Mixxx database. - + %1 track files were deleted from disk and purged from the Mixxx database. - + Track File Deleted - + Track file was deleted from disk and purged from the Mixxx database. - + The following %1 file(s) could not be deleted from disk - + This track file could not be deleted from disk - + Remaining Track File(s) - + Close Đóng - + Clear Reset metadata in right click track context menu in library - + Loops - + Clear BPM and Beatgrid - + Undo last BPM/beats change - + Move this track file to the trash bin? - + Permanently delete this track file from disk? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. - + All decks where this track is loaded will be stopped and the track will be ejected. - + Removing %n track file(s) from disk... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. - + Track File Moved To Trash - + Track file was moved to trash and purged from the Mixxx database. - + Don't show again during this session - + The following %1 file(s) could not be moved to trash - + This track file could not be moved to trash + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) - + Reloading cover art of %n track(s) @@ -16858,37 +17400,37 @@ This can not be undone! WTrackTableView - + Confirm track hide - + Are you sure you want to hide the selected tracks? - + Are you sure you want to remove the selected tracks from AutoDJ queue? - + Are you sure you want to remove the selected tracks from this crate? - + Are you sure you want to remove the selected tracks from this playlist? - + Don't ask again during this session - + Confirm track removal @@ -16896,12 +17438,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. Hiện hoặc ẩn cột. - + Shuffle Tracks @@ -16939,22 +17481,22 @@ This can not be undone! - + 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. @@ -17111,6 +17653,24 @@ Nhấp vào OK để thoát. + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17119,4 +17679,27 @@ Nhấp vào OK để thoát. Không có hiệu lực được nạp. + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_zh.qm b/res/translations/mixxx_zh.qm index c8154f146399..f8486316d86e 100644 Binary files a/res/translations/mixxx_zh.qm and b/res/translations/mixxx_zh.qm differ diff --git a/res/translations/mixxx_zh.ts b/res/translations/mixxx_zh.ts index 09a656b13952..7f85739c44f8 100644 --- a/res/translations/mixxx_zh.ts +++ b/res/translations/mixxx_zh.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates 分类列表 - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue 清除自动 DJ 队列 - + Remove Crate as Track Source 從音軌清單删除唱片箱 - + Auto DJ 自动混音 - + Confirmation Clear 确认清除 - + Do you really want to remove all tracks from the Auto DJ queue? 您真的要从 Auto DJ 队列中删除所有曲目吗? - + This can not be undone. 此操作无法撤消。 - + Add Crate as Track Source 加入唱片箱至音軌清單 @@ -103,8 +111,7 @@ Add to Auto DJ Queue (bottom) - 將添加到自動 DJ 佇列 (底部) - + 添加到自自动 DJ 队列 (底部) @@ -227,7 +234,7 @@ - + Export Playlist 匯出播放清單 @@ -281,13 +288,13 @@ - + Playlist Creation Failed 播放清單創建失敗 - + An unknown error occurred while creating playlist: 建立播放清單時發生未知的錯誤︰ @@ -303,12 +310,12 @@ 您真的要删除播放列表%1? - + 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) @@ -316,12 +323,12 @@ BaseSqlTableModel - + # # - + Timestamp 时间标记 @@ -329,7 +336,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入音軌 @@ -367,7 +374,7 @@ 電視頻道 - + Color 颜色 @@ -382,7 +389,7 @@ 作曲家 - + Cover Art 封面 @@ -392,7 +399,7 @@ 加入日期 - + Last Played 最后播放 @@ -422,7 +429,7 @@ 關鍵 - + Location 地點 @@ -432,7 +439,7 @@ - + Preview 預覽 @@ -472,7 +479,7 @@ 年份 - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk 獲取圖片中... @@ -494,22 +501,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. 无法使用安全密码存储: 密钥链访问失败。 - + Secure password retrieval unsuccessful: keychain access failed. 安全密码存储提取不成功: 密钥链访问失败。 - + Settings error 設定失敗 - + <b>Error with settings for '%1':</b><br> <b>設定 '%1' 失敗:</b><br> @@ -597,7 +604,7 @@ - + Computer 我的电脑 @@ -617,19 +624,19 @@ 扫描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. “我的电脑”可以让您从您的硬盘及外置设备中浏览、查看、载入音轨 - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + 它显示的是文件标签中的数据,而不是像其他曲目视图那样来自你的 Mixxx 库的曲目数据。 - + If you load a track file from here, it will be added to your library. - + 如果你从这里加载曲目文件,它将被添加到你的库中。 @@ -740,12 +747,12 @@ 創建檔 - + Mixxx Library mixxx的音樂庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入以下檔案,因為正在被Mixxx或其他程式使用中 @@ -776,88 +783,93 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx是一款开源DJ软件。有关详细信息,请参阅: - + Starts Mixxx in full-screen mode 打开全屏模式 - + Use a custom locale for loading translations. (e.g 'fr') 使用自定义区域设置加载语言。(例如"法语") - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. 在MIXXX中查找相关资源文件如MIDI映射目录,存放在默认文件位置 - + 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 使 Mixxx 显示/记录它接收的所有控制器数据,并为它加载的脚本函数 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! 控制器映射在检测到滥用控制器 API 时会发出更严厉的警告和错误。开发新的控制器映射时应启用该选项! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. 启用开发者模式。包括更多的日志信息、性能统计信息和开发人员工具菜单 - + Top-level directory where Mixxx should look for settings. Default is: Mixxx 应在其中查找设置的顶级目录。默认值为: - + Starts Auto DJ when Mixxx is launched. 启动Mixxx时自动开始DJ。 - + Rescans the library when Mixxx is launched. - + 在启动 Mixxx 时重新扫描库。 - + Use legacy vu meter 使用老版本的 VU 表 - + Use legacy spinny 使用舊版的旋轉界面 - - Loads experimental QML GUI instead of legacy QWidget skin - 加载实验性的 QML GUI,而不是传统的 QWidget 皮肤 + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. 启用安全模式。禁用 OpenGL 波形和旋转的唱片小部件。如果 Mixxx 在启动时崩溃,请尝试此选项 - + [auto|always|never] Use colors on the console output. [自动||无]在控制台输出上使用颜色 - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -872,32 +884,32 @@ 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. 设置将日志缓冲区刷新为mixxx.log的日志级别。是上面在——log级别定义的值之一。 - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. 设置 mixxx.log 文件的最大文件大小(以字节为单位)。使用 -1 表示无限制。默认值为 100 MB,为 1e5 或 100000000。 - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. 如果DEBUG_ASSERT的计算结果为false,则中断(SIGINT) Mixxx。在调试器下,您可以随后继续。 - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. 在启动时加载指定的音乐文件。您指定的每个文件将被加载到下一个碟盘中。 - + Preview rendered controller screens in the Setting windows. 在设置窗口中预览渲染好的控制器屏幕。 @@ -990,2557 +1002,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output 耳机输出 - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 碟盘 %1 - + Sampler %1 采样器 %1 - + Preview Deck %1 预览用碟机 %1 - + Microphone %1 麥克風 %1 - + Auxiliary %1 輔助 %1 - + Reset to default 重设为默认值 - + Effect Rack %1 影響機架 %1 - + Parameter %1 参数 %1 - + Mixer 混音器 - - + + Crossfader 推杆 - + Headphone mix (pre/main) 耳機組合 (pre/主) - + Toggle headphone split cueing 启用耳机声道分离切入(cueing) - + Headphone delay 耳机延迟 - + Transport 運輸 - + Strip-search through track 通過跟蹤全身 - + Play button 播放按鈕 - - + + Set to full volume 設為全音量 - - + + Set to zero volume 设为音量 0 - + Stop button 停止按钮 - + Jump to start of track and play 跳至音軌前端並播放 - + Jump to end of track 跳轉到音軌末端 - + Reverse roll (Censor) button 倒带(轨)键 - + Headphone listen button 耳機監聽按鈕 - - + + Mute button 静音按钮 - + Toggle repeat mode 切换循环模式 - - + + Mix orientation (e.g. left, right, center) 混合方向 (例如左、 右側、 中心) - - + + Set mix orientation to left 设置输出声道为左声道 - - + + Set mix orientation to center 设置输出声道为立体声 - - + + Set mix orientation to right 將混音方向設為右 - + Toggle slip mode 切换剪辑模式 - - + + BPM BPM - + Increase BPM by 1 BPM 增加 1 - + Decrease BPM by 1 BPM 減少 1 - + Increase BPM by 0.1 BPM 增加 0.1 - + Decrease BPM by 0.1 减少 0.1 BPM - + BPM tap button BPM 敲打按钮 - + Toggle quantize mode 切換量化模式 - + One-time beat sync (tempo only) 一次性節拍同步 (只有節奏) - + One-time beat sync (phase only) 一次性节拍同步(仅相位) - + Toggle keylock mode 切换音调锁模式 - + Equalizers 等化器 - + 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 切入点 - + 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 Stutter切入 - + Hotcues 即时切点 - + Set, preview from or jump to hotcue %1 設置、 從預覽或跳轉到 hotcue %1 - + Clear hotcue %1 刪除 hotcue %1 - + Set hotcue %1 设置热切点 %1 - + Jump to hotcue %1 跳转到热切点 %1 - + Jump to hotcue %1 and stop 跳轉到 hotcue %1 並停止 - + Jump to hotcue %1 and play 跳轉到 hotcue %1 並播放 - + Preview from hotcue %1 从热切点 %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 音樂庫 - + Slot %1 插槽 %1 - + Headphone Mix 耳機混音器 - + Headphone Split Cue 耳机分离选听 - + Headphone Delay 耳机延迟 - + Play 播放 - + Fast Rewind 快退 - + Fast Rewind button 快退按鈕 - + Fast Forward 快进 - + Fast Forward button 快進按鈕 - + Strip Search 完整搜索 - + Play Reverse 倒退播放 - + Play Reverse button 反向播放按鈕 - + Reverse Roll (Censor) 倒带(轨) - + Jump To Start 跳至音轨起始点 - + Jumps to start of track 跳至音轨起始点 - + Play From Start 从音轨起始点播放 - + Stop 停止 - + Stop And Jump To Start 停止后跳至音轨起始点 - + Stop playback and jump to start of track 停止播放並跳至音軌前端 - + Jump To End 跳至尾端 - + Volume 音量 - - - + + + Volume Fader 音量调节 - - + + Full Volume 全音量 - - + + Zero Volume 零音量 - + Track Gain 音軌增益 - + Track Gain knob 音轨增益旋钮 - - + + Mute 静音 - + Eject 彈出 - - + + Headphone Listen 耳機監聽 - + Headphone listen (pfl) button 耳機監聽(pfi)按鈕 - + Repeat Mode 重复模式 - + Slip Mode 滑动模式 - - + + Orientation 方向 - - + + Orient Left 左方向 - - + + Orient Center 中心 - - + + Orient Right 向右 - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM 偵測 - + Adjust Beatgrid Faster +.01 調整 Beatgrid 快 +.01 - + Increase track's average BPM by 0.01 增加軌道的平均 BPM 0.01 - + Adjust Beatgrid Slower -.01 减慢节拍(-.01) - + Decrease track's average BPM by 0.01 減少軌道的平均 BPM 0.01 - + Move Beatgrid Earlier 提早 Beatgrid - + Adjust the beatgrid to the left 向左移动节拍 - + Move Beatgrid Later 推迟节拍 - + Adjust the beatgrid to the right 向右移动节拍 - + Adjust Beatgrid 调整节拍 - + Align beatgrid to current position 将节拍对齐至当前位置 - + Adjust Beatgrid - Match Alignment 調整 Beatgrid-匹配對齊方式 - + Adjust beatgrid to match another playing deck. 调整节拍样式以匹配另一个正在播放的碟机。 - + Quantize Mode 量化模式 - + Sync 同步 - + Beat Sync One-Shot 单次节拍同步 - + Sync Tempo One-Shot 单次速度同步 - + Sync Phase One-Shot 同步階段一次性 - + 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 重置至原始音調 - + High EQ 高頻等化器 - + Mid EQ 中頻等化器 - - + + Main Output 主输出 - + Main Output Balance 主输出均衡 - + Main Output Delay 主输出延迟 - + Main Output Gain 主输出增益 - + Low 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 設置切入點 - + Go-To Cue 前往切入點 - + Go-To Cue And Play 前往切入點並播放 - + Go-To Cue And Stop 前往切入點並停止 - + Preview Cue 预览Cue - + Cue (CDJ Mode) 提示 (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 跳轉到 Hotcue %1 並停止 - + Jump To Hotcue %1 And Play 跳轉到 Hotcue %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 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開/關 - + Show/hide the microphone & auxiliary section 显示/隐藏麦克风和辅助部分 - + 4 Effect Units Show/Hide 显示/隐藏效果器 - + Switches between showing 2 and 4 effect units 在显示2和4个效果单位之间切换 - + 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 波形縮小 - + Headphone Gain 耳機增益 - + Headphone gain 耳機增益 - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync 点击同步速度(和相位与量化启用),保持启用永久同步 - + One-time beat sync tempo (and phase with quantize enabled) 同步节奏 - + 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) 暫時降低速度 (精細) - - + + Adjust %1 调 %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 效果单元 %1 - + Button Parameter %1 旋钮参数% 1 - + Skin 皮肤 - + Controller 控制器 - + Crossfader / Orientation 唱片平滑转换器/方向 - + Main Output gain 主输出增益 - + Main Output balance 主输出均衡 - + Main Output delay 主输出延迟 - + Headphone 耳机 - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" 阻断 %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. 彈出或取消彈出曲目,即重新載入最後彈出的曲目(任何檯面)<br>雙按以重新載入最後替換的曲目。在空檯面上,它將重新載入倒數第二個彈出的曲目。 - + BPM / Beatgrid BPM / 网格 - + Halve BPM BPM 减半 - + Multiply current BPM by 0.5 将当前BPM乘0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 将当前BPM乘0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 将当前BPM乘0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 将当前BPM乘0.666 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 将当前BPM乘1.5 - + Double BPM BPM 加倍 - + Multiply current BPM by 2 1.5倍BPM - + Tempo Tap 节奏敲击 - + Tempo tap button 节奏敲击按钮 - + Move Beatgrid 調整節拍網格 - + Adjust the beatgrid to the left or right 將節拍網格向左或向右調整 - + Move Beatgrid Half a Beat - + 将节拍网格移动半个节拍 - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - + 将节拍网格精确调整半拍。仅适用于节奏恒定的曲目。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/beatgrid 锁 - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - + Sync / Sync Lock 同步/同步锁定 - + Internal Sync Leader 内部同步高音 - + Toggle Internal Sync Leader 切换内部同步高音 - - + + Internal Leader BPM 內部主 BPM - + Internal Leader BPM +1 內部主 BPM +1 - + Increase internal Leader BPM by 1 增加 1 级内置BPM - + Internal Leader BPM -1 內部主 BPM -1 - + Decrease internal Leader BPM by 1 减少 1 级内置BPM - + Internal Leader BPM +0.1 內部主 BPM +0.1 - + Increase internal Leader BPM by 0.1 增加 1 级内置BPM - + Internal Leader BPM -0.1 內部主 BPM +0.1 - + Decrease internal Leader BPM by 0.1 將內部主導節拍每分鐘減少 0.1 BPM - + Sync Leader 同步高音 - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) 同步模式切换/指示灯(关,低音,高音) - + Speed 速度 - + Decrease Speed (Fine) 減慢速度(微調) - + Pitch (Musical Key) 音高 - + Increase Pitch 升高音调 - + Increases the pitch by one semitone 将音高增加一个半音 - + Increase Pitch (Fine) 增加间距(细) - + Increases the pitch by 10 cents 增加10间距 - + Decrease Pitch 降低音调 - + Decreases the pitch by one semitone 将音高降低一个半音 - + Decrease Pitch (Fine) 减少间距(细) - + Decreases the pitch by 10 cents 将音高降低10间距 - + Keylock 鑰匙鎖 - + CUP (Cue + Play) CUP (提示 + 播放) - + Shift cue points earlier 移动提示点 - + Shift cue points 10 milliseconds earlier 将提示点移动10毫秒 - + Shift cue points earlier (fine) 移动提示点(可选) - + Shift cue points 1 millisecond earlier 将提示点移动1毫秒 - + Shift cue points later 稍后移动提示点 - + Shift cue points 10 milliseconds later 10毫秒后移动提示点 - + Shift cue points later (fine) 稍后移动(好) - + Shift cue points 1 millisecond later 1毫秒后移动提示点 - - + + Sort hotcues by position - + 按位置排序热键点 - - + + Sort hotcues by position (remove offsets) - + 按位置排序热键(移除偏移) - + Hotcues %1-%2 - 热切点 %1 + 热切点 %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 激活Cue - + Jump to or set the %1 [intro/outro marker 跳转到热切点 %1 - + Set %1 [intro/outro marker 設定 %1 - + Set or jump to the %1 [intro/outro marker 設定或跳至 %1 - + Clear %1 [intro/outro marker 清除 %1 - + Clear the %1 [intro/outro marker 清除 %1 - + if the track has no beats the unit is seconds 如果轨道没有节拍,则单位为秒 - + 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 %1 Beats set from its end point Loop %1 从结束点开始设置的节拍 - + Loop Roll %1 Beats set from its end point Loop Roll %1 从结束点开始设置的节拍 - + Create %1-beat loop with the current play position as loop end 创建 %1 拍 Loop,并将当前播放位置作为 Loop 结束 - + Create temporary %1-beat loop roll with the current play position as loop end 创建临时的 %1 拍 Loop 滚动,并将当前播放位置作为 Loop 结束 - + Loop Beats 循环节拍 - + Loop Roll Beats 循环滚动节拍 - + Go To Loop In 跳转到循环 - + Go to Loop In button 跳转到循环按钮 - + Go To Loop Out 前往循環終點 - + Go to Loop Out button 前往循環終點按鈕 - + 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 个节拍,或者如果启用了 Loop,则将 Loop 向后移动 %1 个节拍 - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop 向前移动选定的节拍 - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats 向前跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向前移动选定的节拍数 - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop 向后移动选定的节拍 - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats 向后跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向后移动选定的节拍数 - + Beat Jump 跳拍 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position 指示在调整大小时哪个 Loop 标记保持静止或从当前位置继承 - + Beat Jump / Loop Move Forward 节拍跳跃/循环移动 - + Beat Jump / Loop Move Backward 节拍跳跃/循环移动 - + Loop Move Forward 向前移動循環 - + Loop Move Backward 向後移動循環 - + Remove Temporary Loop 移除臨時循環 - + Remove the temporary loop 移除臨時循環 - + 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 键效果一致 - + Sort focused column 將焦點列進行排序 - + Sort the column of the cell that is currently focused, equivalent to clicking on its header 對當前專注的儲存格所在的列進行排序,相當於點擊其標題欄。 - + 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 將所選的搜索歷史項目移動到指定的方向和步驟 - + Clear search 清除搜索 - + Clears the search query 清除搜索查詢 - - + + Select Next Color Available 选择下一个可用颜色 - + Select the next color in the color palette for the first selected track 在调色板中选择第一个选定轨道的下一种颜色 - - + + Select Previous Color Available 选择以前的可用颜色 - + Select the previous color in the color palette for the first selected track 在调色板中选择第一个选定轨道的上一种颜色 - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button 檯面 %1 快速效果啟用按鈕 - + + Quick Effect Enable Button 快速效果啟用按鈕 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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) 切换麦克风闪避模式(关闭/自动/手动) - + 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 顯示/隱藏取樣器節 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator 麦克风和辅助显示/隐藏 - + Waveform Zoom Reset To Default 將波形縮放重置為預設值 - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms 將波形縮放級別重置為首選項 -> 波形 中選擇的預設值 - + Select the next color in the color palette for the loaded track. 在调色板中选择加载轨道的下一种颜色。 - + Select previous color in the color palette for the loaded track. 在加载的轨道的调色板中选择上一种颜色。 - + Navigate Through Track Colors 浏览轨道颜色 - + Select either next or previous color in the palette for the loaded track. 选择调色板中加载轨道的下一个或上一个颜色 - + Start/Stop Live Broadcasting 開始/停止直播 - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Start/stop recording your mix. 開始/停止錄製您的混音。 - - + + + Deck %1 Stems + + + + + 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 將曲目評分減少一顆星 @@ -3553,6 +3593,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3655,32 +3848,32 @@ trace - Above + Profiling messages 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. 控制器“%1”的映射工作不正常。 - + The script code needs to be fixed. 脚本代码需要被修复。 @@ -3688,27 +3881,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem 控制器映射文件问题 - + The mapping for controller "%1" cannot be opened. 无法打开控制器“%1”的映射。 - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. 在问题得到解决之前,此控制器映射提供的功能将被禁用。 - + File: 文件: - + Error: 错误: @@ -3741,7 +3934,7 @@ trace - Above + Profiling messages - + Lock 锁定 @@ -3771,7 +3964,7 @@ trace - Above + Profiling messages 自動 DJ 音軌來源 - + Enter new name for crate: 输入分类列表的新名称: @@ -3788,22 +3981,22 @@ trace - Above + Profiling messages 匯入箱 - + Export Crate 导出分类列表 - + Unlock 解鎖 - + An unknown error occurred while creating crate: 創建音樂箱時發生未知的錯誤︰ - + Rename Crate 重新命名音樂箱 @@ -3813,28 +4006,28 @@ trace - Above + Profiling messages 为你的下场表演、最喜爱的音轨和最常用的歌曲新建分类列表 - + Confirm Deletion 确认删除 - - + + 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) - + M3U Playlist (*.m3u) M3U 播放清單 (*.m3u) @@ -3855,17 +4048,17 @@ trace - Above + Profiling messages 音樂箱讓你組織你的音樂,你會喜歡 ! - + Do you really want to delete crate <b>%1</b>? 确定删除播放列表<b>%1</b>吗? - + A crate cannot have a blank name. 分类列表名不能命名为空。 - + A crate by that name already exists. 已經有相同名稱的音樂箱。 @@ -3960,12 +4153,12 @@ trace - Above + Profiling messages 過去的貢獻者 - + Official Website 官方网站 - + Donate 捐献 @@ -4769,122 +4962,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg 格式 - + Opus Opus - + AAC AAC - + HE-AAC HE-AAC - + HE-AACv2 HE-AACv2 - + Automatic 自动 - + Mono 單聲道 - + Stereo 立体声 - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed 操作失败 - + You can't create more than %1 source connections. 你不能创建超过 %1 个源连接。 - + Source connection %1 源连接 %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. 至少需要一个源连接。 - + Are you sure you want to disconnect every active source connection? 是否确实要断开每个活动的源连接? - - + + Confirmation required 需要确认 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' 和 '%2' 有相同的 Icecast 挂载点。两个连接到同一服务器的源,挂载点相同的情况下不能同时启用。 - + Are you sure you want to delete '%1'? 是否确实要删除“%1”? - + Renaming '%1' 重命名 '%1' - + New name for '%1': '%1' 的新名称: - + Can't rename '%1' to '%2': name already in use 无法将 '%1' 重命名为 '%2':名称已被使用 @@ -4897,27 +5107,27 @@ Two source connections to the same server that have the same mountpoint can not 直播首選項 - + Mixxx Icecast Testing Mixxx Icecast 測試 - + Public stream 公共流 - + http://www.mixxx.org http://www.mixxx.org - + Stream name 流名称 - + 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. 由於在一些流的用戶端中的缺陷,動態更新 Ogg 格式的中繼資料可以導致攔截器故障和斷開。選中此框,反正更新中繼資料。 @@ -4957,67 +5167,72 @@ Two source connections to the same server that have the same mountpoint can not %1 的设置 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. 動態更新 Ogg 格式的中繼資料。 - + ICQ ICQ - + AIM AIM - + Website 主页 - + Live mix 現場攪拌 - + IRC IRC - + Select a source connection above to edit its settings here 在上面选择一个源连接以在此处编辑其设置 - + Password storage 密码存储方式 - + Plain text 明文 - + Secure storage (OS keychain) 安全存储区(系统钥匙链) - + Genre 體裁 - + Use UTF-8 encoding for metadata. 使用 utf-8 編碼的中繼資料。 - + Description 描述 @@ -5043,42 +5258,42 @@ Two source connections to the same server that have the same mountpoint can not 電視頻道 - + Server connection 服务器链接 - + Type 类型 - + Host 主机 - + Login 用户名 - + Mount 挂载 - + Port - + Password 密碼 - + Stream info 流信息 @@ -5088,17 +5303,17 @@ Two source connections to the same server that have the same mountpoint can not 元数据 - + Use static artist and title. 使用静态的艺术家名称和标题 - + Static title 静态标题 - + Static artist 静态艺术家名称 @@ -5157,13 +5372,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number 按 hotcue 编号 - + Color 颜色 @@ -5208,132 +5424,137 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + 启用关键颜色 - + Key palette - + 快捷调色板 DlgPrefController - + Apply device settings? 應用設備設置嗎? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? 開始學習嚮導前,必須應用您的設置。 應用設置並繼續? - + None - + %1 by %2 %2 %1 - + Mapping has been edited 映射已编辑 - + Always overwrite during this session 在此会话期间始终覆盖 - + Save As 另存为 - + Overwrite 覆盖 - + Save user mapping 保存用户映射 - + Enter the name for saving the mapping to the user folder. 输入用于将映射保存到用户文件夹的名称。 - + Saving mapping failed 保存映射失败 - + A mapping cannot have a blank name and may not contain special characters. 映射不能具有空白名称,并且不能包含特殊字符。 - + A mapping file with that name already exists. 具有该名称的映射文件已存在。 - + Do you want to save the changes? 是否要保存更改? - + Troubleshooting 疑難排解 - + <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>. 如果使用此映射,则控制器可能无法正常工作。请选择其他映射或禁用控制器。此映射专为较新的 Mixxx 控制器引擎而设计,不能用于您当前的 Mixxx 安装。您的 Mixxx 安装的 Controller Engine 版本为 %1。此映射需要 Controller Engine 版本 >= %2。有关更多信息,请访问有关 Controller Engine 版本的 wiki 页面。 - + Mapping already exists. 映射已存在。 - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b>已存在于用户映射文件夹中.<br>覆盖还是用新名称保存? - + Clear Input Mappings 清除输入映射 - + Are you sure you want to clear all input mappings? 你確定你想要清除所有輸入的映射? - + Clear Output Mappings 清除輸出映射 - + Are you sure you want to clear all output mappings? 你確定你想要清除所有輸出映射? @@ -5351,100 +5572,105 @@ Apply settings and continue? 啟用 - - Device Info + + Refresh mapping list - + + Device Info + 设备信息 + + + Physical Interface: - + 物理接口: - + Vendor name: - + 供应商名称: - + Product name: - + 产品名称: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: 描述: - + Support: 支援︰ - + Screens preview - + Input Mappings 輸入的映射 - - + + Search 搜索 - - + + Add 新增 - - + + Remove 刪除 @@ -5464,17 +5690,17 @@ Apply settings and continue? 加载映射: - + Mapping Info 映射信息 - + Author: 作者︰ - + Name: 名稱︰ @@ -5484,28 +5710,28 @@ Apply settings and continue? 学习向导(仅用于 MIDI) - + Data protocol: - + Mapping Files: 映射文件: - + Mapping Settings - - + + Clear All 全部清除 - + Output Mappings 輸出映射 @@ -5520,21 +5746,21 @@ 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 使用“映射”将来自控制器的消息连接到 Mixxx 中的控件。如果您在单击左侧边栏上的控制器时在“加载映射”菜单中没有看到控制器的映射,您可以从 %1 在线下载一个。将 XML (.xml) 和 Javascript (.js) 文件放在“用户映射文件夹”中,然后重新启动 Mixxx。如果您下载 ZIP 文件中的映射,请将 XML 和 Javascript 文件从 ZIP 文件解压到您的“用户映射文件夹”,然后重新启动 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + MIDI Mapping File Format MIDI 映射文件格式 - + MIDI Scripting with Javascript 使用 Javascript 编写 MIDI 脚本 @@ -5664,6 +5890,16 @@ Apply settings and continue? Multi-Sampling 多重采样 + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5693,137 +5929,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx 模式 - + Mixxx mode (no blinking) Mixxx 模式 (無閃爍) - + Pioneer mode 先驅模式 - + Denon mode Denon 模式 - + Numark mode 發展模式 - + CUP mode 切播模式 - + mm:ss%1zz - Traditional mm:ss%1zz - 繁体 - + mm:ss - Traditional (Coarse) mm:ss - 传统 (粗) - + s%1zz - Seconds s%1zz - 秒 - + sss%1zz - Seconds (Long) sss%1zz - 秒(长) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - 千秒 - + Intro start 入门 - + Main cue 主要提示 - + First hotcue 第一个 hotcue - + First sound (skip silence) 第一个声音 (跳过静音) - + Beginning of track 轨道起点 - + Reject 拒绝 - + Allow, but stop deck 允许,但停止甲板 - + Allow, play from load point 允许,从加载点播放 - + 4% 4% - + 6% (semitone) 6%(半音) - + 8% (Technics SL-1210) 8%(Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6272,62 +6508,62 @@ 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 播放时防止屏幕保护程序运行 - + Disabled 禁用 - + 2x MSAA 2倍采样抗锯齿 - + 4x MSAA 4倍采样抗锯齿 - + 8x MSAA 8倍采样抗锯齿 - + 16x MSAA 16倍采样抗锯齿 - + This skin does not support color schemes 這種皮膚不支援色彩配置 - + Information 資訊 - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. 在新的区域设置、缩放或多重采样设置生效之前,必须重新启动Mixxx。 @@ -6554,37 +6790,37 @@ and allows you to pitch adjust them for harmonic mixing. 有关详细信息,请参阅手册 - + 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 扫描 - + Item is not a directory or directory is missing 项目不是目录或目录缺失 - + 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> @@ -6595,32 +6831,62 @@ 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 将音乐目录链接至新位置 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font 选择音乐库字体 @@ -6670,262 +6936,267 @@ and allows you to pitch adjust them for harmonic mixing. 启动时重新扫描目录 - + Audio File Formats 音频文件格式 - + Track Table View 轨道视图 - + Track Double-Click Action: 轨道双击操作: - + BPM display precision: BPM 显示精度: - + Session History 工作階段紀錄 - + Track duplicate distance 跟踪重复距离 - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime 再次播放轨道时,仅当同时播放了 N 个以上的其他轨道时,才会将其记录到会话历史记录中 - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. 少于 N 首曲目的历史播放列表将被删除注意:清理将在 Mixxx 启动和关闭期间进行。 - + Delete history playlist with less than N tracks 删除少于 N 首曲目的历史播放列表 - + Library Font: 音乐库字体: - + + Show scan summary dialog + + + + Grey out played tracks 灰显播放的曲目 - + Track Search 轨迹搜索 - + Enable search completions 启用搜索补全 - + Enable search history keyboard shortcuts 启用搜索历史记录键盘快捷键 - + Percentage of pitch slider range for 'fuzzy' BPM search: “模糊”BPM 搜索范围: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks 此范围将通过搜索框用于“模糊”BPM 搜索 (~bpm:),以及用于 Search related Tracks > Track 上下文菜单中的 BPM 搜索 - + Preferred Cover Art Fetcher Resolution 首选封面图片提取程序分辨率 - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. 使用从 Musicbrainz 导入数据 从 coverartarchive.com 中获取封面。 - + Note: ">1200 px" can fetch up to very large cover arts. 注意:“>1200 px”最多可以获取非常大的封面。 - + >1200 px (if available) >1200 像素(如果可用) - + 1200 px (if available) 1200 像素(如果可用) - + 500 px 500像素 - + 250 px 250像素 - + Settings Directory 设置目录 - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Mixxx 设置目录包含库数据库、各种配置文件、日志文件、轨道分析数据以及自定义控制器映射。 - + Edit those files only if you know what you are doing and only while Mixxx is not running. 仅当您知道自己在做什么时,并且仅在 Mixxx 未运行时编辑这些文件。 - + Open Mixxx Settings Folder 打开 Mixxx 设置文件夹 - + Library Row Height: 圖書館行高︰ - + Use relative paths for playlist export if possible 请尽量使用相对路径来导出播放列表 - + ... ... - + px px - + Synchronize library track metadata from/to file tags 从文件标签同步库轨道数据/与文件标签同步 - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library 自动将修改后的轨道元数据从库写入文件标签,并将元数据从更新的文件标签重新导入到库中 - + Synchronize Serato track metadata from/to file tags (experimental) 从/到文件标签同步 Serato 跟踪元数据(实验性) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. 使轨道颜色、节拍网格、bpm 锁定、提示点和 Loop 与 SERATO_MARKERS/MARKERS2 文件标签保持同步。<br/><br/>警告:启用此选项还会在 Mixxx 之外修改文件后重新导入 Serato 元数据。重新导入时,Mixxx 中的现有元数据将替换为文件标签中的数据。文件标签中未包含的自定义元数据(如循环颜色)将丢失。 - + Edit metadata after clicking selected track 单击所选轨道后编辑数据 - + Search-as-you-type timeout: 键入时搜索超时: - + ms 女士 - + Load track to next available deck 載入追蹤記錄到下一個可用的甲板上 - + External Libraries 外部库 - + You will need to restart Mixxx for these settings to take effect. 您需要重启 Mixxx 以便这些设置生效。 - + Show Rhythmbox Library 顯示 Rhythmbox 庫 - + Track Metadata Synchronization / Playlists 轨道数据同步/播放列表 - + Add track to Auto DJ queue (bottom) 将轨道添加到 Auto DJ 队列(底部) - + Add track to Auto DJ queue (top) 将轨道添加到 Auto DJ 队列(顶部) - + Ignore 忽略 - + Show Banshee Library 顯示女妖庫 - + Show iTunes Library 显示iTunes音乐库 - + Show Traktor Library 显示Traktor音乐库 - + Show Rekordbox Library 显示 Recordbox 库 - + Show Serato Library 显示 Serato 库 - + All external libraries shown are write protected. 所有显示的外部库均为写保护模式。 @@ -7264,39 +7535,39 @@ 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 - + 所有设置都会在下一次轨道加载时生效。当前加载的轨迹不受影响。有关这些设置的说明,请参阅 %1 DlgPrefRecord - + Choose recordings directory 選擇錄音目錄 - - + + Recordings directory invalid 录制文件目录无效 - + Recordings directory must be set to an existing directory. 录制目录必须设置为现有目录。 - + Recordings directory must be set to a directory. Recordings directory (录制文件目录) 必须设置为目录。 - + Recordings directory not writable 录制文件目录不可写 - + You do not have write access to %1. Choose a recordings directory you have write access to. 您没有对 %1 的写入权限。选择您具有写入权限的录制文件目录。 @@ -7314,43 +7585,55 @@ and allows you to pitch adjust them for harmonic mixing. 流覽... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality 品质 - + Tags 标签 - + Title 標題 - + Author 作者 - + Album 专辑 - + Output File Format 输出文件格式 - + Compression 壓縮 - + Lossy 損耗衰減 @@ -7365,12 +7648,12 @@ and allows you to pitch adjust them for harmonic mixing. 目录: - + Compression Level 压缩级别 - + Lossless 無損 @@ -7503,172 +7786,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 赫兹 - + Default (long delay) 默认(长延时) - + Experimental (no delay) 试验(无延时) - + Disabled (short delay) 禁用 (短延時) - + Soundcard Clock 声卡时钟 - + Network Clock 网络时钟 - + Direct monitor (recording and broadcasting only) 直接监视器(仅限录制和广播) - + Disabled 已禁用 - + Enabled 啟用 - + Stereo 立体声 - + Mono 單聲道 - + To enable Realtime scheduling (currently disabled), see the %1. 要启用实时计划(当前已禁用),请参阅 %1。 - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 列出了您可能需要考虑使用 Mixxx 的声卡和控制器。 - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) 自动(<= 1024 帧/周期) - + 2048 frames/period 2048 帧/周期 - + 4096 frames/period 4096 帧/周期 - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. 测量往返延迟,并在上方输入麦克风延迟补偿以对齐麦克风计时。 - + Refer to the Mixxx User Manual for details. 細節請參考Mixxx 使用者操作手冊 - + Configured latency has changed. 配置的延迟已更改。 - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. 重新测量往返延迟,并将其输入到麦克风延迟补偿上方,以调整麦克风定时。 - + Realtime scheduling is enabled. 已启用实时调度。 - + Main output only 仅主输出 - + Main and booth outputs 主输出和展位输出 - + %1 ms %1 ms - + Configuration error 配置錯誤 @@ -7735,17 +8023,22 @@ The loudness target is approximate and assumes track pregain and main output lev 女士 - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 為 20 毫秒 - + Buffer Underflow Count 緩衝區下溢計數 - + 0 0 @@ -7770,12 +8063,12 @@ The loudness target is approximate and assumes track pregain and main output lev 輸入 - + System Reported Latency 系統報告延遲 - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. 若下溢计数持续增加,或者您听到“啪啪”声,请增大您的音频缓冲区。 @@ -7805,7 +8098,7 @@ The loudness target is approximate and assumes track pregain and main output lev 提示和診斷 - + Downsize your audio buffer to improve Mixxx's responsiveness. 若需提升 Mixxx 的响应速度,请降低您的音频缓冲区大小。 @@ -7852,7 +8145,7 @@ The loudness target is approximate and assumes track pregain and main output lev 乙烯基配置 - + Show Signal Quality in Skin 在皮膚中顯示信號品質 @@ -7888,47 +8181,52 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 碟盘1 - + Deck 2 碟盘2 - + Deck 3 碟盘3 - + Deck 4 碟盘4 - + Signal Quality 信號品質 - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax 由 xwax 提供動力 - + Hints 提示 - + Select sound devices for Vinyl Control in the Sound Hardware pane. 選擇聲音設備乙烯控制聲音硬體窗格中。 @@ -7936,58 +8234,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered 過濾 - + HSV HSV - + RGB RGB - + Top 返回页首 - + Center 中心 - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL 不可用 - + dropped frames 丟棄的幀 - + Cached waveforms occupy %1 MiB on disk. 缓存的波形占用了 %1 MB 磁盘空间。 @@ -8005,22 +8303,17 @@ The loudness target is approximate and assumes track pregain and main output lev 畫面播放速率 - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. 显示当前平台所支持的 OpenGL 版本。 - - Normalize waveform overview - 正常化波形概述 - - - + Average frame rate 平均畫面播放速率 @@ -8036,7 +8329,7 @@ The loudness target is approximate and assumes track pregain and main output lev 預設縮放級別 - + Displays the actual frame rate. 显示实际帧率。 @@ -8071,7 +8364,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show minute markers on waveform overview @@ -8116,7 +8409,7 @@ The loudness target is approximate and assumes track pregain and main output lev 全球視覺增益 - + 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. 选择波形的显示样式,其主要区别在于显示在波形中的细节多少。 @@ -8184,22 +8477,22 @@ Select from different types of displays for the waveform, which differ primarily pt - + Caching 緩存 - + 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 緩存您軌道在磁片第一次你載入追蹤記錄的波形。這降低了 CPU 使用率,當你玩活的時候,但需要額外的磁碟空間。 - + Enable waveform caching 启用波形缓存 - + Generate waveforms when analyzing library 在分析圖書館時產生波形 @@ -8215,7 +8508,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8245,12 +8538,58 @@ Select from different types of displays for the waveform, which differ primarily 将波形上的播放标记位置向左、向右或居中移动(默认)。 - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms 清除波形缓存 @@ -8742,7 +9081,7 @@ This can not be undone! BPM: - + Location: 位置: @@ -8757,27 +9096,27 @@ This can not be undone! 注视 - + BPM BPM - + Sets the BPM to 75% of the current value. 将 BPM 设置为当前值的 75%。 - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. 将 BPM 设置为当前值的 50%。 - + Displays the BPM of the selected track. 显示所选音轨的 BPM。 @@ -8832,49 +9171,49 @@ This can not be undone! 體裁 - + ReplayGain: 重播增益︰ - + Sets the BPM to 200% of the current value. 將 BPM 設置為 200%的當前值。 - + Double BPM 拍速倍增 - + Halve BPM 減半 BPM - + Clear BPM and Beatgrid 明確的 BPM 和 Beatgrid - + Move to the previous item. "Previous" button 移动至前一项。 - + &Previous 上一首(&P) - + Move to the next item. "Next" button 移動到下一個專案。 - + &Next 下一首(&N) @@ -8899,12 +9238,12 @@ This can not be undone! 颜色 - + Date added: 添加日期: - + Open in File Browser 在文件管理器中打开 @@ -8914,12 +9253,17 @@ This can not be undone! 采样率: - + + Filesize: + + + + Track BPM: BPM 的軌道︰ - + 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. @@ -8928,90 +9272,90 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 这样通常能得到质量更高的节拍网格,但对有节奏变化的音轨效果不佳。 - + Assume constant tempo 假定速度恒定 - + Sets the BPM to 66% of the current value. 將 BPM 設置為當前值的 66%。 - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. 将 BPM 设置为当前值的 150%。 - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. 将 BPM 设置为当前值的 133%。 - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. 點擊擊敗,設置 BPM 為您正在開發的速度。 - + Tap to Beat 點擊節拍 - + Hint: Use the Library Analyze view to run BPM detection. 提示︰ 使用庫分析視圖運行 BPM 檢測。 - + Save changes and close the window. "OK" button 保存更改并关闭窗口。 - + &OK 與確定 - + Discard changes and close the window. "Cancel" button 丢弃更改并关闭窗口。 - + Save changes and keep the window open. "Apply" button 保存更改並保持視窗打開。 - + &Apply 與應用 - + &Cancel 與取消 - + (no color) (无颜色) @@ -9168,7 +9512,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 确认(&O) - + (no color) (无颜色) @@ -9370,27 +9714,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (更快) - + Rubberband (better) 橡皮條 (更好) - + Rubberband R3 (near-hi-fi quality) 接近高保真质量 - + Unknown, using Rubberband (better) 未知,使用更好 - + Unknown, using Soundtouch 未知,使用 Soundtouch @@ -9605,15 +9949,15 @@ 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 @@ -9625,57 +9969,57 @@ Shown when VuMeter can not be displayed. Please keep 支持。 - + activate 启用 - + toggle 切換 - + right - + left - + right small 右小 - + left small 左小 - + up 向上 - + down - + up small 小了 - + down small 下小 - + Shortcut 快捷方式 @@ -9683,37 +10027,37 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. 此目录或父目录已位于您的库中。 - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies 此目录或列出的目录不存在或无法访问。 中止操作以避免库不一致 - - + + This directory can not be read. 无法读取此目录。 - + An unknown error occurred. Aborting the operation to avoid library inconsistencies 发生未知错误。 中止操作以避免库不一致 - + Can't add Directory to Library 无法将目录添加到库 - + Could not add <b>%1</b> to your library. %2 @@ -9722,27 +10066,27 @@ Aborting the operation to avoid library inconsistencies %2 - + Can't remove Directory from Library 无法从库中删除目录 - + An unknown error occurred. 发生未知错误。 - + This directory does not exist or is inaccessible. 此目录不存在或无法访问。 - + Relink Directory 重新链接目录 - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9754,23 +10098,23 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9908,12 +10252,12 @@ Do you really want to overwrite it? 隱藏的曲目 - + Export to Engine DJ 导出到 Engine DJ - + Tracks 音轨 @@ -9921,37 +10265,37 @@ 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 重试 @@ -9961,211 +10305,211 @@ Do you really want to overwrite it? 皮肤 - + Allow Mixxx to hide the menu bar? 允许 Mixxx 隐藏菜单栏? - + Hide Always show the menu bar? 隐藏 - + Always show 始终显示 - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Mixxx 菜单栏是隐藏的,只需按一下<b>Alt 键</b>钥匙。<br><br>点击<b>%1</b>同意。<br><br>点击<b>%2</b>以禁用它,例如,如果您不将 Mixxx 与键盘一起使用。<br><br>您可以随时在 Preferences -> Interface 中更改此设置。<br> - + Ask me again 再问我一次 - - + + 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? 没有为此辅助设备选择输入设备。是否要选择输入设备? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. 您的计算机上未启用直接渲染。<br><br>这意味着波形显示将非常<br><b>速度慢,并且可能会严重占用您的 CPU</b>.要么更新您的<br>配置以启用直接渲染或禁用<br>波形将通过选择 Mixxx 首选项显示在<br>“空”作为“界面”部分的波形显示。 - - - + + + 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? @@ -10181,13 +10525,13 @@ Do you want to select an input device? PlaylistFeature - + Lock 锁定 - - + + Playlists 播放列表 @@ -10197,58 +10541,63 @@ Do you want to select an input device? 随机播放播放列表 - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock 解鎖 - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. 播放列表是有序的曲目列表,允许您规划 DJ 集。 - + 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 創建新的播放清單 @@ -10347,59 +10696,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 重新分析音轨,请选择“保留当前节拍样式”。您可以之后在首选项中的“节拍检测”选项卡中更改此设置。 - + Keep Current Beatgrids 保留当前节拍样式 - + Generate New Beatgrids 生成新 Beatgrids @@ -10513,69 +10862,82 @@ Do you want to scan your library for cover files now? 14 位 (MSB) - + Main + Audio path indetifier 主要 - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier 耳机 - + Left Bus + Audio path indetifier 左的巴士 - + Center Bus + Audio path indetifier 中心巴士 - + Right Bus + Audio path indetifier 右总线 - + Invalid Bus + Audio path indetifier 无效总线 - + Deck + Audio path indetifier 甲板上 - + Record/Broadcast + Audio path indetifier 錄音/廣播 - + Vinyl Control + Audio path indetifier 唱盘控制 - + Microphone + Audio path indetifier 麥克風 - + Auxiliary + Audio path indetifier 辅助 - + Unknown path type %1 + Audio path 路径类型 %1 未知 @@ -10918,47 +11280,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang 寬度 - + Metronome 节拍器 - + + The Mixxx Team - + Adds a metronome click sound to the stream 向流中添加节拍器咔嗒声 - + BPM BPM - + Set the beats per minute value of the click sound 设置咔嗒声的每分钟节拍数值 - + Sync 同步 - + Synchronizes the BPM with the track if it can be retrieved 如果可以检索 Track,则将 BPM 与 Track 同步 - + + Gain - + Set the gain of metronome click sound @@ -11762,14 +12126,14 @@ Fully right: end of the effect period 不支持 OGG 录制。无法初始化 OGG/Vorbis 库。 - - + + encoder failure 编码器故障 - - + + Failed to apply the selected settings. 无法应用所选设置。 @@ -11907,7 +12271,7 @@ Hint: compensates "chipmunk" or "growling" voices 应用于音频信号的放大量。在更高的级别上,音频将更加分散。 - + Passthrough 直通 @@ -11959,31 +12323,102 @@ Hint: compensates "chipmunk" or "growling" voices 补偿 - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - Auto Makeup 按钮启用自动增益调整以保持输入信号 -以及处理后的输出信号在感知响度上尽可能接近 + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + Auto Makeup 按钮启用自动增益调整以保持输入信号 +以及处理后的输出信号在感知响度上尽可能接近 + + + + Off + 关闭 + + + + On + 打开 + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + 阈值 (dBFS) + + + + + Threshold + 门槛 + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - 关闭 + + Knee (dB) + - - On - 打开 + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - 阈值 (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - 门槛 + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12015,6 +12450,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee (dBFS) + Knee Knee @@ -12025,11 +12461,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee 旋钮用于实现更圆润的压缩曲线 + Attack (ms) + Attack @@ -12042,11 +12480,13 @@ will set in once the signal exceeds the threshold 将在信号超过阈值时设置 + Release (ms) 版本(毫秒) + Release 释放 @@ -12077,12 +12517,12 @@ may introduce a 'pumping' effect and/or distortion. 各种 - + built-in - + missing @@ -12117,42 +12557,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12234,7 +12674,7 @@ may introduce a 'pumping' effect and/or distortion. Hot cues - + 即时切点 @@ -12413,193 +12853,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx遇到一个问题 - + Could not allocate shout_t 无法为 shout_t 分配内存 - + Could not allocate shout_metadata_t 无法为 shout_metadata_t 分配内存 - + Error setting non-blocking mode: 錯誤設置非阻塞模式︰ - + Error setting tls mode: 设置 TLS 模式时出错: - + Error setting hostname! 设置主机名时出错! - + Error setting port! 設置埠時出錯 ! - + Error setting password! 設置密碼時出錯 ! - + Error setting mount! 设置挂载点时出错! - + Error setting username! 设置i用户名时出错! - + Error setting stream name! 錯誤設置流名稱 ! - + Error setting stream description! 錯誤設置流說明 ! - + Error setting stream genre! 设置流的流派时出错! - + Error setting stream url! 设置流的 URL 时出错! - + Error setting stream IRC! 设置流 IRC 时出错! - + Error setting stream AIM! 设置流 AIM 时出错! - + Error setting stream ICQ! 设置流 ICQ 时出错! - + Error setting stream public! 錯誤設置流公共 ! - + Unknown stream encoding format! 未知的流编码格式! - + Use a libshout version with %1 enabled 使用启用了 %1 的 libshout 版本 - + 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. 目前不支持使用 Ogg Vorbis 以 96 kHz 进行广播。请尝试不同的采样率或切换到不同的编码。 - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. 有关更多信息,请参阅 https://github.com/mixxxdj/mixxx/issues/5701。 - + Unsupported sample rate 不支持的采样率 - + Error setting bitrate 錯誤設置位元速率 - + Error: unknown server protocol! 错误:服务器协议未知! - + Error: Shoutcast only supports MP3 and AAC encoders 错误:Shoutcast 仅支持 MP3 和 AAC 编码器 - + Error setting protocol! 设置协议时出错! - + Network cache overflow 網路的快取溢出 - + Connection error 连接错误 - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> 其中一个 Live Broadcasting 连接引发了以下错误:<br><b>连接“%1”出错:</b><br> - + Connection message 连接消息 - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>来自实时广播连接“%1”的消息:</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. 到流服务器的连接中断,且在 %1 次重试之后仍然无法重新连接 - + Lost connection to streaming server. 到流服务器的连接断开 - + Please check your connection to the Internet. 请检查您的互联网连接 - + Can't connect to streaming server 无法连接到流服务器 - + Please check your connection to the Internet and verify that your username and password are correct. 請檢查您連接到 Internet,請驗證您的使用者名和密碼正確。 @@ -12607,7 +13047,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered 過濾 @@ -12615,23 +13055,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device 一个设备 - + An unknown error occurred 出現未知的錯誤 - + Two outputs cannot share channels on "%1" 两个输出无法共享 %1 的通道 - + Error opening "%1" 无法打开 "%1" @@ -12816,7 +13256,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl 紡紗乙烯基 @@ -12998,7 +13438,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art 封面 @@ -13188,243 +13628,243 @@ may introduce a 'pumping' effect and/or distortion. 启用时,将低频均衡器的增益置为 0。 - + Displays the tempo of the loaded track in BPM (beats per minute). 显示已加载音轨的BPM(拍每分钟)。 - + Tempo 速度 - + Key The musical key of a track 關鍵 - + BPM Tap BPM 敲击 - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 - + Adjust BPM Down 向下調整 BPM - + When tapped, adjusts the average BPM down by a small amount. 点击时,将平均 BPM 略微下调。 - + Adjust BPM Up 上调 BPM - + When tapped, adjusts the average BPM up by a small amount. 當敲擊時,通過少量向上調整平均 BPM。 - + Adjust Beats Earlier 早些時候調整節拍 - + When tapped, moves the beatgrid left by a small amount. 當敲擊時,移動 beatgrid 留下的一小部分。 - + Adjust Beats Later 推迟节拍 - + When tapped, moves the beatgrid right by a small amount. 点击时,将节拍略微推迟。 - + Tempo and BPM Tap 速度和 BPM - + Show/hide the spinning vinyl section. 显示/隐藏唱盘控制器。 - + Keylock 鑰匙鎖 - + Toggling keylock during playback may result in a momentary audio glitch. 在回放时切换音高锁定可能会导致音频出现瞬间的噪音(glitch)。 - + Toggle visibility of Loop Controls 切换 Loop Controls 的可见性 - + Toggle visibility of Beatjump Controls 切换 Beatjump 控件的可见性 - + Toggle visibility of Rate Control 切换速率控制的可见性 - + Toggle visibility of Key Controls 切换键控的可见性 - + (while previewing) (预览时) - + Places a cue point at the current position on the waveform. 在波形的当前位置上设置一个切入点。 - + Stops track at cue point, OR go to cue point and play after release (CUP mode). 在切入点处停止,或跳至切入点并在释放后播放(切播模式下)。 - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). 设置切入点(Pioneer/Mixxx 模式下)并在释放后开始播放(切播模式下),或从切入点出开始预览(Denon 模式下)。 - + Is latching the playing state. 正在锁定播放状态。 - + Seeks the track to the cue point and stops. 跳至音轨的切入点,然后停止。 - + Play 播放 - + Plays track from the cue point. 从提示点播放轨道。 - + 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 启用 Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. 点击可将速度同步到其他正在播放的轨道或同步引导。 - + Enable Sync Leader 启用 Sync Leader - + When enabled, this device will serve as the sync leader for all other decks. 启用后,此设备将用作所有其他 Deck 的同步引导。 - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. 当动态速度轨道加载到同步引导界面时,这一点很重要。在这种情况下,其他同步装置将采用不断变化的速度。 - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. 更改跟蹤重播速度 (影響節奏和音高)。如果啟用了鍵盤鎖,只有節奏受到影響。 - + Tempo Range Display 速度范围显示 - + Displays the current range of the tempo slider. 显示速度滑块的当前范围。 - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). 未加载 track 时取消弹出,即重新加载最后弹出的 track (任何卡座)。 - + Delete selected hotcue. 删除选定的 hotcue。 - + Track Comment 轨道评级 - + Displays the comment tag of the loaded track. 显示加载的轨道的注释标签。 - + Opens separate artwork viewer. 打开单独的图稿查看器。 - + Effect Chain Preset Settings Effect Chain 预设设置 - + Show the effect chain settings menu for this unit. 显示本机的 Effect Chain 设置菜单。 - + Select and configure a hardware device for this input 为此输入选择并配置硬件设备 - + Recording Duration 录制时间 @@ -13647,949 +14087,984 @@ may introduce a 'pumping' effect and/or distortion. 在活动时保持较高的播放速度(少量)。 - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap 节奏敲击 - + Rate Tap and BPM Tap Rate Tap 和 BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/节拍网格 锁 - + Tempo and Rate Tap 速度和 BPM - + Tempo, Rate Tap and BPM Tap 速度、速率拍子和 BPM 拍子 - + Shift cues earlier 提前移动提示 - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. 从 Serato 或 Rekordbox 导入的 Shift 提示点(如果它们稍微偏离时间)。 - + Left click: shift 10 milliseconds earlier 左键单击:提前 10 毫秒 Shift - + Right click: shift 1 millisecond earlier 右键单击:提前 1 毫秒 Shift - + Shift cues later 稍后切换提示 - + Left click: shift 10 milliseconds later 左键单击:10 毫秒后 shift - + Right click: shift 1 millisecond later 右键单击:1 毫秒后 Shift - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. 将主输出中所选声道的音频静音。 - + Main mix enable 主混音启用 - + Hold or short click for latching to mix this input into the main output. 按住或短按锁定以将此输入混合到主输出中。 - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. 如果 hotcue 是一个 Loop 提示,则切换 Loop 并跳转到 Loop 是否在播放位置后面。 - + If the play position is inside an active loop, stores the loop as loop cue. 如果播放位置位于活动 Loop 内,则将 Loop 存储为 Loop 提示。 - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers 展开/折叠采样器 - + Toggle expanded samplers view. 切换展开的采样器视图。 - + Displays the duration of the running recording. 显示运行录制的持续时间。 - + Auto DJ is active Auto DJ 处于活动状态 - + Red for when needle skip has been detected. 红色表示检测到跳针。 - + Hot Cue - Track will seek to nearest previous hotcue point. 热切 - 将会定位到上一个(最近的)热切入点。 - + Sets the track Loop-In Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-In Marker. 按住可移动 Loop-In 标记。 - + Jump to Loop-In Marker. 跳转到 Loop-In 标记。 - + Sets the track Loop-Out Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-Out Marker. 按住可移动 Loop-Out Marker。 - + Jump to Loop-Out Marker. 跳转到 Loop-Out Marker。 - + If the track has no beats the unit is seconds. 如果轨道没有节拍,则单位为秒。 - + Beatloop Size Beatloop 大小 - + Select the size of the loop in beats to set with the Beatloop button. 选择 Loop 的大小(以节拍为单位),以使用 Beatloop 按钮进行设置。 - + Changing this resizes the loop if the loop already matches this size. 如果 loop 已经匹配此大小,则更改此 URL 将调整 Loop 的大小。 - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. 将现有 Beatloop 的大小减半,或使用 Beatloop 按钮将下一个 Beatloop 集的大小减半。 - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. 使用 Beatloop 按钮将现有 Beatloop 的大小增加一倍,或将下一个 Beatloop 集的大小增加一倍。 - + Start a loop over the set number of beats. 在设定的节拍数上开始循环。 - + Temporarily enable a rolling loop over the set number of beats. 在设定的节拍数上暂时启用滚动循环。 - + Beatloop Anchor Beatloop 固定点 - + Define whether the loop is created and adjusted from its staring point or ending point. 定义是否从其起始点或终点创建和调整循环。 - + Beatjump/Loop Move Size Beatjump/Loop 移动大小 - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. 选择要跳跃的节拍数,或使用 Beatjump Forward/Backward 按钮移动 Loop。 - + Beatjump Forward Beatjump 向前 - + Jump forward by the set number of beats. 向前跳动设定的节拍数。 - + Move the loop forward by the set number of beats. 将 Loop 向前移动设定的节拍数。 - + Jump forward by 1 beat. 向前跳 1 拍 - + Move the loop forward by 1 beat. 将循环向前移动 1 拍 - + Beatjump Backward 向后跳拍 - + Jump backward by the set number of beats. 向后跳过指定数量的节拍。 - + Move the loop backward by the set number of beats. 将循环向后移动指定数量的节拍。 - + Jump backward by 1 beat. 向后跳 1 拍 - + Move the loop backward by 1 beat. 将循环向后移动 1 拍 - + Reloop 再循环 - + 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. 仅当设置了循环起始和结束位置时才会有效。 - + Enable loop, jump to Loop-In Marker, and stop playback. 启用 loop,跳转到 Loop-In Marker,然后停止播放。 - + Displays the elapsed and/or remaining time of the track loaded. 显示加载跟踪的经过和 (或) 剩余时间。 - + Click to toggle between time elapsed/remaining time/both. 单击可切换时间/剩余时间时间或两者。 - + Hint: Change the time format in Preferences -> Decks. 提示:在 Preferences -> Decks 中更改时间格式。 - + Show/hide intro & outro markers and associated buttons. 显示/隐藏介绍和结尾标记以及相关按钮。 - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker 介绍开始标记 - - - - + + + + If marker is set, jumps to the marker. 如果设置了 marker,则跳转到 marker。 - - - - + + + + If marker is not set, sets the marker to the current play position. 如果未设置 marker,则将 marker 设置为当前播放位置。 - - - - + + + + If marker is set, clears the marker. 如果设置了 marker,则清除 marker。 - + Intro End Marker 介绍结束标记 - + Outro Start Marker 结尾部分开始标记 - + Outro End Marker 结尾部分结束标记 - + Mix 混合 - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit 调整效果器单元的干 (input) 信号与湿 (output) 信号的混合 - + D/W mode: Crossfade between dry and wet D/W 模式:干湿交叉淡入淡出 - + D+W mode: Add wet to dry D+W 模式:从湿到干 - + Mix Mode 混合模式 - + 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. 干/湿模式(交叉线):混合旋钮在干湿之间交叉淡化 使用此选项可通过 EQ 和滤波器效果更改轨道的声音。 - + 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. 干 + 湿模式(平坦干线):混合旋钮将湿添加到干 使用此选项可仅更改带有 EQ 和滤波器效果的效果(湿)信号。 - + Route the main mix through this effect unit. 通过此效果器单元路由主混音。 - + Route the left crossfader bus through this effect unit. 将左侧的交叉推子总线路由到此效果器单元中。 - + Route the right crossfader bus through this effect unit. 将右侧的 Crossfader 总线路由到此效果器单元中 - + Right side active: parameter moves with right half of Meta Knob turn 右侧激活:参数随着 Meta 旋钮的右半部分转动而移动 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin Settings 菜单 - + Show/hide skin settings menu 显示/隐藏皮肤设置菜单 - + Save Sampler Bank 保存採樣器銀行 - + Save the collection of samples loaded in the samplers. 保存采样器中加载的样本集合。 - + Load Sampler Bank 加载采样库 - + Load a previously saved collection of samples into the samplers. 将以前保存的样本集合加载到采样器中。 - + Show Effect Parameters 顯示效果器的參數 - + Enable Effect 启用特效 - + Meta Knob Link 元旋钮链接 - + Set how this parameter is linked to the effect's Meta Knob. 设置此参数如何链接到效果的 Meta 旋钮。 - + Meta Knob Link Inversion 元旋钮链接反演 - + Inverts the direction this parameter moves when turning the effect's Meta Knob. 反转此参数时效果的 Meta 旋钮移动的方向。 - + Super Knob 超級旋鈕 - + Next Chain 下一效果器链 - + Previous Chain 上一效果器链 - + Next/Previous Chain 下一個/上一個鏈 - + Clear 清除 - + Clear the current effect. 清除當前的效果。 - + Toggle 切換 - + Toggle the current effect. 切換當前效果。 - + Next 下一個 - + Clear Unit 清除單元 - + Clear effect unit. 單位明確效果。 - + Show/hide parameters for effects in this unit. 显示/隐藏此单元中效果的参数。 - + Toggle Unit 切換單元 - + Enable or disable this whole effect unit. 启用或禁用整个效果单元。 - + Controls the Meta Knob of all effects in this unit together. 同时控制该单元中所有效果的 Meta 旋钮。 - + Load next effect chain preset into this effect unit. 将 next effect chain 预设加载到此效果单元中。 - + Load previous effect chain preset into this effect unit. 将上一个效果链预设加载到此效果单元中。 - + Load next or previous effect chain preset into this effect unit. 将下一个或上一个效果链预设加载到此效果单元中。 - - - - - - - - - + + + + + + + + + Assign Effect Unit 分配效果单元 - + Assign this effect unit to the channel output. 将此效果器单元分配给通道输出。 - + Route the headphone channel through this effect unit. 通过此效果器单元路由耳机通道。 - + Route this deck through the indicated effect unit. 将此 Deck 路由到指定的效果单位。 - + Route this sampler through the indicated effect unit. 将此采样器路由到指示的效果器单元。 - + Route this microphone 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. 还必须将效果单元分配给 Deck 或其他声源才能听到效果。 - + Switch to the next effect. 切换至下一个效果。 - + Previous 前一個 - + Switch to the previous effect. 切换至之前的效果。 - + Next or Previous 下一个或上一个 - + Switch to either the next or previous effect. 切換到下一個或上一個效果。 - + Meta Knob 元旋钮 - + Controls linked parameters of this effect 这种效应的控制链接的参数 - + Effect Focus Button 影响对焦按钮 - + Focuses this effect. 针对这种效果。 - + Unfocuses this effect. Unfocuses 这种效果。 - + Refer to the web page on the Mixxx wiki for your controller for more information. 您的控制器的详细信息,请参阅 Mixxx wiki 上的 web 页。 - + Effect Parameter 影響參數 - + Adjusts a parameter of the effect. 调整效果器的参数。 - + Inactive: parameter not linked Inactive:参数未链接 - + Active: parameter moves with Meta Knob Active(活动):参数随 Meta 旋钮移动 - + Left side active: parameter moves with left half of Meta Knob turn 左侧激活:参数随着 Meta 旋钮的左半部分转动而移动 - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half 左侧和右侧激活:参数在切换距离时移动,Meta 旋钮的一半转动,另一半转动 - - + + Equalizer Parameter Kill 均衡器参数置零 - - + + Holds the gain of the EQ to zero while active. 情商的增益堅持零的活躍。 - + Quick Effect Super Knob 快捷效果的超级旋钮 - + Quick Effect Super Knob (control linked effect parameters). 快捷效果超级旋钮(控制关联的效果参数)。 - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. 提示:可以在 首选项 -> 均衡器 设置中更改默认的快捷效果模式。 - + Equalizer Parameter 均衡器参数 - + Adjusts the gain of the EQ filter. 調整 EQ 濾波器的增益。 - + Hint: Change the default EQ mode in Preferences -> Equalizers. 提示︰ 更改預設首選項中的情商模式網站-> 等化器。 - - + + Adjust Beatgrid 调整节拍 - + Adjust beatgrid so the closest beat is aligned with the current play position. 所以最近的節拍與當前播放位置對齊調整 beatgrid。 - - + + Adjust beatgrid to match another playing deck. 调整节拍样式以匹配另一个正在播放的碟机。 - + If quantize is enabled, snaps to the nearest beat. 若启用量化,则对齐到最近的节拍。 - + Quantize 量化 - + Toggles quantization. 切換量化。 - + Loops and cues snap to the nearest beat when quantization is enabled. 若启用量化,循环和切入点将对齐到最近的节拍。 - + Reverse 反向 - + Reverses track playback during regular playback. 反轉跟蹤定期播放期間播放。 - + Puts a track into reverse while being held (Censor). 按下时,将音轨反向。 - + Playback continues where the track would have been if it had not been temporarily reversed. 在继续播放的同时,将音轨反转(若之前尚未反转的话)。 - - - + + + Play/Pause 播放/暫停 - + Jumps to the beginning of the track. 跳轉到的磁軌起點。 - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. 同步的節奏 (BPM) 和相位的另一條鐵軌,如果 BPM 檢測到兩個。 - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. 如果 BPM 在兩個上檢測到的另一條鐵軌,同步節奏 (BPM)。 - + Sync and Reset Key 同步和重置金鑰 - + Increases the pitch by one semitone. 增加一個半音的球場。 - + Decreases the pitch by one semitone. 減少一個半音的球場。 - + Enable Vinyl Control 启用唱盘控制 - + When disabled, the track is controlled by Mixxx playback controls. 當禁用時,軌道被受 Mixxx 播放控制項。 - + When enabled, the track responds to external vinyl control. 當啟用時,跟蹤回應外部乙烯控制。 - + Enable Passthrough 啟用直通 - + Indicates that the audio buffer is too small to do all audio processing. 指示音訊緩衝區太小,做所有的音訊處理。 - + Displays cover artwork of the loaded track. 显示已加载音轨的封面。 - + Displays options for editing cover artwork. 顯示用於編輯封面插圖選項。 - + Star Rating 星級 - + Assign ratings to individual tracks by clicking the stars. 通過按一下星星將評級分配到單獨曲目。 @@ -14724,33 +15199,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.麦克风闪避强度 - + Prevents the pitch from changing when the rate changes. 当速率改变时,防止音高也改变。 - + Changes the number of hotcue buttons displayed in the deck 更改 Deck 中显示的 hotcue 按钮的数量 - + Starts playing from the beginning of the track. 開始從軌道開始播放。 - + Jumps to the beginning of the track and stops. 跳轉到的磁軌起點和停止。 - - + + Plays or pauses the track. 播放或暂停音轨。 - + (while playing) (當演奏) @@ -14770,215 +15245,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.主通道 R 音量表 - + (while stopped) (雖然停止) - + Cue 提示 - + Headphone 耳机 - + Mute 静音 - + Old Synchronize 老同步 - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. 到第一 (按數值順序) 甲板播放的曲目並具有 BPM 同步。 - + If no deck is playing, syncs to the first deck that has a BPM. 若没有正在播放的碟机,与第一个有 BPM 信息的碟机同步。 - + Decks can't sync to samplers and samplers can only sync to decks. 无法将碟机与采样器同步,采样器仅能与碟机同步。 - + Hold for at least a second to enable sync lock for this 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. 启用了同步锁定的碟机将会以相同的速度播放;其中启用了量化模式的碟机还会自动同步节拍。 - + Resets the key to the original track key. 重置为音轨的原音调。 - + Speed Control 速度控制 - - - + + + Changes the track pitch independent of the tempo. 保持速度不变的前提下,改变音轨音高。 - + Increases the pitch by 10 cents. 增加 10 美分的球場。 - + Decreases the pitch by 10 cents. 減少 10 美分的球場。 - + Pitch Adjust 调整音高 - + Adjust the pitch in addition to the speed slider pitch. 調整除了速度滑塊球場球場。 - + Opens a menu to clear hotcues or edit their labels and colors. 打开一个菜单以清除 Hotcue 或编辑其标签和颜色。 - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix 录制混音 - + Toggle mix recording. 切换混音录制。 - + Enable Live Broadcasting 啟用即時廣播 - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Provides visual feedback for Live Broadcasting status: 为在线广播的状态提供可视化反馈: - + disabled, connecting, connected, failure. 禁用,連接,連接,失敗。 - + When enabled, the deck directly plays the audio arriving on the vinyl input. 若启用,碟机将会直接播放来自唱盘的输入信号。 - + Playback will resume where the track would have been if it had not entered the loop. 播放將恢復在軌道本來如果不進入了迴圈。 - + Loop Exit 循環關閉 - + Turns the current loop off. 关闭当前循环。 - + Slip Mode 滑动模式 - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. 若启用,将会在循环、反向或刮擦的时候将回放信号静音。 - + Once disabled, the audible playback will resume where the track would have been. 一旦禁用,聲音播放將恢復本來的軌道。 - + Track Key The musical key of a track 音轨音调 - + Displays the musical key of the loaded track. 显示已加载音轨的音调。 - + Clock 时钟 - + Displays the current time. 显示当前时间。 - + Audio Latency Usage Meter 音訊延遲用量表 - + Displays the fraction of latency used for audio processing. 显示用于音频处理的延迟分数。 - + A high value indicates that audible glitches are likely. 較高的值表明發聲的故障都有可能。 - + Do not enable keylock, effects or additional decks in this situation. 在这个情况不要启用音调锁,效果器或者额外的碟机。 - + Audio Latency Overload Indicator 音訊延遲超載指示器 @@ -15018,259 +15493,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.啟動從功能表-選項 > 乙烯控制。 - + Displays the current musical key of the loaded track after pitch shifting. 顯示載入跟蹤當前音樂鍵後變調。 - + Fast Rewind 快退 - + Fast rewind through the track. 音轨快退。 - + Fast Forward 快进 - + Fast forward through the track. 通過跟蹤的快速前進。 - + Jumps to the end of the track. 跳至音轨结束点。 - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. 选择音调的音高,以便从其他音轨进行和声转换。需要双方碟机均已检测到音调信息。 - - - + + + Pitch Control 變槳距控制 - + Pitch Rate 音高率 - + Displays the current playback rate of the track. 顯示當前播放率的軌道。 - + Repeat 重复 - + When active the track will repeat if you go past the end or reverse before the start. 活動時軌道將重複如果你走過結束或之前開始扭轉。 - + Eject 彈出 - + Ejects track from the player. 彈出從球員的軌道。 - + Hotcue 热切点(Hotcue) - + If hotcue is set, jumps to the hotcue. 若设置了热切,将会跳至热切点。 - + If hotcue is not set, sets the hotcue to the current play position. 如果未設置 hotcue,將 hotcue 設置為當前的播放位置。 - + Vinyl Control Mode 黑膠盤控制模式 - + Absolute mode - track position equals needle position and speed. 绝对模式 - 音轨位置与播放指针的位置和速度一致。 - + Relative mode - track speed equals needle speed regardless of needle position. 相对模式 - 音轨速度与播放指针速度一致(无论指针处于哪个位置) - + Constant mode - track speed equals last known-steady speed regardless of needle input. 持續模式-跟蹤速度等於針輸入最後一個已知穩定速度。 - + Vinyl Status 乙烯基狀態 - + Provides visual feedback for vinyl control status: 为唱盘控制器的状态提供可视化反馈: - + Green for control enabled. 绿色表示已启用控制。 - + Blinking yellow for when the needle reaches the end of the record. 黄色(闪烁)表示播放指针到达记录结尾。 - + Loop-In Marker 迴圈中的標記 - + Loop-Out Marker 圈出標記 - + Loop Halve 循环减半 - + Halves the current loop's length by moving the end marker. 移动循环结束标记,使得循环长度减半。 - + Deck immediately loops if past the new endpoint. 在到达新的结束位置后,碟机将会立即循环。 - + Loop Double 循環雙倍 - + Doubles the current loop's length by moving the end marker. 移动循环结束标记,使得循环长度加倍。 - + Beatloop - + 节拍循环 - + Toggles the current loop on or off. 开启或关闭当前循环。 - + Works only if Loop-In and Loop-Out marker are set. 只當回路中的作品和迴圈出標記設置。 - + Vinyl Cueing Mode 唱盘Cueing模式 - + Determines how cue points are treated in vinyl control Relative mode: 確定如何將提示點處理在乙烯基控制相對模式下︰ - + Off - Cue points ignored. 关闭 - 忽略切入点。 - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. 一個提示-如果針下降後提示點,軌道尋求那提示點。 - + Track Time 音轨时间 - + Track Duration 音轨长度 - + Displays the duration of the loaded track. 显示已加载的音轨的长度。 - + Information is loaded from the track's metadata tags. 已从音轨的元数据标签中载入 信息。 - + Track Artist 曲目演出者 - + Displays the artist of the loaded track. 顯示載入跟蹤的演出者。 - + Track Title 曲目標題 - + Displays the title of the loaded track. 顯示載入跟蹤的標題。 - + Track Album 专辑 - + Displays the album name of the loaded track. 顯示載入跟蹤的專輯名稱。 - + Track Artist/Title 音轨艺术家/标题 - + Displays the artist and title of the loaded track. 顯示的演出者和標題載入跟蹤。 @@ -15501,47 +15976,75 @@ This can not be undone! WCueMenuPopup - + Cue number 提示编号 - + Cue position 提示位置 - + Edit cue label Edit cue label(编辑提示标签) - + Label... 标签 - + Delete this cue 删除此提示 - - Toggle this cue type between normal cue and saved loop - 在正常提示点和保存的 Loop 之间切换此提示类型 + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - 左键单击:使用旧大小或当前 Beatloop 大小作为 Loop 大小 + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - 右键点击:如果当前播放位置在 cue 之后,则将其用作 Loop 结束 + + Right-click: use current play position as new jump start position + - + Hotcue #%1 热提示 #%1 @@ -15666,323 +16169,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist 創建與新的播放清單 - + Create a new playlist 新建播放列表 - + Ctrl+n Ctrl n + - + Create New &Crate 創建新 & 箱 - + Create a new crate 創建一個新的箱子 - + Ctrl+Shift+N Ctrl + Shift + N - - + + &View 查看(&V) - + Auto-hide menu bar 自动隐藏菜单栏 - + Auto-hide the main menu bar when it's not used. 不使用主菜单栏时自动隐藏主菜单栏。 - + May not be supported on all skins. 并非所有皮肤均支持。 - + Show Skin Settings Menu 皮肤设置菜单 - + Show the Skin Settings Menu of the currently selected Skin 显示当前选定皮肤的皮肤设置菜单 - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl 1 + - + Show Microphone Section 顯示麥克風節 - + Show the microphone section of the Mixxx interface. 顯示 Mixxx 介面的麥克風部分。 - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section 显示唱盘控制界面 - + Show the vinyl control section of the Mixxx interface. 顯示 Mixxx 介面的乙烯基控制部分。 - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl 3 + - + Show Preview Deck 顯示預覽甲板 - + Show the preview deck in the Mixxx interface. 在 Mixxx 内显示显示预览用碟机。 - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art 显示封面 - + Show cover art in the Mixxx interface. 在 Mixxx 介面中顯示封面藝術。 - + Ctrl+6 Menubar|View|Show Cover Art Ctrl 6 + - + Maximize Library 最大化音乐库 - + Maximize the track library to take up all the available screen space. 最大化音樂庫以佔用所有可用的螢幕空間。 - + Space Menubar|View|Maximize Library 空間 - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen 全屏(&F) - + Display Mixxx using the full screen 使用全螢幕的顯示 Mixxx - + &Options 选项(&O) - + &Vinyl Control 與乙烯基控制 - + Use timecoded vinyls on external turntables to control Mixxx 对外部转盘使用时间编码的唱盘控制,以便控制 Mixxx - + Enable Vinyl Control &%1 啟用乙烯控制 & %1 - + &Record Mix 與記錄組合 - + Record your mix to a file 記錄你組合到一個檔 - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting 啟用即時 & 廣播 - + Stream your mixes to a shoutcast or icecast server 将混音通过流输出到 shoutcast 或 icecast 服务器 - + Ctrl+L 按 Ctrl + L - + Enable &Keyboard Shortcuts 启用键快捷键(&K) - + Toggles keyboard shortcuts on or off 键盘快捷键开关 - + Ctrl+` 按 Ctrl +' - + &Preferences 首选项(&P) - + Change Mixxx settings (e.g. playback, MIDI, controls) 改變 Mixxx 的設置 (例如播放 MIDI,控制項) - + &Developer 與開發人員 - + &Reload Skin 重载皮肤(&R) - + Reload the skin 重新載入皮膚 - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools 开发者工具(&T) - + Opens the developer tools dialog 打開開發人員工具對話方塊 - + Ctrl+Shift+T Ctrl + Shift + T - + Stats: &Experiment Bucket 統計: & 實驗鬥 - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. 使實驗模式。收集統計實驗跟蹤存儲桶中。 - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket 統計: & 基地鬥 - + Enables base mode. Collects stats in the BASE tracking bucket. 启用基础模式。统计数据将会收集到基础跟踪桶中。 - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled 调试器已启用(&U) - + Enables the debugger during skin parsing 在皮膚分析過程中啟用調試器 - + Ctrl+Shift+D 按 Ctrl + Shift + D - + &Help 與説明 - + Show Keywheel menu title 显示 Keywheel @@ -15999,74 +16542,74 @@ This can not be undone! 将库导出为 Engine DJ 格式 - + Show keywheel tooltip text 显示 Keywheel - + F12 Menubar|View|Show Keywheel F12 - + &Community Support 社区帮助(&C) - + Get help with Mixxx 獲得 Mixxx 的説明 - + &User Manual 與使用者手冊 - + Read the Mixxx user manual. 閱讀 Mixxx 使用者手冊。 - + &Keyboard Shortcuts 键盘快捷键(&K) - + Speed up your workflow with keyboard shortcuts. 加快您的工作流使用鍵盤快速鍵。 - + &Settings directory &设置目录 - + Open the Mixxx user settings directory. 打开 Mixxx 用户设置目录。 - + &Translate This Application 翻译这个程序(&T) - + Help translate this application into your language. 幫忙翻譯成您的語言此應用程式。 - + &About 关于(&A) - + About the application 有關應用程式 @@ -16074,25 +16617,25 @@ This can not be undone! WOverview - + 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 完成处理 ... @@ -16101,25 +16644,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - 清除輸入 - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun 搜索 - + Clear input 清除輸入 @@ -16130,93 +16661,87 @@ This can not be undone! 搜索... - + Clear the search bar input field 清除搜索栏输入字段 - - Enter a string to search for - 輸入要搜索的字串 + + Return + 返回 - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - 使用运算符,如 bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - 有关更多信息,请参阅 Mixxx Library >用户手册 + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - 快捷方式 + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - 焦點 + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl + 倒退鍵 + + Additional Shortcuts When Focused: + - Shortcuts - 快捷方式 + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - 返回 + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - 在键入时搜索超时之前触发搜索,或在之后跳转到轨道视图 + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl + 空格键 - + Toggle search history Shows/hides the search history entries 切换搜索历史记录 - + Delete or Backspace 删除或退格 - - Delete query from history - 从历史记录中删除查询 - - - - Esc - 按 esc 鍵 + + in search history + - - Exit search - Exit search bar and leave focus - 退出搜索 + + Delete query from history + 从历史记录中删除查询 @@ -16300,627 +16825,642 @@ This can not be undone! WTrackMenu - + Load to 载入到 - + Deck 甲板上 - + Sampler 取樣器 - + Add to Playlist 添加到播放列表 - + Crates 分类列表 - + Metadata 元数据 - + Update external collections 更新外部集合 - + Cover Art 封面 - + Adjust BPM 调节 BPM - + Select Color 选择颜色 - - + + Analyze 分析 - - + + Delete Track Files 删除音轨数据 - + Add to Auto DJ Queue (bottom) 添加至自动 DJ 队列(底部) - + Add to Auto DJ Queue (top) 添加至自动 DJ 队列(顶部) - + Add to Auto DJ Queue (replace) 加入自動 DJ 柱列 (取代) - + Preview Deck 预览碟机 - + Remove 刪除 - + Remove from Playlist 从播放列表中删除 - + Remove from Crate 从播放列表中删除 - + Hide from Library 隱藏從庫 - + Unhide from Library 從圖書館取消隱藏 - + Purge from Library 从媒体库中清除 - + Move Track File(s) to Trash 将轨道文件移至废纸篓 - + Delete Files from Disk 从磁盘中删除文件 - + Properties 属性 - + Open in File Browser 在文件管理器中打开 - + Select in Library 在库中选择 - + Import From File Tags 从文件标签导入 - + Import From MusicBrainz 从 MusicBrainz 导入 - + Export To File Tags 导出文件属性 - + BPM and Beatgrid 拍速和拍格 - + Play Count 播放计数 - + Rating 评分 - + Cue Point 播放點 - - + + Hotcues 即时切点 - + Intro v - + Outro 结尾 - + Key 關鍵 - + ReplayGain 播放音量增益 - + Waveform 波形 - + Comment 备注 - + All 全部 - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPM 鎖 - + Unlock BPM 拍速解锁 - + Double BPM 拍速倍增 - + Halve BPM 減半 BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze 重新分析 - + Reanalyze (constant BPM) 重新分析(恒定 BPM) - + Reanalyze (variable BPM) 重新分析(变量 BPM) - + Update ReplayGain from Deck Gain 更新Deck Gain的ReplayGain - + Deck %1 甲板 %1 - + Importing metadata of %n track(s) from file tags 从文件标签导入 %n 个轨道的元数据 - + Marking metadata of %n track(s) to be exported into file tags 标记要导出到文件标签的 %n 个轨道的数据 - - + + 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) 缩放 %n 个磁道的 BPM - + Undo BPM/beats change of %n track(s) 撤消 BPM/节拍 %n 个轨道的更改 - + Locking BPM of %n track(s) 锁定 %n 个磁道的 BPM - + Unlocking BPM of %n track(s) 解锁 %n 个磁道的 BPM - + Setting rating of %n track(s) 清除 %n 条轨道的评级 - + Setting color of %n track(s) 设置 %n 个轨道的颜色 - + Resetting play count of %n track(s) 重置 %n 个轨道的播放计数 - + Resetting beats of %n track(s) 重置 %n 个轨道的节拍 - + Clearing rating of %n track(s) 清除 %n 条磁道的评级 - + Clearing comment of %n track(s) 正在清除 %n 个轨道的注释 - + Removing main cue from %n track(s) 从 %n 个轨道中删除主提示点 - + Removing outro cue from %n track(s) 从 %n 个轨道中删除结尾提示 - + Removing intro cue from %n track(s) 从 %n 个轨道中删除前奏提示 - + Removing loop cues from %n track(s) 从 %n 个轨道中删除 Loop 提示点 - + Removing hot cues from %n track(s) 从 %n 个轨道中删除热提示 - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) 重置 %n 个轨道的键 - + Resetting replay gain of %n track(s) 重置 %n 个轨道的重放增益 - + Resetting waveform of %n track(s) 重置 %n 个轨道的波形 - + Resetting all performance metadata of %n track(s) 重置 %n 个轨道的所有性能数据 - + Move these files to the trash bin? 将这些文件移动到垃圾箱? - + Permanently delete these files from disk? 从磁盘中永久删除这些文件? - - + + This can not be undone! 此操作无法撤消! - + Cancel 取消 - + Delete Files 删除文件 - + Okay - + Move Track File(s) to Trash? 要把轨道文件移到垃圾桶吗? - + Track Files Deleted 文件已删除 - + Track Files Moved To Trash 已移动到垃圾桶的文件 - + %1 track files were moved to trash and purged from the Mixxx database. %1 轨道文件被移至废纸篓并从 Mixxx 数据库中清除。 - + %1 track files were deleted from disk and purged from the Mixxx database. %1 轨道文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + Track File Deleted 文件已删除 - + Track file was deleted from disk and purged from the Mixxx database. 跟踪文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + The following %1 file(s) could not be deleted from disk 无法从磁盘中删除以下 %1 文件 - + This track file could not be deleted from disk 无法从磁盘中删除此跟踪文件 - + Remaining Track File(s) 剩余轨道文件 - + Close 關閉 - + Clear Reset metadata in right click track context menu in library 清除 - + Loops 循环 - + Clear BPM and Beatgrid 清除 BPM 和节拍样式 - + Undo last BPM/beats change 撤消上次 BPM/节拍更改 - + Move this track file to the trash bin? 把这个轨道文件移到垃圾桶吗? - + Permanently delete this track file from disk? 永久删除这个轨道文件吗? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. 加载这些轨道的所有卡盘都将停止,轨道将被弹出。 - + All decks where this track is loaded will be stopped and the track will be ejected. 加载此轨道的所有卡盘都将停止,轨道将被弹出。 - + Removing %n track file(s) from disk... 正在从磁盘中删除 %n 个磁道文件... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. 注意:如果您位于 Computer 或 Recording 视图中,则需要再次单击当前视图才能看到更改。 - + Track File Moved To Trash 文件已移至垃圾桶 - + Track file was moved to trash and purged from the Mixxx database. 跟踪文件已移至回收站并从 Mixxx 数据库中清除。 - + Don't show again during this session - + The following %1 file(s) could not be moved to trash 以下 %1 文件无法移至回收站 - + This track file could not be moved to trash 无法将此跟踪文件移至回收站 + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) 设置 %n 个轨道的封面艺术 - + Reloading cover art of %n track(s) 重新加载 %n 个轨道的封面艺术 @@ -16974,37 +17514,37 @@ This can not be undone! WTrackTableView - + Confirm track hide 确认轨道隐藏 - + Are you sure you want to hide the selected tracks? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from AutoDJ queue? 您确定要从 AutoDJ 队列中删除选定的曲目吗? - + Are you sure you want to remove the selected tracks from this crate? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from this playlist? 您确定要从此播放列表中删除选定的曲目吗? - + Don't ask again during this session 在此会话期间不要再次询问 - + Confirm track removal 确认轨道移除 @@ -17012,12 +17552,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. 显示或隐藏列。 - + Shuffle Tracks @@ -17055,22 +17595,22 @@ This can not be undone! 媒体库 - + 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. @@ -17228,6 +17768,24 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 网络请求尚未启动 + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17236,4 +17794,27 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 未加载效果器。 + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_zh_CN.qm b/res/translations/mixxx_zh_CN.qm index 94600db8c5d8..0cc96ee3afd2 100644 Binary files a/res/translations/mixxx_zh_CN.qm and b/res/translations/mixxx_zh_CN.qm differ diff --git a/res/translations/mixxx_zh_CN.ts b/res/translations/mixxx_zh_CN.ts index 73c911abf3f6..5323552a8f57 100644 --- a/res/translations/mixxx_zh_CN.ts +++ b/res/translations/mixxx_zh_CN.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates 分类列表 - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue 清除自动 DJ 队列 - + Remove Crate as Track Source 移除为音轨源的分类列表 - + Auto DJ 自动混音 - + Confirmation Clear 确认清除 - + Do you really want to remove all tracks from the Auto DJ queue? 您真的要从 Auto DJ 队列中删除所有曲目吗? - + This can not be undone. 此操作无法撤消。 - + Add Crate as Track Source 添加为音轨源的分类列表 @@ -223,7 +231,7 @@ - + Export Playlist 导出播放列表 @@ -277,13 +285,13 @@ - + Playlist Creation Failed 播放列表创建失败 - + An unknown error occurred while creating playlist: 创建播放列表时发生了一个未知错误: @@ -298,12 +306,12 @@ 您真的要删除播放列表<b>%1</b>吗? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp 时间戳 @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 无法加载音轨。 @@ -362,7 +370,7 @@ 通道 - + Color 颜色 @@ -377,7 +385,7 @@ 作曲家 - + Cover Art 封面图片 @@ -387,7 +395,7 @@ 加入日期 - + Last Played 最后播放 @@ -417,7 +425,7 @@ 调性 - + Location 位置 @@ -427,7 +435,7 @@ - + Preview 预览 @@ -467,7 +475,7 @@ 年份 - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk 獲取圖片中... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. 无法使用安全密码存储:密钥链访问失败。 - + Secure password retrieval unsuccessful: keychain access failed. 安全密码存储提取不成功:密钥链访问失败。 - + Settings error 设置错误 - + <b>Error with settings for '%1':</b><br> <b>'%1' 的设置出现错误:</b><br> @@ -592,7 +600,7 @@ - + Computer 我的电脑 @@ -612,19 +620,19 @@ 扫描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. “我的电脑”可以让您从您的硬盘及外置设备中浏览、查看与加载音轨。 - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + 它显示的是文件标签中的数据,而不是像其他曲目视图那样来自你的 Mixxx 库的曲目数据。 - + If you load a track file from here, it will be added to your library. - + 如果你从这里加载曲目文件,它将被添加到你的库中。 @@ -735,12 +743,12 @@ 文件已创建 - + Mixxx Library Mixxx 音乐库 - + Could not load the following file because it is in use by Mixxx or another application. 无法加载下列文件,因为该文件被 Mixxx 或其它应用程序使用中。 @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx 是一款开源 DJ 软件。有关更多信息请查阅: - + Starts Mixxx in full-screen mode 在打开 Mixxx 时立即进入全屏模式 - + Use a custom locale for loading translations. (e.g 'fr') 使用自定义区域设置来加载翻译语音(例如“法语”)。 - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Mixxx 应在其中查找其资源文件--例如 MIDI 映射--的顶级目录,覆盖默认安装位置。 - + Path the debug statistics time line is written to debug统计数据时间线写入的路径 - + Causes Mixxx to display/log all of the controller data it receives and script functions it loads 使 Mixxx 显示或记录它接收的所有控制器数据和它加载的脚本函数 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! 当检测到控制器 API 的滥用时,控制器映射将发出更积极的警告和错误。 应在启用此选项的情况下开发新的控制器映射! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. 启用开发者模式。包含额外的日志信息、性能统计信息和开发人员工具菜单。 - + Top-level directory where Mixxx should look for settings. Default is: Mixxx 应在其中查找设置的顶级目录。默认值为: - + Starts Auto DJ when Mixxx is launched. 启动Mixxx时自动开始DJ。 - + Rescans the library when Mixxx is launched. - + 在启动 Mixxx 时重新扫描库。 - + Use legacy vu meter 使用老版本的 VU 表 - + Use legacy spinny 使用舊版的旋轉界面 - - Loads experimental QML GUI instead of legacy QWidget skin - 加载实验性的 QML GUI,而不是传统的 QWidget 皮肤 + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. 启用安全模式。这将禁用 OpenGL 波形和黑胶旋转部件。如果 Mixxx 在打开时崩溃,请尝试此选项。 - + [auto|always|never] Use colors on the console output. [自动||无]在控制台输出上使用颜色 - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ 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. 设置将日志缓冲区刷新为mixxx.log的日志级别。是上面在——log级别定义的值之一。 - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. 设置 mixxx.log 文件的最大文件大小(以字节为单位)。使用 -1 表示无限制。默认值为 100 MB,为 1e5 或 100000000。 - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. 如果DEBUG_ASSERT的计算结果为false,则中断(SIGINT) Mixxx。在调试器下,您可以随后继续。 - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. 在启动时加载指定的音乐文件。您指定的每个文件将被加载到下一个碟盘中。 - + Preview rendered controller screens in the Setting windows. 在设置窗口中预览渲染好的控制器屏幕。 @@ -984,2557 +997,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output 耳机输出 - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 碟盘 %1 - + Sampler %1 采样器 %1 - + Preview Deck %1 预览用碟机 %1 - + Microphone %1 耳机 %1 - + Auxiliary %1 辅助器 %1 - + Reset to default 重设为默认值 - + Effect Rack %1 效果器 %1 - + Parameter %1 参数 %1 - + Mixer 混音器 - - + + Crossfader 平滑转换器 - + Headphone mix (pre/main) 耳机混音(单碟机/主输出) - + Toggle headphone split cueing 启用耳机声道分离切入(cueing) - + Headphone delay 耳机延迟 - + Transport 传输 - + Strip-search through track 在音轨中直接查找 - + Play button 播放按钮 - - + + Set to full volume 音量全满 - - + + Set to zero volume 设为音量 0 - + Stop button 停止按钮 - + Jump to start of track and play 跳至歌曲起点播放 - + Jump to end of track 跳至音轨结束点 - + Reverse roll (Censor) button 倒带(轨)键 - + Headphone listen button 耳机监听键 - - + + Mute button 静音按钮 - + Toggle repeat mode 切换循环模式 - - + + Mix orientation (e.g. left, right, center) 声道选择(例如:左声道、右声道、立体声) - - + + Set mix orientation to left 设置输出声道为左声道 - - + + Set mix orientation to center 设置输出声道为立体声 - - + + Set mix orientation to right 设置输出声道为右声道 - + Toggle slip mode 切换剪辑模式 - - + + BPM BPM - + Increase BPM by 1 提升 BPM 1 - + Decrease BPM by 1 减少 1 BPM - + Increase BPM by 0.1 增加 0.1 BPM - + Decrease BPM by 0.1 减少 0.1 BPM - + BPM tap button BPM 敲打按钮 - + Toggle quantize mode 切换数字模式 - + One-time beat sync (tempo only) 一次性节拍同步(仅速度) - + One-time beat sync (phase only) 一次性节拍同步(仅阶段) - + Toggle keylock mode 切换音调锁模式 - + Equalizers 均衡器 - + 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 媒体库 - + Slot %1 槽 %1 - + Headphone Mix 耳机混音 - + Headphone Split Cue 耳机分离选听 - + Headphone Delay 耳机延迟 - + Play 播放 - + Fast Rewind 快退 - + Fast Rewind button 快退按钮 - + Fast Forward 快进 - + Fast Forward button 快进按钮 - + Strip Search 完整搜索 - + Play Reverse 倒退播放 - + Play Reverse button 倒退播放按钮 - + Reverse Roll (Censor) 倒带(轨) - + Jump To Start 跳至音轨起始点 - + Jumps to start of track 跳至音轨起始点 - + Play From Start 从音轨起始点播放 - + Stop 停止 - + Stop And Jump To Start 停止后跳至音轨起始点 - + Stop playback and jump to start of track 停止回放并跳至音轨起始处 - + Jump To End 跳至音轨结束点 - + Volume 音量 - - - + + + Volume Fader 音量调节 - - + + Full Volume 满音量 - - + + Zero Volume 零音量 - + Track Gain 音轨增益 - + Track Gain knob 音轨增益旋钮 - - + + Mute 静音 - + Eject 弹出 - - + + Headphone Listen 耳机监听 - + Headphone listen (pfl) button 耳机监听(pfl)键 - + Repeat Mode 重复模式 - + Slip Mode 滑动模式 - - + + Orientation 定向 - - + + Orient Left 向左 - - + + Orient Center 向中间 - - + + Orient Right 向右 - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM 敲击 - + Adjust Beatgrid Faster +.01 加快节拍(+.01) - + Increase track's average BPM by 0.01 增加音轨BPM 0.01 - + Adjust Beatgrid Slower -.01 减慢节拍(-.01) - + Decrease track's average BPM by 0.01 减少音轨BPM 0.01 - + Move Beatgrid Earlier 提早节拍 - + Adjust the beatgrid to the left 向左移动节拍 - + Move Beatgrid Later 推迟节拍 - + Adjust the beatgrid to the right 向右移动节拍 - + Adjust Beatgrid 调整节拍 - + Align beatgrid to current position 将节拍对齐至当前位置 - + Adjust Beatgrid - Match Alignment 调整节拍 - 匹配对齐 - + Adjust beatgrid to match another playing deck. 调整节拍样式以匹配另一个正在播放的碟机。 - + Quantize Mode 量化模式 - + Sync 同步 - + Beat Sync One-Shot 单次节拍同步 - + Sync Tempo One-Shot 单次速度同步 - + Sync Phase One-Shot 单次相位同步 - + 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 重设音调 - + High EQ 高 EQ - + Mid EQ 中 EQ - - + + Main Output 主输出 - + Main Output Balance 主输出均衡 - + Main Output Delay 主输出延迟 - + Main Output Gain 主输出增益 - + Low EQ 低 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 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 - + Show/hide the microphone & auxiliary section 显示/隐藏麦克风和辅助部分 - + 4 Effect Units Show/Hide 显示/隐藏效果器 - + Switches between showing 2 and 4 effect units 在显示2和4个效果单位之间切换 - + 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 缩小波形 - + Headphone Gain 耳机增益 - + Headphone gain 耳机增益 - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync 点击同步速度(和相位与量化启用),保持启用永久同步 - + One-time beat sync tempo (and phase with quantize enabled) 同步节奏 - + 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) 暂时降低速度(细调) - - + + Adjust %1 调 %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 效果单元 %1 - + Button Parameter %1 旋钮参数% 1 - + Skin 皮肤 - + Controller 控制器 - + Crossfader / Orientation 唱片平滑转换器/方向 - + Main Output gain 主输出增益 - + Main Output balance 主输出均衡 - + Main Output delay 主输出延迟 - + Headphone 耳机 - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" 阻断 %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. 彈出或取消彈出曲目,即重新載入最後彈出的曲目(任何檯面)<br>雙按以重新載入最後替換的曲目。在空檯面上,它將重新載入倒數第二個彈出的曲目。 - + BPM / Beatgrid BPM / 网格 - + Halve BPM BPM 减半 - + Multiply current BPM by 0.5 将当前BPM乘0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 将当前BPM乘0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 将当前BPM乘0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 将当前BPM乘0.666 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 将当前BPM乘1.5 - + Double BPM BPM 加倍 - + Multiply current BPM by 2 1.5倍BPM - + Tempo Tap 节奏敲击 - + Tempo tap button 节奏敲击按钮 - + Move Beatgrid 調整節拍網格 - + Adjust the beatgrid to the left or right 將節拍網格向左或向右調整 - + Move Beatgrid Half a Beat - + 将节拍网格移动半个节拍 - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - + 将节拍网格精确调整半拍。仅适用于节奏恒定的曲目。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/beatgrid 锁 - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - + Sync / Sync Lock 同步/同步锁定 - + Internal Sync Leader 内部同步高音 - + Toggle Internal Sync Leader 切换内部同步高音 - - + + Internal Leader BPM 內部主 BPM - + Internal Leader BPM +1 內部主 BPM +1 - + Increase internal Leader BPM by 1 增加 1 级内置BPM - + Internal Leader BPM -1 內部主 BPM -1 - + Decrease internal Leader BPM by 1 减少 1 级内置BPM - + Internal Leader BPM +0.1 內部主 BPM +0.1 - + Increase internal Leader BPM by 0.1 增加 1 级内置BPM - + Internal Leader BPM -0.1 内置BPM +0.1 - + Decrease internal Leader BPM by 0.1 將內部主導節拍每分鐘減少 0.1 BPM - + Sync Leader 同步高音 - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) 同步模式切换/指示灯(关,低音,高音) - + Speed 速度 - + Decrease Speed (Fine) 減慢速度(微調) - + Pitch (Musical Key) 音高 - + Increase Pitch 升高音调 - + Increases the pitch by one semitone 将音高增加一个半音 - + Increase Pitch (Fine) 增加间距(细) - + Increases the pitch by 10 cents 增加10间距 - + Decrease Pitch 降低音调 - + Decreases the pitch by one semitone 将音高降低一个半音 - + Decrease Pitch (Fine) 减少间距(细) - + Decreases the pitch by 10 cents 将音高降低10间距 - + Keylock 音调锁 - + CUP (Cue + Play) 切入(切入 + 播放) - + Shift cue points earlier 移动提示点 - + Shift cue points 10 milliseconds earlier 将提示点移动10毫秒 - + Shift cue points earlier (fine) 移动提示点(可选) - + Shift cue points 1 millisecond earlier 将提示点移动1毫秒 - + Shift cue points later 稍后移动提示点 - + Shift cue points 10 milliseconds later 10毫秒后移动提示点 - + Shift cue points later (fine) 稍后移动(好) - + Shift cue points 1 millisecond later 1毫秒后移动提示点 - - + + Sort hotcues by position - + 按位置排序热键点 - - + + Sort hotcues by position (remove offsets) - + 按位置排序热键(移除偏移) - + Hotcues %1-%2 - 热切点 + 热切点 %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 激活Cue - + Jump to or set the %1 [intro/outro marker 跳转到热切点 %1 - + Set %1 [intro/outro marker 設定 %1 - + Set or jump to the %1 [intro/outro marker 設定或跳至 %1 - + Clear %1 [intro/outro marker 清除 %1 - + Clear the %1 [intro/outro marker 清除 %1 - + if the track has no beats the unit is seconds 如果轨道没有节拍,则单位为秒 - + 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 %1 Beats set from its end point Loop %1 从结束点开始设置的节拍 - + Loop Roll %1 Beats set from its end point Loop Roll %1 从结束点开始设置的节拍 - + Create %1-beat loop with the current play position as loop end 创建 %1 拍 Loop,并将当前播放位置作为 Loop 结束 - + Create temporary %1-beat loop roll with the current play position as loop end 创建临时的 %1 拍 Loop 滚动,并将当前播放位置作为 Loop 结束 - + Loop Beats 循环节拍 - + Loop Roll Beats 循环滚动节拍 - + Go To Loop In 跳转到循环 - + Go to Loop In button 跳转到循环按钮 - + Go To Loop Out 前往循環終點 - + Go to Loop Out button 前往循環終點按鈕 - + 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 个节拍,或者如果启用了 Loop,则将 Loop 向后移动 %1 个节拍 - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop 向前移动选定的节拍 - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats 向前跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向前移动选定的节拍数 - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop 向后移动选定的节拍 - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats 向后跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向后移动选定的节拍数 - + Beat Jump 跳拍 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position 指示在调整大小时哪个 Loop 标记保持静止或从当前位置继承 - + Beat Jump / Loop Move Forward 节拍跳跃/循环移动 - + Beat Jump / Loop Move Backward 节拍跳跃/循环移动 - + Loop Move Forward 向前移動循環 - + Loop Move Backward 向後移動循環 - + Remove Temporary Loop 移除臨時循環 - + Remove the temporary loop 移除臨時循環 - + 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 键效果一致 - + Sort focused column 將焦點列進行排序 - + Sort the column of the cell that is currently focused, equivalent to clicking on its header 對當前專注的儲存格所在的列進行排序,相當於點擊其標題欄。 - + 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 將所選的搜索歷史項目移動到指定的方向和步驟 - + Clear search 清除搜索 - + Clears the search query 清除搜索查詢 - - + + Select Next Color Available 选择下一个可用颜色 - + Select the next color in the color palette for the first selected track 在调色板中选择第一个选定轨道的下一种颜色 - - + + Select Previous Color Available 选择以前的可用颜色 - + Select the previous color in the color palette for the first selected track 在调色板中选择第一个选定轨道的上一种颜色 - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button 檯面 %1 快速效果啟用按鈕 - + + Quick Effect Enable Button 快速效果啟用按鈕 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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) 切换麦克风闪避模式(关闭/自动/手动) - + 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 显示/隐藏采样器区域 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator 麦克风和辅助显示/隐藏 - + Waveform Zoom Reset To Default 將波形縮放重置為預設值 - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms 將波形縮放級別重置為首選項 -> 波形 中選擇的預設值 - + Select the next color in the color palette for the loaded track. 在调色板中选择加载轨道的下一种颜色。 - + Select previous color in the color palette for the loaded track. 在加载的轨道的调色板中选择上一种颜色。 - + Navigate Through Track Colors 浏览轨道颜色 - + Select either next or previous color in the palette for the loaded track. 选择调色板中加载轨道的下一个或上一个颜色 - + Start/Stop Live Broadcasting 開始/停止直播 - + Stream your mix over the Internet. 将您的混音结果以流的形式发送到互联网。 - + Start/stop recording your mix. 開始/停止錄製您的混音。 - - + + + Deck %1 Stems + + + + + 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 將曲目評分減少一顆星 @@ -3547,6 +3588,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - Above + Profiling messages 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. 控制器“%1”的映射工作不正常。 - + The script code needs to be fixed. 脚本代码需要被修复。 @@ -3682,27 +3876,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem 控制器映射文件问题 - + The mapping for controller "%1" cannot be opened. 无法打开控制器“%1”的映射。 - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. 在问题得到解决之前,此控制器映射提供的功能将被禁用。 - + File: 文件: - + Error: 错误: @@ -3735,7 +3929,7 @@ trace - Above + Profiling messages - + Lock 锁定 @@ -3765,7 +3959,7 @@ trace - Above + Profiling messages 自动 DJ 音轨源 - + Enter new name for crate: 输入分类列表的新名称: @@ -3782,22 +3976,22 @@ trace - Above + Profiling messages 导入分类列表 - + Export Crate 导出分类列表 - + Unlock 解锁 - + An unknown error occurred while creating crate: 在创建分类列表时发生未知错误: - + Rename Crate 重命名分类列表 @@ -3807,28 +4001,28 @@ trace - Above + Profiling messages 为你的下场表演、最喜爱的音轨和最常用的歌曲新建分类列表 - + Confirm Deletion 确认删除 - - + + 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) - + M3U Playlist (*.m3u) M3U播放列表 (*.m3u) @@ -3849,17 +4043,17 @@ trace - Above + Profiling messages 随心所欲管理音乐,就用分类列表! - + Do you really want to delete crate <b>%1</b>? 确定删除播放列表<b>%1</b>吗? - + A crate cannot have a blank name. 分类列表名不能命名为空。 - + A crate by that name already exists. 已有相同分类列表名。 @@ -3954,12 +4148,12 @@ trace - Above + Profiling messages 早期贡献者 - + Official Website 官方网站 - + Donate 捐献 @@ -4763,122 +4957,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + 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 - + Automatic 自动 - + Mono 启用 - + Stereo 立体声 - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed 操作失败 - + You can't create more than %1 source connections. 你不能创建超过 %1 个源连接。 - + Source connection %1 源连接 %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. 至少需要一个源连接。 - + Are you sure you want to disconnect every active source connection? 是否确实要断开每个活动的源连接? - - + + Confirmation required 需要确认 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' 和 '%2' 有相同的 Icecast 挂载点。两个连接到同一服务器的源,挂载点相同的情况下不能同时启用。 - + Are you sure you want to delete '%1'? 是否确实要删除“%1”? - + Renaming '%1' 重命名 '%1' - + New name for '%1': '%1' 的新名称: - + Can't rename '%1' to '%2': name already in use 无法将 '%1' 重命名为 '%2':名称已被使用 @@ -4891,27 +5102,27 @@ Two source connections to the same server that have the same mountpoint can not 实况直播选项 - + Mixxx Icecast Testing Mixxx Icecast 测试 - + Public stream 公共流 - + http://www.mixxx.org http://www.mixxx.org - + Stream name 流名称 - + 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. 由于部分流客户端的软件缺陷,动态更新 Ogg Vorbis 元数据可能导致听众无法正常收听和连接。若确定更新,请勾选此框。 @@ -4951,67 +5162,72 @@ Two source connections to the same server that have the same mountpoint can not %1 的设置 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. 动态更新 Ogg Vorbis 元数据。 - + ICQ ICQ - + AIM AIM - + Website 主页 - + Live mix 现场混音 - + IRC IRC - + Select a source connection above to edit its settings here 在上面选择一个源连接以在此处编辑其设置 - + Password storage 密码存储方式 - + Plain text 明文 - + Secure storage (OS keychain) 安全存储区(系统钥匙链) - + Genre 流派 - + Use UTF-8 encoding for metadata. 对元数据使用 UTF-8编码。 - + Description 描述 @@ -5037,42 +5253,42 @@ Two source connections to the same server that have the same mountpoint can not 通道 - + Server connection 服务器链接 - + Type 类型 - + Host 主机 - + Login 用户名 - + Mount 挂载 - + Port 端口 - + Password 密码 - + Stream info 流信息 @@ -5082,17 +5298,17 @@ Two source connections to the same server that have the same mountpoint can not 元数据 - + Use static artist and title. 使用静态的艺术家名称和标题 - + Static title 静态标题 - + Static artist 静态艺术家名称 @@ -5151,13 +5367,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number 按 hotcue 编号 - + Color 颜色 @@ -5202,132 +5419,137 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + 启用关键颜色 - + Key palette - + 快捷调色板 DlgPrefController - + Apply device settings? 应用设备设置吗? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? 在开始学习向导前,必须应用相关设置。 是否应用设置并继续? - + None - + %1 by %2 %1 / %2 - + Mapping has been edited 映射已编辑 - + Always overwrite during this session 在此会话期间始终覆盖 - + Save As 另存为 - + Overwrite 覆盖 - + Save user mapping 保存用户映射 - + Enter the name for saving the mapping to the user folder. 输入用于将映射保存到用户文件夹的名称。 - + Saving mapping failed 保存映射失败 - + A mapping cannot have a blank name and may not contain special characters. 映射不能具有空白名称,并且不能包含特殊字符。 - + A mapping file with that name already exists. 具有该名称的映射文件已存在。 - + Do you want to save the changes? 是否要保存更改? - + Troubleshooting 故障排除 - + <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>. 如果使用此映射,则控制器可能无法正常工作。请选择其他映射或禁用控制器。此映射专为较新的 Mixxx 控制器引擎而设计,不能用于您当前的 Mixxx 安装。您的 Mixxx 安装的 Controller Engine 版本为 %1。此映射需要 Controller Engine 版本 >= %2。有关更多信息,请访问有关 Controller Engine 版本的 wiki 页面。 - + Mapping already exists. 映射已存在。 - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b>已存在于用户映射文件夹中.<br>覆盖还是用新名称保存? - + Clear Input Mappings 清除输入映射 - + Are you sure you want to clear all input mappings? 您确定要清除所有的输入映射吗? - + Clear Output Mappings 清除输出映射 - + Are you sure you want to clear all output mappings? 您确定要清除所有的输出映射吗? @@ -5345,100 +5567,105 @@ Apply settings and continue? 已启用 - - Device Info + + Refresh mapping list - + + Device Info + 设备信息 + + + Physical Interface: - + 物理接口: - + Vendor name: - + 供应商名称: - + Product name: - + 产品名称: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: 描述: - + Support: 支持: - + Screens preview - + Input Mappings 输入映射 - - + + Search 搜索 - - + + Add 新增 - - + + Remove 删除 @@ -5458,17 +5685,17 @@ Apply settings and continue? 加载映射: - + Mapping Info 映射信息 - + Author: 作者: - + Name: 名称: @@ -5478,28 +5705,28 @@ Apply settings and continue? 学习向导(仅用于 MIDI) - + Data protocol: - + Mapping Files: 映射文件: - + Mapping Settings - - + + Clear All 全部清除 - + Output Mappings 输入映射 @@ -5514,21 +5741,21 @@ 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 使用“映射”将来自控制器的消息连接到 Mixxx 中的控件。如果您在单击左侧边栏上的控制器时在“加载映射”菜单中没有看到控制器的映射,您可以从 %1 在线下载一个。将 XML (.xml) 和 Javascript (.js) 文件放在“用户映射文件夹”中,然后重新启动 Mixxx。如果您下载 ZIP 文件中的映射,请将 XML 和 Javascript 文件从 ZIP 文件解压到您的“用户映射文件夹”,然后重新启动 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + MIDI Mapping File Format MIDI 映射文件格式 - + MIDI Scripting with Javascript 使用 Javascript 编写 MIDI 脚本 @@ -5658,6 +5885,16 @@ Apply settings and continue? Multi-Sampling 多重采样 + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5687,137 +5924,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx 模式 - + Mixxx mode (no blinking) Mixxx 模式(无闪烁) - + Pioneer mode Pioneer 模式 - + Denon mode Denon 模式 - + Numark mode Numark 模式 - + CUP mode 切播模式 - + mm:ss%1zz - Traditional mm:ss%1zz - 繁体 - + mm:ss - Traditional (Coarse) mm:ss - 传统 (粗) - + s%1zz - Seconds s%1zz - 秒 - + sss%1zz - Seconds (Long) sss%1zz - 秒(长) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - 千秒 - + Intro start 入门 - + Main cue 主要提示 - + First hotcue 第一个 hotcue - + First sound (skip silence) 第一个声音 (跳过静音) - + Beginning of track 轨道起点 - + Reject 拒绝 - + Allow, but stop deck 允许,但停止甲板 - + Allow, play from load point 允许,从加载点播放 - + 4% 4% - + 6% (semitone) 6%半音 - + 8% (Technics SL-1210) 8%(Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6266,62 +6503,62 @@ 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 播放时防止屏幕保护程序运行 - + Disabled 禁用 - + 2x MSAA 2倍采样抗锯齿 - + 4x MSAA 4倍采样抗锯齿 - + 8x MSAA 8倍采样抗锯齿 - + 16x MSAA 16倍采样抗锯齿 - + This skin does not support color schemes 该皮肤不支持色彩方案 - + Information 信息 - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. 在新的区域设置、缩放或多重采样设置生效之前,必须重新启动Mixxx。 @@ -6548,37 +6785,37 @@ and allows you to pitch adjust them for harmonic mixing. 有关详细信息,请参阅手册 - + 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 扫描 - + Item is not a directory or directory is missing 项目不是目录或目录缺失 - + 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> @@ -6589,32 +6826,62 @@ 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 将音乐目录链接至新位置 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font 选择音乐库字体 @@ -6664,262 +6931,267 @@ and allows you to pitch adjust them for harmonic mixing. 启动时重新扫描目录 - + Audio File Formats 音频文件格式 - + Track Table View 轨道视图 - + Track Double-Click Action: 轨道双击操作: - + BPM display precision: BPM 显示精度: - + Session History 工作階段紀錄 - + Track duplicate distance 跟踪重复距离 - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime 再次播放轨道时,仅当同时播放了 N 个以上的其他轨道时,才会将其记录到会话历史记录中 - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. 少于 N 首曲目的历史播放列表将被删除注意:清理将在 Mixxx 启动和关闭期间进行。 - + Delete history playlist with less than N tracks 删除少于 N 首曲目的历史播放列表 - + Library Font: 音乐库字体: - + + Show scan summary dialog + + + + Grey out played tracks 灰显播放的曲目 - + Track Search 轨迹搜索 - + Enable search completions 启用搜索补全 - + Enable search history keyboard shortcuts 启用搜索历史记录键盘快捷键 - + Percentage of pitch slider range for 'fuzzy' BPM search: “模糊”BPM 搜索范围: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks 此范围将通过搜索框用于“模糊”BPM 搜索 (~bpm:),以及用于 Search related Tracks > Track 上下文菜单中的 BPM 搜索 - + Preferred Cover Art Fetcher Resolution 首选封面图片提取程序分辨率 - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. 使用从 Musicbrainz 导入数据 从 coverartarchive.com 中获取封面。 - + Note: ">1200 px" can fetch up to very large cover arts. 注意:“>1200 px”最多可以获取非常大的封面。 - + >1200 px (if available) >1200 像素(如果可用) - + 1200 px (if available) 1200 像素(如果可用) - + 500 px 500像素 - + 250 px 250像素 - + Settings Directory 设置目录 - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Mixxx 设置目录包含库数据库、各种配置文件、日志文件、轨道分析数据以及自定义控制器映射。 - + Edit those files only if you know what you are doing and only while Mixxx is not running. 仅当您知道自己在做什么时,并且仅在 Mixxx 未运行时编辑这些文件。 - + Open Mixxx Settings Folder 打开 Mixxx 设置文件夹 - + Library Row Height: 音乐库行高: - + Use relative paths for playlist export if possible 请尽量使用相对路径来导出播放列表 - + ... ... - + px px - + Synchronize library track metadata from/to file tags 从文件标签同步库轨道数据/与文件标签同步 - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library 自动将修改后的轨道元数据从库写入文件标签,并将元数据从更新的文件标签重新导入到库中 - + Synchronize Serato track metadata from/to file tags (experimental) 从/到文件标签同步 Serato 跟踪元数据(实验性) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. 使轨道颜色、节拍网格、bpm 锁定、提示点和 Loop 与 SERATO_MARKERS/MARKERS2 文件标签保持同步。<br/><br/>警告:启用此选项还会在 Mixxx 之外修改文件后重新导入 Serato 元数据。重新导入时,Mixxx 中的现有元数据将替换为文件标签中的数据。文件标签中未包含的自定义元数据(如循环颜色)将丢失。 - + Edit metadata after clicking selected track 单击所选轨道后编辑数据 - + Search-as-you-type timeout: 键入时搜索超时: - + ms ms - + Load track to next available deck 将音轨载入下一个可用碟机 - + External Libraries 外部库 - + You will need to restart Mixxx for these settings to take effect. 您需要重启 Mixxx 以便这些设置生效。 - + Show Rhythmbox Library 显示Rhythmbox音乐库 - + Track Metadata Synchronization / Playlists 轨道数据同步/播放列表 - + Add track to Auto DJ queue (bottom) 将轨道添加到 Auto DJ 队列(底部) - + Add track to Auto DJ queue (top) 将轨道添加到 Auto DJ 队列(顶部) - + Ignore 忽略 - + Show Banshee Library 显示Banshee音乐库 - + Show iTunes Library 显示iTunes音乐库 - + Show Traktor Library 显示Traktor音乐库 - + Show Rekordbox Library 显示 Recordbox 库 - + Show Serato Library 显示 Serato 库 - + All external libraries shown are write protected. 所有显示的外部库均为写保护模式。 @@ -7258,39 +7530,39 @@ 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 - + 所有设置都会在下一次轨道加载时生效。当前加载的轨迹不受影响。有关这些设置的说明,请参阅 %1 DlgPrefRecord - + Choose recordings directory 选择录音目录 - - + + Recordings directory invalid 录制文件目录无效 - + Recordings directory must be set to an existing directory. 录制目录必须设置为现有目录。 - + Recordings directory must be set to a directory. Recordings directory (录制文件目录) 必须设置为目录。 - + Recordings directory not writable 录制文件目录不可写 - + You do not have write access to %1. Choose a recordings directory you have write access to. 您没有对 %1 的写入权限。选择您具有写入权限的录制文件目录。 @@ -7308,43 +7580,55 @@ and allows you to pitch adjust them for harmonic mixing. 浏览... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality 品质 - + Tags 标签 - + Title 标题 - + Author 作者 - + Album 专辑 - + Output File Format 输出文件格式 - + Compression 压缩 - + Lossy 有损 @@ -7359,12 +7643,12 @@ and allows you to pitch adjust them for harmonic mixing. 目录: - + Compression Level 压缩级别 - + Lossless 无损 @@ -7497,172 +7781,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 赫兹 - + Default (long delay) 默认(长延迟) - + Experimental (no delay) 试验(无延迟) - + Disabled (short delay) 禁用(短延迟) - + Soundcard Clock 声卡时钟 - + Network Clock 网络时钟 - + Direct monitor (recording and broadcasting only) 直接监视器(仅限录制和广播) - + Disabled 禁用 - + Enabled 已启用 - + Stereo 立体声 - + Mono 启用 - + To enable Realtime scheduling (currently disabled), see the %1. 要启用实时计划(当前已禁用),请参阅 %1。 - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 列出了您可能需要考虑使用 Mixxx 的声卡和控制器。 - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) 自动(<= 1024 帧/周期) - + 2048 frames/period 2048 帧/周期 - + 4096 frames/period 4096 帧/周期 - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. 测量往返延迟,并在上方输入麦克风延迟补偿以对齐麦克风计时。 - + Refer to the Mixxx User Manual for details. 細節請參考Mixxx 使用者操作手冊 - + Configured latency has changed. 配置的延迟已更改。 - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. 重新测量往返延迟,并将其输入到麦克风延迟补偿上方,以调整麦克风定时。 - + Realtime scheduling is enabled. 已启用实时调度。 - + Main output only 仅主输出 - + Main and booth outputs 主输出和展位输出 - + %1 ms %1 ms - + Configuration error 配置错误 @@ -7729,17 +8018,22 @@ The loudness target is approximate and assumes track pregain and main output lev ms - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 20 ms - + Buffer Underflow Count 缓冲区下溢计数 - + 0 0 @@ -7764,12 +8058,12 @@ The loudness target is approximate and assumes track pregain and main output lev 输入 - + System Reported Latency 系统报告的延迟 - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. 若下溢计数持续增加,或者您听到“啪啪”声,请增大您的音频缓冲区。 @@ -7799,7 +8093,7 @@ The loudness target is approximate and assumes track pregain and main output lev 提示与诊断 - + Downsize your audio buffer to improve Mixxx's responsiveness. 若需提升 Mixxx 的响应速度,请降低您的音频缓冲区大小。 @@ -7846,7 +8140,7 @@ The loudness target is approximate and assumes track pregain and main output lev 唱盘配置 - + Show Signal Quality in Skin 在皮肤中显示信号质量 @@ -7882,46 +8176,51 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 碟盘1 - + Deck 2 碟盘2 - + Deck 3 碟盘3 - + Deck 4 碟盘4 - + Signal Quality 信号质量 - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax 由xwax提供技术支持 - + Hints 提示 - + Select sound devices for Vinyl Control in the Sound Hardware pane. 在声音硬件面板中可以选择唱盘需要控制的声音设备。 @@ -7929,58 +8228,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered 筛选 - + HSV HSV - + RGB RGB - + Top 返回页首 - + Center 中心 - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL不可用 - + dropped frames 丢帧 - + Cached waveforms occupy %1 MiB on disk. 缓存的波形占用了 %1 MB 磁盘空间。 @@ -7998,22 +8297,17 @@ The loudness target is approximate and assumes track pregain and main output lev 帧率 - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. 显示当前平台所支持的 OpenGL 版本。 - - Normalize waveform overview - 归一化波形概览 - - - + Average frame rate 平均帧率 @@ -8029,7 +8323,7 @@ The loudness target is approximate and assumes track pregain and main output lev 默认缩放比例 - + Displays the actual frame rate. 显示实际帧率。 @@ -8064,7 +8358,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show minute markers on waveform overview @@ -8109,7 +8403,7 @@ The loudness target is approximate and assumes track pregain and main output lev 全局视觉增益 - + 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. 选择波形的显示样式,其主要区别在于显示在波形中的细节多少。 @@ -8177,22 +8471,22 @@ Select from different types of displays for the waveform, which differ primarily pt - + Caching 缓存 - + 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 会在第一次载入音轨时在磁盘上缓存其波形。这将会减少实时播放时的 CPU 负荷,但需要额外的磁盘空间。 - + Enable waveform caching 启用波形缓存 - + Generate waveforms when analyzing library 分析库时生成波形 @@ -8208,7 +8502,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8238,12 +8532,58 @@ Select from different types of displays for the waveform, which differ primarily 将波形上的播放标记位置向左、向右或居中移动(默认)。 - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms 清除波形缓存 @@ -8735,7 +9075,7 @@ This can not be undone! BPM: - + Location: 位置: @@ -8750,27 +9090,27 @@ This can not be undone! 注视 - + BPM BPM - + Sets the BPM to 75% of the current value. 将 BPM 设置为当前值的 75%。 - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. 将 BPM 设置为当前值的 50%。 - + Displays the BPM of the selected track. 显示所选音轨的 BPM。 @@ -8825,49 +9165,49 @@ This can not be undone! 流派 - + ReplayGain: 播放增益: - + Sets the BPM to 200% of the current value. 将 BPM 设置为当前值的 200%。 - + Double BPM 拍速倍增 - + Halve BPM 拍速倍减 - + Clear BPM and Beatgrid 清除 BPM 和节拍样式 - + Move to the previous item. "Previous" button 移动至前一项。 - + &Previous 上一首(&P) - + Move to the next item. "Next" button 移动至后一项。 - + &Next 下一首(&N) @@ -8892,12 +9232,12 @@ This can not be undone! 颜色 - + Date added: 添加日期: - + Open in File Browser 在文件管理器中打开 @@ -8907,12 +9247,17 @@ This can not be undone! 采样率: - + + Filesize: + + + + Track BPM: 音轨 BPM: - + 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. @@ -8921,90 +9266,90 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 这样通常能得到质量更高的节拍网格,但对有节奏变化的音轨效果不佳。 - + Assume constant tempo 假定速度恒定 - + Sets the BPM to 66% of the current value. 将 BPM 设置为当前值的 66%。 - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. 将 BPM 设置为当前值的 150%。 - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. 将 BPM 设置为当前值的 133%。 - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. 用点击操作来打拍子,并据此速度来设置 BPM。 - + Tap to Beat 打拍子 - + Hint: Use the Library Analyze view to run BPM detection. 提示: 使用音乐库分析视图运行 BPM 检测。 - + Save changes and close the window. "OK" button 保存更改并关闭窗口。 - + &OK 确认(&O) - + Discard changes and close the window. "Cancel" button 丢弃更改并关闭窗口。 - + Save changes and keep the window open. "Apply" button 保存更改,且不关闭窗口。 - + &Apply 应用(&A) - + &Cancel 取消(&C) - + (no color) (无颜色) @@ -9161,7 +9506,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 确认(&O) - + (no color) (无颜色) @@ -9363,27 +9708,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch(更快) - + Rubberband (better) Rubberband(更好) - + Rubberband R3 (near-hi-fi quality) 接近高保真质量 - + Unknown, using Rubberband (better) 未知,使用更好 - + Unknown, using Soundtouch 未知,使用 Soundtouch @@ -9598,15 +9943,15 @@ 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 @@ -9618,57 +9963,57 @@ Shown when VuMeter can not be displayed. Please keep 支持。 - + activate 启用 - + toggle 切换 - + right - + left - + right small 右小 - + left small 左小 - + up - + down - + up small 上小 - + down small 下小 - + Shortcut 快捷键 @@ -9676,37 +10021,37 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. 此目录或父目录已位于您的库中。 - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies 此目录或列出的目录不存在或无法访问。 中止操作以避免库不一致 - - + + This directory can not be read. 无法读取此目录。 - + An unknown error occurred. Aborting the operation to avoid library inconsistencies 发生未知错误。 中止操作以避免库不一致 - + Can't add Directory to Library 无法将目录添加到库 - + Could not add <b>%1</b> to your library. %2 @@ -9715,27 +10060,27 @@ Aborting the operation to avoid library inconsistencies %2 - + Can't remove Directory from Library 无法从库中删除目录 - + An unknown error occurred. 发生未知错误。 - + This directory does not exist or is inaccessible. 此目录不存在或无法访问。 - + Relink Directory 重新链接目录 - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9747,22 +10092,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9900,12 +10245,12 @@ Do you really want to overwrite it? 隐藏音轨 - + Export to Engine DJ 导出到 Engine DJ - + Tracks 音轨 @@ -9913,37 +10258,37 @@ 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 重试 @@ -9953,211 +10298,211 @@ Do you really want to overwrite it? 皮肤 - + Allow Mixxx to hide the menu bar? 允许 Mixxx 隐藏菜单栏? - + Hide Always show the menu bar? 隐藏 - + Always show 始终显示 - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Mixxx 菜单栏是隐藏的,只需按一下<b>Alt 键</b>钥匙。<br><br>点击<b>%1</b>同意。<br><br>点击<b>%2</b>以禁用它,例如,如果您不将 Mixxx 与键盘一起使用。<br><br>您可以随时在 Preferences -> Interface 中更改此设置。<br> - + Ask me again 再问我一次 - - + + 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? 没有为此辅助设备选择输入设备。是否要选择输入设备? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. 您的计算机上未启用直接渲染。<br><br>这意味着波形显示将非常<br><b>速度慢,并且可能会严重占用您的 CPU</b>.要么更新您的<br>配置以启用直接渲染或禁用<br>波形将通过选择 Mixxx 首选项显示在<br>“空”作为“界面”部分的波形显示。 - - - + + + 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 吗? @@ -10173,13 +10518,13 @@ Do you want to select an input device? PlaylistFeature - + Lock 锁定 - - + + Playlists 播放列表 @@ -10189,58 +10534,63 @@ Do you want to select an input device? 随机播放播放列表 - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock 解锁 - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. 播放列表是有序的曲目列表,允许您规划 DJ 集。 - + 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 新建播放列表 @@ -10339,59 +10689,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 生成新节拍样式 @@ -10505,69 +10855,82 @@ Do you want to scan your library for cover files now? 14-位(MSB) - + Main + Audio path indetifier 主要 - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier 耳机 - + Left Bus + Audio path indetifier 左总线 - + Center Bus + Audio path indetifier 中总线 - + Right Bus + Audio path indetifier 右总线 - + Invalid Bus + Audio path indetifier 无效总线 - + Deck + Audio path indetifier 碟盘 - + Record/Broadcast + Audio path indetifier 錄音/廣播 - + Vinyl Control + Audio path indetifier 唱盘控制 - + Microphone + Audio path indetifier 麦克风 - + Auxiliary + Audio path indetifier 辅助 - + Unknown path type %1 + Audio path 路径类型 %1 未知 @@ -10910,47 +11273,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang 宽度 - + Metronome 节拍器 - + + The Mixxx Team - + Adds a metronome click sound to the stream 向流中添加节拍器咔嗒声 - + BPM BPM - + Set the beats per minute value of the click sound 设置咔嗒声的每分钟节拍数值 - + Sync 同步 - + Synchronizes the BPM with the track if it can be retrieved 如果可以检索 Track,则将 BPM 与 Track 同步 - + + Gain - + Set the gain of metronome click sound @@ -11754,14 +12119,14 @@ Fully right: end of the effect period 不支持 OGG 录制。无法初始化 OGG/Vorbis 库。 - - + + encoder failure 编码器故障 - - + + Failed to apply the selected settings. 无法应用所选设置。 @@ -11880,7 +12245,7 @@ Hint: compensates "chipmunk" or "growling" voices Soft Clipping - + Soft Clipping @@ -11899,7 +12264,7 @@ Hint: compensates "chipmunk" or "growling" voices 应用于音频信号的放大量。在更高的级别上,音频将更加分散。 - + Passthrough 直通 @@ -11946,36 +12311,107 @@ Hint: compensates "chipmunk" or "growling" voices 自动补偿增益 - - Makeup - 补偿 + + Makeup + 补偿 + + + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + Auto Makeup 按钮启用自动增益调整以保持输入信号 +以及处理后的输出信号在感知响度上尽可能接近 + + + + Off + 关闭 + + + + On + 打开 + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + 阈值 (dBFS) + + + + + Threshold + 门槛 + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - Auto Makeup 按钮启用自动增益调整以保持输入信号 -以及处理后的输出信号在感知响度上尽可能接近 + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - 关闭 + + Knee (dB) + - - On - 打开 + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - 阈值 (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - 门槛 + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12007,6 +12443,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee (dBFS) + Knee Knee @@ -12017,11 +12454,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee 旋钮用于实现更圆润的压缩曲线 + Attack (ms) + Attack @@ -12034,11 +12473,13 @@ will set in once the signal exceeds the threshold 将在信号超过阈值时设置 + Release (ms) 版本(毫秒) + Release 释放 @@ -12069,12 +12510,12 @@ may introduce a 'pumping' effect and/or distortion. 各种 - + built-in - + missing @@ -12109,42 +12550,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12226,7 +12667,7 @@ may introduce a 'pumping' effect and/or distortion. Hot cues - + 即时切点 @@ -12405,193 +12846,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx遇到一个问题 - + Could not allocate shout_t 无法为 shout_t 分配内存 - + Could not allocate shout_metadata_t 无法为 shout_metadata_t 分配内存 - + Error setting non-blocking mode: 设置非阻塞模式时出错: - + Error setting tls mode: 设置 TLS 模式时出错: - + Error setting hostname! 设置主机名时出错! - + Error setting port! 设置端口时出错! - + Error setting password! 设置密码时出错! - + Error setting mount! 设置挂载点时出错! - + Error setting username! 设置i用户名时出错! - + Error setting stream name! 设置流的名称时出错! - + Error setting stream description! 设置流的描述时出错! - + Error setting stream genre! 设置流的流派时出错! - + Error setting stream url! 设置流的 URL 时出错! - + Error setting stream IRC! 设置流 IRC 时出错! - + Error setting stream AIM! 设置流 AIM 时出错! - + Error setting stream ICQ! 设置流 ICQ 时出错! - + Error setting stream public! 设置公共流错误 - + Unknown stream encoding format! 未知的流编码格式! - + Use a libshout version with %1 enabled 使用启用了 %1 的 libshout 版本 - + 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. 目前不支持使用 Ogg Vorbis 以 96 kHz 进行广播。请尝试不同的采样率或切换到不同的编码。 - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. 有关更多信息,请参阅 https://github.com/mixxxdj/mixxx/issues/5701。 - + Unsupported sample rate 不支持的采样率 - + Error setting bitrate 设置比特率时出错 - + Error: unknown server protocol! 错误:服务器协议未知! - + Error: Shoutcast only supports MP3 and AAC encoders 错误:Shoutcast 仅支持 MP3 和 AAC 编码器 - + Error setting protocol! 设置协议时出错! - + Network cache overflow 网络缓存溢出 - + Connection error 连接错误 - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> 其中一个 Live Broadcasting 连接引发了以下错误:<br><b>连接“%1”出错:</b><br> - + Connection message 连接消息 - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>来自实时广播连接“%1”的消息:</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. 到流服务器的连接中断,且在 %1 次重试之后仍然无法重新连接 - + Lost connection to streaming server. 到流服务器的连接断开 - + Please check your connection to the Internet. 请检查您的互联网连接 - + Can't connect to streaming server 无法连接到流服务器 - + Please check your connection to the Internet and verify that your username and password are correct. 请检查您的互联网连接,并确保用户名和密码正确。 @@ -12599,7 +13040,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered 筛选 @@ -12607,23 +13048,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device 一个设备 - + An unknown error occurred 发生了未知错误 - + Two outputs cannot share channels on "%1" 两个输出无法共享 %1 的通道 - + Error opening "%1" 无法打开 "%1" @@ -12808,7 +13249,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl 蹉碟 @@ -12990,7 +13431,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art 封面图片 @@ -13180,243 +13621,243 @@ may introduce a 'pumping' effect and/or distortion. 启用时,将低频均衡器的增益置为 0。 - + Displays the tempo of the loaded track in BPM (beats per minute). 显示已加载音轨的BPM(拍每分钟)。 - + Tempo 速度 - + Key The musical key of a track 音调 - + BPM Tap BPM 敲击 - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 - + Adjust BPM Down 下调 BPM - + When tapped, adjusts the average BPM down by a small amount. 点击时,将平均 BPM 略微下调。 - + Adjust BPM Up 上调 BPM - + When tapped, adjusts the average BPM up by a small amount. 点击时,将平均 BPM 略微上调。 - + Adjust Beats Earlier 提早节拍 - + When tapped, moves the beatgrid left by a small amount. 点击时,将节拍略微提早。 - + Adjust Beats Later 推迟节拍 - + When tapped, moves the beatgrid right by a small amount. 点击时,将节拍略微推迟。 - + Tempo and BPM Tap 速度和 BPM - + Show/hide the spinning vinyl section. 显示/隐藏唱盘控制器。 - + Keylock 音调锁 - + Toggling keylock during playback may result in a momentary audio glitch. 在回放时切换音高锁定可能会导致音频出现瞬间的噪音(glitch)。 - + Toggle visibility of Loop Controls 切换 Loop Controls 的可见性 - + Toggle visibility of Beatjump Controls 切换 Beatjump 控件的可见性 - + Toggle visibility of Rate Control 切换速率控制的可见性 - + Toggle visibility of Key Controls 切换键控的可见性 - + (while previewing) (预览时) - + Places a cue point at the current position on the waveform. 在波形的当前位置上设置一个切入点。 - + Stops track at cue point, OR go to cue point and play after release (CUP mode). 在切入点处停止,或跳至切入点并在释放后播放(切播模式下)。 - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). 设置切入点(Pioneer/Mixxx 模式下)并在释放后开始播放(切播模式下),或从切入点出开始预览(Denon 模式下)。 - + Is latching the playing state. 正在锁定播放状态。 - + Seeks the track to the cue point and stops. 跳至音轨的切入点,然后停止。 - + Play 播放 - + Plays track from the cue point. 从提示点播放轨道。 - + 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 启用 Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. 点击可将速度同步到其他正在播放的轨道或同步引导。 - + Enable Sync Leader 启用 Sync Leader - + When enabled, this device will serve as the sync leader for all other decks. 启用后,此设备将用作所有其他 Deck 的同步引导。 - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. 当动态速度轨道加载到同步引导界面时,这一点很重要。在这种情况下,其他同步装置将采用不断变化的速度。 - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. 改变音轨回放速度(影响速度和音高)。若启用了音高锁,则仅影响速度。 - + Tempo Range Display 速度范围显示 - + Displays the current range of the tempo slider. 显示速度滑块的当前范围。 - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). 未加载 track 时取消弹出,即重新加载最后弹出的 track (任何卡座)。 - + Delete selected hotcue. 删除选定的 hotcue。 - + Track Comment 轨道评级 - + Displays the comment tag of the loaded track. 显示加载的轨道的注释标签。 - + Opens separate artwork viewer. 打开单独的图稿查看器。 - + Effect Chain Preset Settings Effect Chain 预设设置 - + Show the effect chain settings menu for this unit. 显示本机的 Effect Chain 设置菜单。 - + Select and configure a hardware device for this input 为此输入选择并配置硬件设备 - + Recording Duration 录制时间 @@ -13639,949 +14080,984 @@ may introduce a 'pumping' effect and/or distortion. 在活动时保持较高的播放速度(少量)。 - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap 节奏敲击 - + Rate Tap and BPM Tap Rate Tap 和 BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/节拍网格 锁 - + Tempo and Rate Tap 速度和 BPM - + Tempo, Rate Tap and BPM Tap 速度、速率拍子和 BPM 拍子 - + Shift cues earlier 提前移动提示 - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. 从 Serato 或 Rekordbox 导入的 Shift 提示点(如果它们稍微偏离时间)。 - + Left click: shift 10 milliseconds earlier 左键单击:提前 10 毫秒 Shift - + Right click: shift 1 millisecond earlier 右键单击:提前 1 毫秒 Shift - + Shift cues later 稍后切换提示 - + Left click: shift 10 milliseconds later 左键单击:10 毫秒后 shift - + Right click: shift 1 millisecond later 右键单击:1 毫秒后 Shift - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. 将主输出中所选声道的音频静音。 - + Main mix enable 主混音启用 - + Hold or short click for latching to mix this input into the main output. 按住或短按锁定以将此输入混合到主输出中。 - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. 如果 hotcue 是一个 Loop 提示,则切换 Loop 并跳转到 Loop 是否在播放位置后面。 - + If the play position is inside an active loop, stores the loop as loop cue. 如果播放位置位于活动 Loop 内,则将 Loop 存储为 Loop 提示。 - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers 展开/折叠采样器 - + Toggle expanded samplers view. 切换展开的采样器视图。 - + Displays the duration of the running recording. 显示运行录制的持续时间。 - + Auto DJ is active Auto DJ 处于活动状态 - + Red for when needle skip has been detected. 红色表示检测到跳针。 - + Hot Cue - Track will seek to nearest previous hotcue point. 热切 - 将会定位到上一个(最近的)热切入点。 - + Sets the track Loop-In Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-In Marker. 按住可移动 Loop-In 标记。 - + Jump to Loop-In Marker. 跳转到 Loop-In 标记。 - + Sets the track Loop-Out Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-Out Marker. 按住可移动 Loop-Out Marker。 - + Jump to Loop-Out Marker. 跳转到 Loop-Out Marker。 - + If the track has no beats the unit is seconds. 如果轨道没有节拍,则单位为秒。 - + Beatloop Size Beatloop 大小 - + Select the size of the loop in beats to set with the Beatloop button. 选择 Loop 的大小(以节拍为单位),以使用 Beatloop 按钮进行设置。 - + Changing this resizes the loop if the loop already matches this size. 如果 loop 已经匹配此大小,则更改此 URL 将调整 Loop 的大小。 - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. 将现有 Beatloop 的大小减半,或使用 Beatloop 按钮将下一个 Beatloop 集的大小减半。 - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. 使用 Beatloop 按钮将现有 Beatloop 的大小增加一倍,或将下一个 Beatloop 集的大小增加一倍。 - + Start a loop over the set number of beats. 在设定的节拍数上开始循环。 - + Temporarily enable a rolling loop over the set number of beats. 在设定的节拍数上暂时启用滚动循环。 - + Beatloop Anchor Beatloop 固定点 - + Define whether the loop is created and adjusted from its staring point or ending point. 定义是否从其起始点或终点创建和调整循环。 - + Beatjump/Loop Move Size Beatjump/Loop 移动大小 - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. 选择要跳跃的节拍数,或使用 Beatjump Forward/Backward 按钮移动 Loop。 - + Beatjump Forward Beatjump 向前 - + Jump forward by the set number of beats. 向前跳动设定的节拍数。 - + Move the loop forward by the set number of beats. 将 Loop 向前移动设定的节拍数。 - + Jump forward by 1 beat. 向前跳 1 拍 - + Move the loop forward by 1 beat. 将循环向前移动 1 拍 - + Beatjump Backward 向后跳拍 - + Jump backward by the set number of beats. 向后跳过指定数量的节拍。 - + Move the loop backward by the set number of beats. 将循环向后移动指定数量的节拍。 - + Jump backward by 1 beat. 向后跳 1 拍 - + Move the loop backward by 1 beat. 将循环向后移动 1 拍 - + Reloop 再循环 - + 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. 仅当设置了循环起始和结束位置时才会有效。 - + Enable loop, jump to Loop-In Marker, and stop playback. 启用 loop,跳转到 Loop-In Marker,然后停止播放。 - + Displays the elapsed and/or remaining time of the track loaded. 显示加载跟踪的经过和 (或) 剩余时间。 - + Click to toggle between time elapsed/remaining time/both. 单击可切换时间/剩余时间时间或两者。 - + Hint: Change the time format in Preferences -> Decks. 提示:在 Preferences -> Decks 中更改时间格式。 - + Show/hide intro & outro markers and associated buttons. 显示/隐藏介绍和结尾标记以及相关按钮。 - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker 介绍开始标记 - - - - + + + + If marker is set, jumps to the marker. 如果设置了 marker,则跳转到 marker。 - - - - + + + + If marker is not set, sets the marker to the current play position. 如果未设置 marker,则将 marker 设置为当前播放位置。 - - - - + + + + If marker is set, clears the marker. 如果设置了 marker,则清除 marker。 - + Intro End Marker 介绍结束标记 - + Outro Start Marker 结尾部分开始标记 - + Outro End Marker 结尾部分结束标记 - + Mix 混合 - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit 调整效果器单元的干 (input) 信号与湿 (output) 信号的混合 - + D/W mode: Crossfade between dry and wet D/W 模式:干湿交叉淡入淡出 - + D+W mode: Add wet to dry D+W 模式:从湿到干 - + Mix Mode 混合模式 - + 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. 干/湿模式(交叉线):混合旋钮在干湿之间交叉淡化 使用此选项可通过 EQ 和滤波器效果更改轨道的声音。 - + 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. 干 + 湿模式(平坦干线):混合旋钮将湿添加到干 使用此选项可仅更改带有 EQ 和滤波器效果的效果(湿)信号。 - + Route the main mix through this effect unit. 通过此效果器单元路由主混音。 - + Route the left crossfader bus through this effect unit. 将左侧的交叉推子总线路由到此效果器单元中。 - + Route the right crossfader bus through this effect unit. 将右侧的 Crossfader 总线路由到此效果器单元中 - + Right side active: parameter moves with right half of Meta Knob turn 右侧激活:参数随着 Meta 旋钮的右半部分转动而移动 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin Settings 菜单 - + Show/hide skin settings menu 显示/隐藏皮肤设置菜单 - + Save Sampler Bank 保存采样库 - + Save the collection of samples loaded in the samplers. 保存采样器中加载的样本集合。 - + Load Sampler Bank 加载采样库 - + Load a previously saved collection of samples into the samplers. 将以前保存的样本集合加载到采样器中。 - + Show Effect Parameters 显示效果的参数 - + Enable Effect 启用特效 - + Meta Knob Link 元旋钮链接 - + Set how this parameter is linked to the effect's Meta Knob. 设置此参数如何链接到效果的 Meta 旋钮。 - + Meta Knob Link Inversion 元旋钮链接反演 - + Inverts the direction this parameter moves when turning the effect's Meta Knob. 反转此参数时效果的 Meta 旋钮移动的方向。 - + Super Knob 超级旋钮 - + Next Chain 下一效果器链 - + Previous Chain 上一效果器链 - + Next/Previous Chain 下一个/上一个效果器链 - + Clear 清除 - + Clear the current effect. 清除当前效果。 - + Toggle 切换 - + Toggle the current effect. 切换当前效果。 - + Next 下一首 - + Clear Unit 清除单元 - + Clear effect unit. 清除效果单元。 - + Show/hide parameters for effects in this unit. 显示/隐藏此单元中效果的参数。 - + Toggle Unit 切换单元 - + Enable or disable this whole effect unit. 启用或禁用整个效果单元。 - + Controls the Meta Knob of all effects in this unit together. 同时控制该单元中所有效果的 Meta 旋钮。 - + Load next effect chain preset into this effect unit. 将 next effect chain 预设加载到此效果单元中。 - + Load previous effect chain preset into this effect unit. 将上一个效果链预设加载到此效果单元中。 - + Load next or previous effect chain preset into this effect unit. 将下一个或上一个效果链预设加载到此效果单元中。 - - - - - - - - - + + + + + + + + + Assign Effect Unit 分配效果单元 - + Assign this effect unit to the channel output. 将此效果器单元分配给通道输出。 - + Route the headphone channel through this effect unit. 通过此效果器单元路由耳机通道。 - + Route this deck through the indicated effect unit. 将此 Deck 路由到指定的效果单位。 - + Route this sampler through the indicated effect unit. 将此采样器路由到指示的效果器单元。 - + Route this microphone 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. 还必须将效果单元分配给 Deck 或其他声源才能听到效果。 - + Switch to the next effect. 切换至下一个效果。 - + Previous 上一首 - + Switch to the previous effect. 切换至之前的效果。 - + Next or Previous 下一个或上一个 - + Switch to either the next or previous effect. 切换至下一个或上一个效果。 - + Meta Knob 元旋钮 - + Controls linked parameters of this effect 这种效应的控制链接的参数 - + Effect Focus Button 影响对焦按钮 - + Focuses this effect. 针对这种效果。 - + Unfocuses this effect. Unfocuses 这种效果。 - + Refer to the web page on the Mixxx wiki for your controller for more information. 您的控制器的详细信息,请参阅 Mixxx wiki 上的 web 页。 - + Effect Parameter 效果器参数 - + Adjusts a parameter of the effect. 调整效果器的参数。 - + Inactive: parameter not linked Inactive:参数未链接 - + Active: parameter moves with Meta Knob Active(活动):参数随 Meta 旋钮移动 - + Left side active: parameter moves with left half of Meta Knob turn 左侧激活:参数随着 Meta 旋钮的左半部分转动而移动 - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half 左侧和右侧激活:参数在切换距离时移动,Meta 旋钮的一半转动,另一半转动 - - + + Equalizer Parameter Kill 均衡器参数置零 - - + + Holds the gain of the EQ to zero while active. 启用时,将均衡器的增益设为 0。 - + Quick Effect Super Knob 快捷效果的超级旋钮 - + Quick Effect Super Knob (control linked effect parameters). 快捷效果超级旋钮(控制关联的效果参数)。 - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. 提示:可以在 首选项 -> 均衡器 设置中更改默认的快捷效果模式。 - + Equalizer Parameter 均衡器参数 - + Adjusts the gain of the EQ filter. 调整均衡滤波器的增益。 - + Hint: Change the default EQ mode in Preferences -> Equalizers. 提示:可以在 首选项 -> 均衡器 设置中更改默认的均衡器模式。 - - + + Adjust Beatgrid 调整节拍 - + Adjust beatgrid so the closest beat is aligned with the current play position. 调整节拍样式,使得当前播放位置与周围最近的节拍对齐。 - - + + Adjust beatgrid to match another playing deck. 调整节拍样式以匹配另一个正在播放的碟机。 - + If quantize is enabled, snaps to the nearest beat. 若启用量化,则对齐到最近的节拍。 - + Quantize 量化模式 - + Toggles quantization. 切换量化模式。 - + Loops and cues snap to the nearest beat when quantization is enabled. 若启用量化,循环和切入点将对齐到最近的节拍。 - + Reverse 反向 - + Reverses track playback during regular playback. 在常规的回放模式中,反向播放音轨。 - + Puts a track into reverse while being held (Censor). 按下时,将音轨反向。 - + Playback continues where the track would have been if it had not been temporarily reversed. 在继续播放的同时,将音轨反转(若之前尚未反转的话)。 - - - + + + Play/Pause 播放/暂停 - + Jumps to the beginning of the track. 跳至音轨起始点。 - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. 将速度(BPM)和相位与其他音轨同步(若二者的 BPM 均以被获取)。 - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. 将速度(BPM)与其他音轨同步(若二者的 BPM 均以被获取)。 - + Sync and Reset Key 同步并重置音调 - + Increases the pitch by one semitone. 将音高升高半音。 - + Decreases the pitch by one semitone. 将音高降低半音。 - + Enable Vinyl Control 启用唱盘控制 - + When disabled, the track is controlled by Mixxx playback controls. 若禁用,将由 Mixxx 回放控制器来控制音轨。 - + When enabled, the track responds to external vinyl control. 若启用,则由外部唱盘控制器来控制音轨。 - + Enable Passthrough 启用直通 - + Indicates that the audio buffer is too small to do all audio processing. 指示当前音频缓冲区太小,无法进行完整的音频处理。 - + Displays cover artwork of the loaded track. 显示已加载音轨的封面。 - + Displays options for editing cover artwork. 显示用于编辑封面的选项。 - + Star Rating 开始评分 - + Assign ratings to individual tracks by clicking the stars. 通过选择星星数来给每个专辑打分(评级)。 @@ -14716,33 +15192,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.麦克风闪避强度 - + Prevents the pitch from changing when the rate changes. 当速率改变时,防止音高也改变。 - + Changes the number of hotcue buttons displayed in the deck 更改 Deck 中显示的 hotcue 按钮的数量 - + Starts playing from the beginning of the track. 从音轨起点处开始播放。 - + Jumps to the beginning of the track and stops. 跳至音轨起始点,然后停止。 - - + + Plays or pauses the track. 播放或暂停音轨。 - + (while playing) (播放时) @@ -14762,215 +15238,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.主通道 R 音量表 - + (while stopped) (停止时) - + Cue 切入(Cue) - + Headphone 耳机 - + Mute 静音 - + Old Synchronize 老式同步 - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. 与第一个(按数字顺序)正在播放音轨(且音轨有 BPM 信息)的碟机同步。 - + If no deck is playing, syncs to the first deck that has a BPM. 若没有正在播放的碟机,与第一个有 BPM 信息的碟机同步。 - + Decks can't sync to samplers and samplers can only sync to decks. 无法将碟机与采样器同步,采样器仅能与碟机同步。 - + Hold for at least a second to enable sync lock for this 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. 启用了同步锁定的碟机将会以相同的速度播放;其中启用了量化模式的碟机还会自动同步节拍。 - + Resets the key to the original track key. 重置为音轨的原音调。 - + Speed Control 速度控制 - - - + + + Changes the track pitch independent of the tempo. 保持速度不变的前提下,改变音轨音高。 - + Increases the pitch by 10 cents. 增加 10% 音高。 - + Decreases the pitch by 10 cents. 降低 10% 音高。 - + Pitch Adjust 调整音高 - + Adjust the pitch in addition to the speed slider pitch. 在速度滑块所对应的音高基准上再次调整音高。 - + Opens a menu to clear hotcues or edit their labels and colors. 打开一个菜单以清除 Hotcue 或编辑其标签和颜色。 - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix 录制混音 - + Toggle mix recording. 切换混音录制。 - + Enable Live Broadcasting 启用在线广播 - + Stream your mix over the Internet. 将您的混音结果以流的形式发送到互联网。 - + Provides visual feedback for Live Broadcasting status: 为在线广播的状态提供可视化反馈: - + disabled, connecting, connected, failure. 禁用,正在连接,已连接,失败。 - + When enabled, the deck directly plays the audio arriving on the vinyl input. 若启用,碟机将会直接播放来自唱盘的输入信号。 - + Playback will resume where the track would have been if it had not entered the loop. 若音轨尚未进入循环,则会继续进行回放。 - + Loop Exit 结束循环 - + Turns the current loop off. 关闭当前循环。 - + Slip Mode 滑动模式 - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. 若启用,将会在循环、反向或刮擦的时候将回放信号静音。 - + Once disabled, the audible playback will resume where the track would have been. 禁用之后,将会从音轨即将要播放的地方开始回放。 - + Track Key The musical key of a track 音轨音调 - + Displays the musical key of the loaded track. 显示已加载音轨的音调。 - + Clock 时钟 - + Displays the current time. 显示当前时间。 - + Audio Latency Usage Meter 音频使用延迟指示器 - + Displays the fraction of latency used for audio processing. 显示用于音频处理的延迟分数。 - + A high value indicates that audible glitches are likely. 值越大,表示越可能出现噪音。 - + Do not enable keylock, effects or additional decks in this situation. 在这个情况不要启用音调锁,效果器或者额外的碟机。 - + Audio Latency Overload Indicator 音频延迟过载指示器 @@ -15010,259 +15486,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.可以在 菜单 -> 选项 中启用唱盘控制。 - + Displays the current musical key of the loaded track after pitch shifting. 显示已加载的音轨移调后的当前音高。 - + Fast Rewind 快退 - + Fast rewind through the track. 音轨快退。 - + Fast Forward 快进 - + Fast forward through the track. 音轨快进。 - + Jumps to the end of the track. 跳至音轨结束点。 - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. 选择音调的音高,以便从其他音轨进行和声转换。需要双方碟机均已检测到音调信息。 - - - + + + Pitch Control 音高控制 - + Pitch Rate 音高速率 - + Displays the current playback rate of the track. 显示当前音轨的回放速率。 - + Repeat 重复 - + When active the track will repeat if you go past the end or reverse before the start. 若启用,则会在音轨播放结束或返回音轨起始处时再次播放音轨。 - + Eject 弹出 - + Ejects track from the player. 从播放器中弹出音轨。 - + Hotcue 热切点(Hotcue) - + If hotcue is set, jumps to the hotcue. 若设置了热切,将会跳至热切点。 - + If hotcue is not set, sets the hotcue to the current play position. 若未设置热切,将会在当前播放位置设置一个热切点。 - + Vinyl Control Mode 唱盘控制模式 - + Absolute mode - track position equals needle position and speed. 绝对模式 - 音轨位置与播放指针的位置和速度一致。 - + Relative mode - track speed equals needle speed regardless of needle position. 相对模式 - 音轨速度与播放指针速度一致(无论指针处于哪个位置) - + Constant mode - track speed equals last known-steady speed regardless of needle input. 常量模式 - 音轨速度等于(最近的)已知的稳定速度(无视指针输入)。 - + Vinyl Status 唱盘状态 - + Provides visual feedback for vinyl control status: 为唱盘控制器的状态提供可视化反馈: - + Green for control enabled. 绿色表示已启用控制。 - + Blinking yellow for when the needle reaches the end of the record. 黄色(闪烁)表示播放指针到达记录结尾。 - + Loop-In Marker 循环起始标记 - + Loop-Out Marker 播放结束标记 - + Loop Halve 循环减半 - + Halves the current loop's length by moving the end marker. 移动循环结束标记,使得循环长度减半。 - + Deck immediately loops if past the new endpoint. 在到达新的结束位置后,碟机将会立即循环。 - + Loop Double 循环加倍 - + Doubles the current loop's length by moving the end marker. 移动循环结束标记,使得循环长度加倍。 - + Beatloop 节拍循环 - + Toggles the current loop on or off. 开启或关闭当前循环。 - + Works only if Loop-In and Loop-Out marker are set. 仅当设置了循环起始和结束位置时才会有效。 - + Vinyl Cueing Mode 唱盘Cueing模式 - + Determines how cue points are treated in vinyl control Relative mode: 设置在唱盘控制的相对模式中,如何处理切入点: - + Off - Cue points ignored. 关闭 - 忽略切入点。 - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. 单次切入 - 若取消了切入点后的播放指针,将会定位到此切入点。 - + Track Time 音轨时间 - + Track Duration 音轨长度 - + Displays the duration of the loaded track. 显示已加载的音轨的长度。 - + Information is loaded from the track's metadata tags. 已从音轨的元数据标签中载入 信息。 - + Track Artist 音轨艺术家 - + Displays the artist of the loaded track. 显示音轨的艺术家。 - + Track Title 音轨标题 - + Displays the title of the loaded track. 显示音轨的标题。 - + Track Album 专辑 - + Displays the album name of the loaded track. 显示音轨的专辑名称。 - + Track Artist/Title 音轨艺术家/标题 - + Displays the artist and title of the loaded track. 显示音轨的艺术家和标题。 @@ -15493,47 +15969,75 @@ This can not be undone! WCueMenuPopup - + Cue number 提示编号 - + Cue position 提示位置 - + Edit cue label Edit cue label(编辑提示标签) - + Label... 标签 - + Delete this cue 删除此提示 - - Toggle this cue type between normal cue and saved loop - 在正常提示点和保存的 Loop 之间切换此提示类型 + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - 左键单击:使用旧大小或当前 Beatloop 大小作为 Loop 大小 + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - 右键点击:如果当前播放位置在 cue 之后,则将其用作 Loop 结束 + + Right-click: use current play position as new jump start position + - + Hotcue #%1 热提示 #%1 @@ -15658,323 +16162,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist 新建播放列表(&N) - + Create a new playlist 新建播放列表 - + Ctrl+n Ctrl+N - + Create New &Crate 新建分类列表(&N) - + Create a new crate 创建新分类列表 - + Ctrl+Shift+N Ctrl+Shift+N - - + + &View 查看(&V) - + Auto-hide menu bar 自动隐藏菜单栏 - + Auto-hide the main menu bar when it's not used. 不使用主菜单栏时自动隐藏主菜单栏。 - + May not be supported on all skins. 并非所有皮肤均支持。 - + Show Skin Settings Menu 皮肤设置菜单 - + Show the Skin Settings Menu of the currently selected Skin 显示当前选定皮肤的皮肤设置菜单 - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl+1 - + Show Microphone Section 显示麦克风界面 - + Show the microphone section of the Mixxx interface. 在 Mixxx 内显示麦克风界面。 - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section 显示唱盘控制界面 - + Show the vinyl control section of the Mixxx interface. 在 Mixxx 内显示唱盘控制界面。 - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl+3 - + Show Preview Deck 显示预览用碟机 - + Show the preview deck in the Mixxx interface. 在 Mixxx 内显示显示预览用碟机。 - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art 显示封面 - + Show cover art in the Mixxx interface. 在 Mixxx 内显示封面。 - + Ctrl+6 Menubar|View|Show Cover Art Ctrl+6 - + Maximize Library 最大化音乐库 - + Maximize the track library to take up all the available screen space. 最大化音乐库以占用所有可用的屏幕空间。 - + Space Menubar|View|Maximize Library 空格键 - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen 全屏(&F) - + Display Mixxx using the full screen 全屏模式显示 Mixxx - + &Options 选项(&O) - + &Vinyl Control 唱盘控制(&V) - + Use timecoded vinyls on external turntables to control Mixxx 对外部转盘使用时间编码的唱盘控制,以便控制 Mixxx - + Enable Vinyl Control &%1 启用Vinyl控制 &%1 - + &Record Mix 录制混音(&M) - + Record your mix to a file 将混音输出到文件 - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting 启用在线广播(&B) - + Stream your mixes to a shoutcast or icecast server 将混音通过流输出到 shoutcast 或 icecast 服务器 - + Ctrl+L Ctrl+L - + Enable &Keyboard Shortcuts 启用键快捷键(&K) - + Toggles keyboard shortcuts on or off 键盘快捷键开关 - + Ctrl+` Ctrl+` - + &Preferences 首选项(&P) - + Change Mixxx settings (e.g. playback, MIDI, controls) 改变 Mixxx 设定(回放、MIDI、控制器等) - + &Developer 开发者(&D) - + &Reload Skin 重载皮肤(&R) - + Reload the skin 重新载入皮肤 - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools 开发者工具(&T) - + Opens the developer tools dialog 打开开发者工具对话框 - + Ctrl+Shift+T Ctrl+Shift+T - + Stats: &Experiment Bucket 统计:实验桶(&E) - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. 启用实验模式。统计数据将会收集到实验跟踪桶中。 - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket 统计:基础桶(&B) - + Enables base mode. Collects stats in the BASE tracking bucket. 启用基础模式。统计数据将会收集到基础跟踪桶中。 - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled 调试器已启用(&U) - + Enables the debugger during skin parsing 在解析皮肤时启用调试器 - + Ctrl+Shift+D Ctrl+Shift+D - + &Help 帮助(&H) - + Show Keywheel menu title 显示 Keywheel @@ -15991,74 +16535,74 @@ This can not be undone! 将库导出为 Engine DJ 格式 - + Show keywheel tooltip text 显示 Keywheel - + F12 Menubar|View|Show Keywheel F12 - + &Community Support 社区帮助(&C) - + Get help with Mixxx 获取 Mixxx 帮助 - + &User Manual 用户手册(&U) - + Read the Mixxx user manual. 阅读Mixxx用户手册。 - + &Keyboard Shortcuts 键盘快捷键(&K) - + Speed up your workflow with keyboard shortcuts. 使用键盘快捷键提高你的效率。 - + &Settings directory &设置目录 - + Open the Mixxx user settings directory. 打开 Mixxx 用户设置目录。 - + &Translate This Application 翻译这个程序(&T) - + Help translate this application into your language. 帮助翻译此程序。 - + &About 关于(&A) - + About the application 关于此应用程序 @@ -16066,25 +16610,25 @@ This can not be undone! WOverview - + 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 完成处理 ... @@ -16093,25 +16637,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - 清除输入 - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun 搜索 - + Clear input 清除输入 @@ -16122,93 +16654,87 @@ This can not be undone! 查找... - + Clear the search bar input field 清除搜索栏输入字段 - - Enter a string to search for - 输入要搜索的字符串 + + Return + 返回 - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - 使用运算符,如 bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - 有关更多信息,请参阅 Mixxx Library >用户手册 + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - 快捷键 + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - 焦点 + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl+退格键 + + Additional Shortcuts When Focused: + - Shortcuts - 快捷方式 + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - 返回 + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - 在键入时搜索超时之前触发搜索,或在之后跳转到轨道视图 + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl + 空格键 - + Toggle search history Shows/hides the search history entries 切换搜索历史记录 - + Delete or Backspace 删除或退格 - - Delete query from history - 从历史记录中删除查询 - - - - Esc - Esc + + in search history + - - Exit search - Exit search bar and leave focus - 退出查找 + + Delete query from history + 从历史记录中删除查询 @@ -16292,625 +16818,640 @@ This can not be undone! WTrackMenu - + Load to 载入到 - + Deck 碟盘 - + Sampler 采样 - + Add to Playlist 添加到播放列表 - + Crates 分类列表 - + Metadata 元数据 - + Update external collections 更新外部集合 - + Cover Art 封面图片 - + Adjust BPM 调节 BPM - + Select Color 选择颜色 - - + + Analyze 分析 - - + + Delete Track Files 删除音轨数据 - + Add to Auto DJ Queue (bottom) 添加至自动 DJ 队列(底部) - + Add to Auto DJ Queue (top) 添加至自动 DJ 队列(顶部) - + Add to Auto DJ Queue (replace) 添加至自动 DJ 队列(替换) - + Preview Deck 预览碟机 - + Remove 删除 - + Remove from Playlist 从播放列表中删除 - + Remove from Crate 从播放列表中删除 - + Hide from Library 在媒体库中隐藏 - + Unhide from Library 在媒体库中显示 - + Purge from Library 从媒体库中清除 - + Move Track File(s) to Trash 将轨道文件移至废纸篓 - + Delete Files from Disk 从磁盘中删除文件 - + Properties 属性 - + Open in File Browser 在文件管理器中打开 - + Select in Library 在库中选择 - + Import From File Tags 从文件标签导入 - + Import From MusicBrainz 从 MusicBrainz 导入 - + Export To File Tags 导出文件属性 - + BPM and Beatgrid 拍速和拍格 - + Play Count 播放计数 - + Rating 评分 - + Cue Point 切点 - - + + Hotcues 即时切点 - + Intro v - + Outro 结尾 - + Key 音调 - + ReplayGain 播放音量增益 - + Waveform 波形 - + Comment 备注 - + All 全部 - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM 拍速锁定 - + Unlock BPM 拍速解锁 - + Double BPM 拍速倍增 - + Halve BPM 拍速倍减 - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze 重新分析 - + Reanalyze (constant BPM) 重新分析(恒定 BPM) - + Reanalyze (variable BPM) 重新分析(变量 BPM) - + Update ReplayGain from Deck Gain 更新Deck Gain的ReplayGain - + Deck %1 碟盘 %1 - + Importing metadata of %n track(s) from file tags 从文件标签导入 %n 个轨道的元数据 - + Marking metadata of %n track(s) to be exported into file tags 标记要导出到文件标签的 %n 个轨道的数据 - - + + 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) 缩放 %n 个磁道的 BPM - + Undo BPM/beats change of %n track(s) 撤消 BPM/节拍 %n 个轨道的更改 - + Locking BPM of %n track(s) 锁定 %n 个磁道的 BPM - + Unlocking BPM of %n track(s) 解锁 %n 个磁道的 BPM - + Setting rating of %n track(s) 清除 %n 条轨道的评级 - + Setting color of %n track(s) 设置 %n 个轨道的颜色 - + Resetting play count of %n track(s) 重置 %n 个轨道的播放计数 - + Resetting beats of %n track(s) 重置 %n 个轨道的节拍 - + Clearing rating of %n track(s) 清除 %n 条磁道的评级 - + Clearing comment of %n track(s) 正在清除 %n 个轨道的注释 - + Removing main cue from %n track(s) 从 %n 个轨道中删除主提示点 - + Removing outro cue from %n track(s) 从 %n 个轨道中删除结尾提示 - + Removing intro cue from %n track(s) 从 %n 个轨道中删除前奏提示 - + Removing loop cues from %n track(s) 从 %n 个轨道中删除 Loop 提示点 - + Removing hot cues from %n track(s) 从 %n 个轨道中删除热提示 - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) 重置 %n 个轨道的键 - + Resetting replay gain of %n track(s) 重置 %n 个轨道的重放增益 - + Resetting waveform of %n track(s) 重置 %n 个轨道的波形 - + Resetting all performance metadata of %n track(s) 重置 %n 个轨道的所有性能数据 - + Move these files to the trash bin? 将这些文件移动到垃圾箱? - + Permanently delete these files from disk? 从磁盘中永久删除这些文件? - - + + This can not be undone! 此操作无法撤消! - + Cancel 取消 - + Delete Files 删除文件 - + Okay - + Move Track File(s) to Trash? 要把轨道文件移到垃圾桶吗? - + Track Files Deleted 文件已删除 - + Track Files Moved To Trash 已移动到垃圾桶的文件 - + %1 track files were moved to trash and purged from the Mixxx database. %1 轨道文件被移至废纸篓并从 Mixxx 数据库中清除。 - + %1 track files were deleted from disk and purged from the Mixxx database. %1 轨道文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + Track File Deleted 文件已删除 - + Track file was deleted from disk and purged from the Mixxx database. 跟踪文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + The following %1 file(s) could not be deleted from disk 无法从磁盘中删除以下 %1 文件 - + This track file could not be deleted from disk 无法从磁盘中删除此跟踪文件 - + Remaining Track File(s) 剩余轨道文件 - + Close 关闭 - + Clear Reset metadata in right click track context menu in library 清除 - + Loops 循环 - + Clear BPM and Beatgrid 清除 BPM 和节拍样式 - + Undo last BPM/beats change 撤消上次 BPM/节拍更改 - + Move this track file to the trash bin? 把这个轨道文件移到垃圾桶吗? - + Permanently delete this track file from disk? 永久删除这个轨道文件吗? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. 加载这些轨道的所有卡盘都将停止,轨道将被弹出。 - + All decks where this track is loaded will be stopped and the track will be ejected. 加载此轨道的所有卡盘都将停止,轨道将被弹出。 - + Removing %n track file(s) from disk... 正在从磁盘中删除 %n 个磁道文件... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. 注意:如果您位于 Computer 或 Recording 视图中,则需要再次单击当前视图才能看到更改。 - + Track File Moved To Trash 文件已移至垃圾桶 - + Track file was moved to trash and purged from the Mixxx database. 跟踪文件已移至回收站并从 Mixxx 数据库中清除。 - + Don't show again during this session - + The following %1 file(s) could not be moved to trash 以下 %1 文件无法移至回收站 - + This track file could not be moved to trash 无法将此跟踪文件移至回收站 + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) 设置 %n 个轨道的封面艺术 - + Reloading cover art of %n track(s) 重新加载 %n 个轨道的封面艺术 @@ -16964,37 +17505,37 @@ This can not be undone! WTrackTableView - + Confirm track hide 确认轨道隐藏 - + Are you sure you want to hide the selected tracks? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from AutoDJ queue? 您确定要从 AutoDJ 队列中删除选定的曲目吗? - + Are you sure you want to remove the selected tracks from this crate? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from this playlist? 您确定要从此播放列表中删除选定的曲目吗? - + Don't ask again during this session 在此会话期间不要再次询问 - + Confirm track removal 确认轨道移除 @@ -17002,12 +17543,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. 显示或隐藏列。 - + Shuffle Tracks @@ -17045,22 +17586,22 @@ This can not be undone! 媒体库 - + 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. @@ -17218,6 +17759,24 @@ Mixxx 需要 QT 支持 SQLite。请阅读 Qt SQL 驱动文档以了解相关构 网络请求尚未启动 + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17226,4 +17785,27 @@ Mixxx 需要 QT 支持 SQLite。请阅读 Qt SQL 驱动文档以了解相关构 未加载效果器。 + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_zh_HK.qm b/res/translations/mixxx_zh_HK.qm index b1499a30962f..e55075376233 100644 Binary files a/res/translations/mixxx_zh_HK.qm and b/res/translations/mixxx_zh_HK.qm differ diff --git a/res/translations/mixxx_zh_HK.ts b/res/translations/mixxx_zh_HK.ts index f1b21ebadb57..b55f4fd7d96c 100644 --- a/res/translations/mixxx_zh_HK.ts +++ b/res/translations/mixxx_zh_HK.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,53 +27,53 @@ AutoDJFeature - + Crates 音軌資料夾 - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue 清除自动 DJ 队列 - + Remove Crate as Track Source 從音軌清單删除唱片箱 - + Auto DJ 自動DJ - + Confirmation Clear 确认清除 - + Do you really want to remove all tracks from the Auto DJ queue? 您真的要从 Auto DJ 队列中删除所有曲目吗? - + This can not be undone. 此操作无法撤消。 - + Add Crate as Track Source 加入唱片箱至音軌清單 @@ -232,7 +240,7 @@ - + Export Playlist 匯出播放清單 @@ -286,14 +294,14 @@ - + Playlist Creation Failed 播放清單創建失敗 - + An unknown error occurred while creating playlist: 建立播放清單時發生未知的錯誤︰ @@ -309,12 +317,12 @@ 您真的要删除播放列表%1? - + 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) @@ -322,12 +330,12 @@ BaseSqlTableModel - + # # - + Timestamp 时间标记 @@ -335,7 +343,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入音軌 @@ -373,7 +381,7 @@ 電視頻道 - + Color 颜色 @@ -388,7 +396,7 @@ 作曲家 - + Cover Art 封面 @@ -398,7 +406,7 @@ 加入日期 - + Last Played 最后播放 @@ -428,7 +436,7 @@ 關鍵 - + Location 地點 @@ -438,7 +446,7 @@ - + Preview 預覽 @@ -478,7 +486,7 @@ 年份 - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk 獲取圖片中... @@ -500,22 +508,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. 无法使用安全密码存储: 密钥链访问失败。 - + Secure password retrieval unsuccessful: keychain access failed. 安全密码存储提取不成功: 密钥链访问失败。 - + Settings error 設定失敗 - + <b>Error with settings for '%1':</b><br> <b>設定 '%1' 失敗:</b><br> @@ -603,7 +611,7 @@ - + Computer 我的电脑 @@ -623,19 +631,19 @@ 扫描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. “我的电脑”可以让您从您的硬盘及外置设备中浏览、查看、载入音轨 - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + 它显示的是文件标签中的数据,而不是像其他曲目视图那样来自你的 Mixxx 库的曲目数据。 - + If you load a track file from here, it will be added to your library. - + 如果你从这里加载曲目文件,它将被添加到你的库中。 @@ -746,12 +754,12 @@ 創建檔 - + Mixxx Library mixxx的音樂庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入以下檔案,因為正在被Mixxx或其他程式使用中 @@ -782,88 +790,93 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx是一款开源DJ软件。有关详细信息,请参阅: - + Starts Mixxx in full-screen mode 打开全屏模式 - + Use a custom locale for loading translations. (e.g 'fr') 使用自定义区域设置加载语言。(例如"法语") - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. 在MIXXX中查找相关资源文件如MIDI映射目录,存放在默认文件位置 - + 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 使 Mixxx 显示/记录它接收的所有控制器数据,并为它加载的脚本函数 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! 控制器映射在检测到滥用控制器 API 时会发出更严厉的警告和错误。开发新的控制器映射时应启用该选项! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. 启用开发者模式。包括更多的日志信息、性能统计信息和开发人员工具菜单 - + Top-level directory where Mixxx should look for settings. Default is: Mixxx 应在其中查找设置的顶级目录。默认值为: - + Starts Auto DJ when Mixxx is launched. 启动Mixxx时自动开始DJ。 - + Rescans the library when Mixxx is launched. - + 在启动 Mixxx 时重新扫描库。 - + Use legacy vu meter 使用老版本的 VU 表 - + Use legacy spinny 使用舊版的旋轉界面 - - Loads experimental QML GUI instead of legacy QWidget skin - 加载实验性的 QML GUI,而不是传统的 QWidget 皮肤 + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. 启用安全模式。禁用 OpenGL 波形和旋转的唱片小部件。如果 Mixxx 在启动时崩溃,请尝试此选项 - + [auto|always|never] Use colors on the console output. [自动||无]在控制台输出上使用颜色 - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -878,32 +891,32 @@ 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. 设置将日志缓冲区刷新为mixxx.log的日志级别。是上面在——log级别定义的值之一。 - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. 设置 mixxx.log 文件的最大文件大小(以字节为单位)。使用 -1 表示无限制。默认值为 100 MB,为 1e5 或 100000000。 - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. 如果DEBUG_ASSERT的计算结果为false,则中断(SIGINT) Mixxx。在调试器下,您可以随后继续。 - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. 在启动时加载指定的音乐文件。您指定的每个文件将被加载到下一个碟盘中。 - + Preview rendered controller screens in the Setting windows. 在设置窗口中预览渲染好的控制器屏幕。 @@ -996,2558 +1009,2586 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output 耳机输出 - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 碟盘 %1 - + Sampler %1 采样器 %1 - + Preview Deck %1 预览用碟机 %1 - + Microphone %1 麥克風 %1 - + Auxiliary %1 輔助 %1 - + Reset to default 重设为默认值 - + Effect Rack %1 影響機架 %1 - + Parameter %1 参数 %1 - + Mixer 混音器 - - + + Crossfader 推杆 - + Headphone mix (pre/main) 耳機組合 (pre/主) - + Toggle headphone split cueing 启用耳机声道分离切入(cueing) - + Headphone delay 耳机延迟 - + Transport 運輸 - + Strip-search through track 通過跟蹤全身 - + Play button 播放按鈕 - - + + Set to full volume 設為全音量 - - + + Set to zero volume 设为音量 0 - + Stop button 停止按钮 - + Jump to start of track and play 跳至音軌前端並播放 - + Jump to end of track 跳轉到音軌末端 - + Reverse roll (Censor) button 倒带(轨)键 - + Headphone listen button 耳機監聽按鈕 - - + + Mute button 静音按钮 - + Toggle repeat mode 切换循环模式 - - + + Mix orientation (e.g. left, right, center) 混合方向 (例如左、 右側、 中心) - - + + Set mix orientation to left 设置输出声道为左声道 - - + + Set mix orientation to center 设置输出声道为立体声 - - + + Set mix orientation to right 將混音方向設為右 - + Toggle slip mode 切换剪辑模式 - - + + BPM BPM - + Increase BPM by 1 BPM 增加 1 - + Decrease BPM by 1 BPM 減少 1 - + Increase BPM by 0.1 BPM 增加 0.1 - + Decrease BPM by 0.1 减少 0.1 BPM - + BPM tap button BPM 敲打按钮 - + Toggle quantize mode 切換量化模式 - + One-time beat sync (tempo only) 一次性節拍同步 (只有節奏) - + One-time beat sync (phase only) 一次性节拍同步(仅相位) - + Toggle keylock mode 切换音调锁模式 - + Equalizers 等化器 - + 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 切入点 - + 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 Stutter切入 - + Hotcues 即时切点 - + Set, preview from or jump to hotcue %1 設置、 從預覽或跳轉到 hotcue %1 - + Clear hotcue %1 刪除 hotcue %1 - + Set hotcue %1 设置热切点 %1 - + Jump to hotcue %1 跳转到热切点 %1 - + Jump to hotcue %1 and stop 跳轉到 hotcue %1 並停止 - + Jump to hotcue %1 and play 跳轉到 hotcue %1 並播放 - + Preview from hotcue %1 从热切点 %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 音樂庫 - + Slot %1 插槽 %1 - + Headphone Mix 耳機混音器 - + Headphone Split Cue 耳机分离选听 - + Headphone Delay 耳机延迟 - + Play 播放 - + Fast Rewind 快退 - + Fast Rewind button 快退按鈕 - + Fast Forward 快进 - + Fast Forward button 快進按鈕 - + Strip Search 完整搜索 - + Play Reverse 倒退播放 - + Play Reverse button 反向播放按鈕 - + Reverse Roll (Censor) 倒带(轨) - + Jump To Start 跳至音轨起始点 - + Jumps to start of track 跳至音轨起始点 - + Play From Start 从音轨起始点播放 - + Stop 停止 - + Stop And Jump To Start 停止后跳至音轨起始点 - + Stop playback and jump to start of track 停止播放並跳至音軌前端 - + Jump To End 跳至尾端 - + Volume 音量 - - - + + + Volume Fader 音量调节 - - + + Full Volume 全音量 - - + + Zero Volume 零音量 - + Track Gain 音軌增益 - + Track Gain knob 音轨增益旋钮 - - + + Mute 静音 - + Eject 彈出 - - + + Headphone Listen 耳機監聽 - + Headphone listen (pfl) button 耳機監聽(pfi)按鈕 - + Repeat Mode 重复模式 - + Slip Mode 滑动模式 - - + + Orientation 方向 - - + + Orient Left 左方向 - - + + Orient Center 中心 - - + + Orient Right 向右 - + BPM +1 BPM +1 - + BPM -1 BPM -1 - + BPM +0.1 BPM +0.1 - + BPM -0.1 BPM -0.1 - + BPM Tap BPM 偵測 - + Adjust Beatgrid Faster +.01 調整 Beatgrid 快 +.01 - + Increase track's average BPM by 0.01 增加軌道的平均 BPM 0.01 - + Adjust Beatgrid Slower -.01 减慢节拍(-.01) - + Decrease track's average BPM by 0.01 減少軌道的平均 BPM 0.01 - + Move Beatgrid Earlier 提早 Beatgrid - + Adjust the beatgrid to the left 向左移动节拍 - + Move Beatgrid Later 推迟节拍 - + Adjust the beatgrid to the right 向右移动节拍 - + Adjust Beatgrid 调整节拍 - + Align beatgrid to current position 将节拍对齐至当前位置 - + Adjust Beatgrid - Match Alignment 調整 Beatgrid-匹配對齊方式 - + Adjust beatgrid to match another playing deck. 调整节拍样式以匹配另一个正在播放的碟机。 - + Quantize Mode 量化模式 - + Sync 同步 - + Beat Sync One-Shot 单次节拍同步 - + Sync Tempo One-Shot 单次速度同步 - + Sync Phase One-Shot 同步階段一次性 - + 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 重置至原始音調 - + High EQ 高頻等化器 - + Mid EQ 中頻等化器 - - + + Main Output 主输出 - + Main Output Balance 主输出均衡 - + Main Output Delay 主输出延迟 - + Main Output Gain 主输出增益 - + Low 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 設置切入點 - + Go-To Cue 前往切入點 - + Go-To Cue And Play 前往切入點並播放 - + Go-To Cue And Stop 前往切入點並停止 - + Preview Cue 预览Cue - + Cue (CDJ Mode) 提示 (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 跳轉到 Hotcue %1 並停止 - + Jump To Hotcue %1 And Play 跳轉到 Hotcue %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 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開/關 - + Show/hide the microphone & auxiliary section 显示/隐藏麦克风和辅助部分 - + 4 Effect Units Show/Hide 显示/隐藏效果器 - + Switches between showing 2 and 4 effect units 在显示2和4个效果单位之间切换 - + 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 波形縮小 - + Headphone Gain 耳機增益 - + Headphone gain 耳機增益 - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync 点击同步速度(和相位与量化启用),保持启用永久同步 - + One-time beat sync tempo (and phase with quantize enabled) 同步节奏 - + 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) 暫時降低速度 (精細) - - + + Adjust %1 调 %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 效果单元 %1 - + Button Parameter %1 旋钮参数% 1 - + Skin 皮肤 - + Controller 控制器 - + Crossfader / Orientation 唱片平滑转换器/方向 - + Main Output gain 主输出增益 - + Main Output balance 主输出均衡 - + Main Output delay 主输出延迟 - + Headphone 耳机 - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" 阻断 %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. 彈出或取消彈出曲目,即重新載入最後彈出的曲目(任何檯面)<br>雙按以重新載入最後替換的曲目。在空檯面上,它將重新載入倒數第二個彈出的曲目。 - + BPM / Beatgrid BPM / 网格 - + Halve BPM BPM 减半 - + Multiply current BPM by 0.5 将当前BPM乘0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 将当前BPM乘0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 将当前BPM乘0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 将当前BPM乘0.666 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 将当前BPM乘1.5 - + Double BPM BPM 加倍 - + Multiply current BPM by 2 1.5倍BPM - + Tempo Tap 节奏敲击 - + Tempo tap button 节奏敲击按钮 - + Move Beatgrid 調整節拍網格 - + Adjust the beatgrid to the left or right 將節拍網格向左或向右調整 - + Move Beatgrid Half a Beat - + 将节拍网格移动半个节拍 - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - + 将节拍网格精确调整半拍。仅适用于节奏恒定的曲目。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/beatgrid 锁 - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - + Sync / Sync Lock 同步/同步锁定 - + Internal Sync Leader 内部同步高音 - + Toggle Internal Sync Leader 切换内部同步高音 - - + + Internal Leader BPM 內部主 BPM - + Internal Leader BPM +1 內部主 BPM +1 - + Increase internal Leader BPM by 1 增加 1 级内置BPM - + Internal Leader BPM -1 內部主 BPM -1 - + Decrease internal Leader BPM by 1 减少 1 级内置BPM - + Internal Leader BPM +0.1 內部主 BPM +0.1 - + Increase internal Leader BPM by 0.1 增加 1 级内置BPM - + Internal Leader BPM -0.1 內部主 BPM +0.1 - + Decrease internal Leader BPM by 0.1 將內部主導節拍每分鐘減少 0.1 BPM - + Sync Leader 同步高音 - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) 同步模式切换/指示灯(关,低音,高音) - + Speed 速度 - + Decrease Speed (Fine) 減慢速度(微調) - + Pitch (Musical Key) 音高 - + Increase Pitch 升高音调 - + Increases the pitch by one semitone 将音高增加一个半音 - + Increase Pitch (Fine) 增加间距(细) - + Increases the pitch by 10 cents 增加10间距 - + Decrease Pitch 降低音调 - + Decreases the pitch by one semitone 将音高降低一个半音 - + Decrease Pitch (Fine) 减少间距(细) - + Decreases the pitch by 10 cents 将音高降低10间距 - + Keylock 鑰匙鎖 - + CUP (Cue + Play) CUP (提示 + 播放) - + Shift cue points earlier 移动提示点 - + Shift cue points 10 milliseconds earlier 将提示点移动10毫秒 - + Shift cue points earlier (fine) 移动提示点(可选) - + Shift cue points 1 millisecond earlier 将提示点移动1毫秒 - + Shift cue points later 稍后移动提示点 - + Shift cue points 10 milliseconds later 10毫秒后移动提示点 - + Shift cue points later (fine) 稍后移动(好) - + Shift cue points 1 millisecond later 1毫秒后移动提示点 - - + + Sort hotcues by position - + 按位置排序热键点 - - + + Sort hotcues by position (remove offsets) - + 按位置排序热键(移除偏移) - + Hotcues %1-%2 - 热切点 %1 + 热切点 %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 激活Cue - + Jump to or set the %1 [intro/outro marker 跳转到热切点 %1 - + Set %1 [intro/outro marker 設定 %1 - + Set or jump to the %1 [intro/outro marker 設定或跳至 %1 - + Clear %1 [intro/outro marker 清除 %1 - + Clear the %1 [intro/outro marker 清除 %1 - + if the track has no beats the unit is seconds 如果轨道没有节拍,则单位为秒 - + 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 %1 Beats set from its end point Loop %1 从结束点开始设置的节拍 - + Loop Roll %1 Beats set from its end point Loop Roll %1 从结束点开始设置的节拍 - + Create %1-beat loop with the current play position as loop end 创建 %1 拍 Loop,并将当前播放位置作为 Loop 结束 - + Create temporary %1-beat loop roll with the current play position as loop end 创建临时的 %1 拍 Loop 滚动,并将当前播放位置作为 Loop 结束 - + Loop Beats 循环节拍 - + Loop Roll Beats 循环滚动节拍 - + Go To Loop In 跳转到循环 - + Go to Loop In button 跳转到循环按钮 - + Go To Loop Out 前往循環終點 - + Go to Loop Out button 前往循環終點按鈕 - + 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 个节拍,或者如果启用了 Loop,则将 Loop 向后移动 %1 个节拍 - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop 向前移动选定的节拍 - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats 向前跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向前移动选定的节拍数 - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop 向后移动选定的节拍 - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats 向后跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向后移动选定的节拍数 - + Beat Jump 跳拍 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position 指示在调整大小时哪个 Loop 标记保持静止或从当前位置继承 - + Beat Jump / Loop Move Forward 节拍跳跃/循环移动 - + Beat Jump / Loop Move Backward 节拍跳跃/循环移动 - + Loop Move Forward 向前移動循環 - + Loop Move Backward 向後移動循環 - + Remove Temporary Loop 移除臨時循環 - + Remove the temporary loop 移除臨時循環 - + 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 键效果一致 - + Sort focused column 將焦點列進行排序 - + Sort the column of the cell that is currently focused, equivalent to clicking on its header 對當前專注的儲存格所在的列進行排序,相當於點擊其標題欄。 - + 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 將所選的搜索歷史項目移動到指定的方向和步驟 - + Clear search 清除搜索 - + Clears the search query 清除搜索查詢 - - + + Select Next Color Available 选择下一个可用颜色 - + Select the next color in the color palette for the first selected track 在调色板中选择第一个选定轨道的下一种颜色 - - + + Select Previous Color Available 选择以前的可用颜色 - + Select the previous color in the color palette for the first selected track 在调色板中选择第一个选定轨道的上一种颜色 - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button 檯面 %1 快速效果啟用按鈕 - + + Quick Effect Enable Button 快速效果啟用按鈕 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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) 切换麦克风闪避模式(关闭/自动/手动) - + 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 顯示/隱藏取樣器節 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator 麦克风和辅助显示/隐藏 - + Waveform Zoom Reset To Default 將波形縮放重置為預設值 - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms 將波形縮放級別重置為首選項 -> 波形 中選擇的預設值 - + Select the next color in the color palette for the loaded track. 在调色板中选择加载轨道的下一种颜色。 - + Select previous color in the color palette for the loaded track. 在加载的轨道的调色板中选择上一种颜色。 - + Navigate Through Track Colors 浏览轨道颜色 - + Select either next or previous color in the palette for the loaded track. 选择调色板中加载轨道的下一个或上一个颜色 - + Start/Stop Live Broadcasting 開始/停止直播 - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Start/stop recording your mix. 開始/停止錄製您的混音。 - - + + + Deck %1 Stems + + + + + 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 將曲目評分減少一顆星 @@ -3560,6 +3601,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3662,32 +3856,32 @@ trace - Above + Profiling messages 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. 控制器“%1”的映射工作不正常。 - + The script code needs to be fixed. 脚本代码需要被修复。 @@ -3695,27 +3889,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem 控制器映射文件问题 - + The mapping for controller "%1" cannot be opened. 无法打开控制器“%1”的映射。 - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. 在问题得到解决之前,此控制器映射提供的功能将被禁用。 - + File: 文件: - + Error: 错误: @@ -3749,7 +3943,7 @@ trace - Above + Profiling messages - + Lock @@ -3780,7 +3974,7 @@ trace - Above + Profiling messages 自動 DJ 音軌來源 - + Enter new name for crate: 输入分类列表的新名称: @@ -3798,22 +3992,22 @@ trace - Above + Profiling messages 匯入箱 - + Export Crate 导出分类列表 - + Unlock 解鎖 - + An unknown error occurred while creating crate: 創建音樂箱時發生未知的錯誤︰ - + Rename Crate 重新命名音樂箱 @@ -3823,28 +4017,28 @@ trace - Above + Profiling messages 为你的下场表演、最喜爱的音轨和最常用的歌曲新建分类列表 - + Confirm Deletion 确认删除 - - + + 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) - + M3U Playlist (*.m3u) M3U 播放清單 (*.m3u) @@ -3865,17 +4059,17 @@ trace - Above + Profiling messages 音樂箱讓你組織你的音樂,你會喜歡 ! - + Do you really want to delete crate <b>%1</b>? 确定删除播放列表<b>%1</b>吗? - + A crate cannot have a blank name. 分类列表名不能命名为空。 - + A crate by that name already exists. 已經有相同名稱的音樂箱。 @@ -3970,12 +4164,12 @@ trace - Above + Profiling messages 過去的貢獻者 - + Official Website 官方网站 - + Donate 捐献 @@ -4779,122 +4973,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg 格式 - + Opus Opus - + AAC AAC - + HE-AAC HE-AAC - + HE-AACv2 HE-AACv2 - + Automatic 自动 - + Mono 單聲道 - + Stereo 立体声 - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed 操作失败 - + You can't create more than %1 source connections. 你不能创建超过 %1 个源连接。 - + Source connection %1 源连接 %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. 至少需要一个源连接。 - + Are you sure you want to disconnect every active source connection? 是否确实要断开每个活动的源连接? - - + + Confirmation required 需要确认 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' 和 '%2' 有相同的 Icecast 挂载点。两个连接到同一服务器的源,挂载点相同的情况下不能同时启用。 - + Are you sure you want to delete '%1'? 是否确实要删除“%1”? - + Renaming '%1' 重命名 '%1' - + New name for '%1': '%1' 的新名称: - + Can't rename '%1' to '%2': name already in use 无法将 '%1' 重命名为 '%2':名称已被使用 @@ -4907,27 +5118,27 @@ Two source connections to the same server that have the same mountpoint can not 直播首選項 - + Mixxx Icecast Testing Mixxx Icecast 測試 - + Public stream 公共流 - + http://www.mixxx.org http://www.mixxx.org - + Stream name 流名称 - + 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. 由於在一些流的用戶端中的缺陷,動態更新 Ogg 格式的中繼資料可以導致攔截器故障和斷開。選中此框,反正更新中繼資料。 @@ -4967,67 +5178,72 @@ Two source connections to the same server that have the same mountpoint can not %1 的设置 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. 動態更新 Ogg 格式的中繼資料。 - + ICQ ICQ - + AIM AIM - + Website 主页 - + Live mix 現場攪拌 - + IRC IRC - + Select a source connection above to edit its settings here 在上面选择一个源连接以在此处编辑其设置 - + Password storage 密码存储方式 - + Plain text 明文 - + Secure storage (OS keychain) 安全存储区(系统钥匙链) - + Genre 體裁 - + Use UTF-8 encoding for metadata. 使用 utf-8 編碼的中繼資料。 - + Description 描述 @@ -5053,42 +5269,42 @@ Two source connections to the same server that have the same mountpoint can not 電視頻道 - + Server connection 服务器链接 - + Type 类型 - + Host 主机 - + Login 用户名 - + Mount 挂载 - + Port - + Password 密碼 - + Stream info 流信息 @@ -5098,17 +5314,17 @@ Two source connections to the same server that have the same mountpoint can not 元数据 - + Use static artist and title. 使用静态的艺术家名称和标题 - + Static title 静态标题 - + Static artist 静态艺术家名称 @@ -5167,13 +5383,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number 按 hotcue 编号 - + Color 颜色 @@ -5218,132 +5435,137 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + 启用关键颜色 - + Key palette - + 快捷调色板 DlgPrefController - + Apply device settings? 應用設備設置嗎? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? 開始學習嚮導前,必須應用您的設置。 應用設置並繼續? - + None - + %1 by %2 %2 %1 - + Mapping has been edited 映射已编辑 - + Always overwrite during this session 在此会话期间始终覆盖 - + Save As 另存为 - + Overwrite 覆盖 - + Save user mapping 保存用户映射 - + Enter the name for saving the mapping to the user folder. 输入用于将映射保存到用户文件夹的名称。 - + Saving mapping failed 保存映射失败 - + A mapping cannot have a blank name and may not contain special characters. 映射不能具有空白名称,并且不能包含特殊字符。 - + A mapping file with that name already exists. 具有该名称的映射文件已存在。 - + Do you want to save the changes? 是否要保存更改? - + Troubleshooting 疑難排解 - + <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>. 如果使用此映射,则控制器可能无法正常工作。请选择其他映射或禁用控制器。此映射专为较新的 Mixxx 控制器引擎而设计,不能用于您当前的 Mixxx 安装。您的 Mixxx 安装的 Controller Engine 版本为 %1。此映射需要 Controller Engine 版本 >= %2。有关更多信息,请访问有关 Controller Engine 版本的 wiki 页面。 - + Mapping already exists. 映射已存在。 - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b>已存在于用户映射文件夹中.<br>覆盖还是用新名称保存? - + Clear Input Mappings 清除输入映射 - + Are you sure you want to clear all input mappings? 你確定你想要清除所有輸入的映射? - + Clear Output Mappings 清除輸出映射 - + Are you sure you want to clear all output mappings? 你確定你想要清除所有輸出映射? @@ -5361,100 +5583,105 @@ Apply settings and continue? 啟用 - - Device Info + + Refresh mapping list - + + Device Info + 设备信息 + + + Physical Interface: - + 物理接口: - + Vendor name: - + 供应商名称: - + Product name: - + 产品名称: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: 描述: - + Support: 支援︰ - + Screens preview - + Input Mappings 輸入的映射 - - + + Search 搜索 - - + + Add 新增 - - + + Remove 移除 @@ -5475,17 +5702,17 @@ Apply settings and continue? 加载映射: - + Mapping Info 映射信息 - + Author: 作者︰ - + Name: 名稱︰ @@ -5495,28 +5722,28 @@ Apply settings and continue? 学习向导(仅用于 MIDI) - + Data protocol: - + Mapping Files: 映射文件: - + Mapping Settings - - + + Clear All 全部清除 - + Output Mappings 輸出映射 @@ -5531,21 +5758,21 @@ 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 使用“映射”将来自控制器的消息连接到 Mixxx 中的控件。如果您在单击左侧边栏上的控制器时在“加载映射”菜单中没有看到控制器的映射,您可以从 %1 在线下载一个。将 XML (.xml) 和 Javascript (.js) 文件放在“用户映射文件夹”中,然后重新启动 Mixxx。如果您下载 ZIP 文件中的映射,请将 XML 和 Javascript 文件从 ZIP 文件解压到您的“用户映射文件夹”,然后重新启动 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + MIDI Mapping File Format MIDI 映射文件格式 - + MIDI Scripting with Javascript 使用 Javascript 编写 MIDI 脚本 @@ -5675,6 +5902,16 @@ Apply settings and continue? Multi-Sampling 多重采样 + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5704,137 +5941,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx 模式 - + Mixxx mode (no blinking) Mixxx 模式 (無閃爍) - + Pioneer mode 先驅模式 - + Denon mode Denon 模式 - + Numark mode 發展模式 - + CUP mode 切播模式 - + mm:ss%1zz - Traditional mm:ss%1zz - 繁体 - + mm:ss - Traditional (Coarse) mm:ss - 传统 (粗) - + s%1zz - Seconds s%1zz - 秒 - + sss%1zz - Seconds (Long) sss%1zz - 秒(长) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - 千秒 - + Intro start 入门 - + Main cue 主要提示 - + First hotcue 第一个 hotcue - + First sound (skip silence) 第一个声音 (跳过静音) - + Beginning of track 轨道起点 - + Reject 拒绝 - + Allow, but stop deck 允许,但停止甲板 - + Allow, play from load point 允许,从加载点播放 - + 4% 4% - + 6% (semitone) 6%(半音) - + 8% (Technics SL-1210) 8%(Technics SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6283,62 +6520,62 @@ 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 播放时防止屏幕保护程序运行 - + Disabled 禁用 - + 2x MSAA 2倍采样抗锯齿 - + 4x MSAA 4倍采样抗锯齿 - + 8x MSAA 8倍采样抗锯齿 - + 16x MSAA 16倍采样抗锯齿 - + This skin does not support color schemes 這種皮膚不支援色彩配置 - + Information 資訊 - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. 在新的区域设置、缩放或多重采样设置生效之前,必须重新启动Mixxx。 @@ -6565,37 +6802,37 @@ and allows you to pitch adjust them for harmonic mixing. 有关详细信息,请参阅手册 - + 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 扫描 - + Item is not a directory or directory is missing 项目不是目录或目录缺失 - + 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> @@ -6606,32 +6843,62 @@ 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 将音乐目录链接至新位置 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font 选择音乐库字体 @@ -6682,262 +6949,267 @@ and allows you to pitch adjust them for harmonic mixing. 启动时重新扫描目录 - + Audio File Formats 音频文件格式 - + Track Table View 轨道视图 - + Track Double-Click Action: 轨道双击操作: - + BPM display precision: BPM 显示精度: - + Session History 工作階段紀錄 - + Track duplicate distance 跟踪重复距离 - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime 再次播放轨道时,仅当同时播放了 N 个以上的其他轨道时,才会将其记录到会话历史记录中 - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. 少于 N 首曲目的历史播放列表将被删除注意:清理将在 Mixxx 启动和关闭期间进行。 - + Delete history playlist with less than N tracks 删除少于 N 首曲目的历史播放列表 - + Library Font: 音乐库字体: - + + Show scan summary dialog + + + + Grey out played tracks 灰显播放的曲目 - + Track Search 轨迹搜索 - + Enable search completions 启用搜索补全 - + Enable search history keyboard shortcuts 启用搜索历史记录键盘快捷键 - + Percentage of pitch slider range for 'fuzzy' BPM search: “模糊”BPM 搜索范围: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks 此范围将通过搜索框用于“模糊”BPM 搜索 (~bpm:),以及用于 Search related Tracks > Track 上下文菜单中的 BPM 搜索 - + Preferred Cover Art Fetcher Resolution 首选封面图片提取程序分辨率 - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. 使用从 Musicbrainz 导入数据 从 coverartarchive.com 中获取封面。 - + Note: ">1200 px" can fetch up to very large cover arts. 注意:“>1200 px”最多可以获取非常大的封面。 - + >1200 px (if available) >1200 像素(如果可用) - + 1200 px (if available) 1200 像素(如果可用) - + 500 px 500像素 - + 250 px 250像素 - + Settings Directory 设置目录 - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Mixxx 设置目录包含库数据库、各种配置文件、日志文件、轨道分析数据以及自定义控制器映射。 - + Edit those files only if you know what you are doing and only while Mixxx is not running. 仅当您知道自己在做什么时,并且仅在 Mixxx 未运行时编辑这些文件。 - + Open Mixxx Settings Folder 打开 Mixxx 设置文件夹 - + Library Row Height: 圖書館行高︰ - + Use relative paths for playlist export if possible 请尽量使用相对路径来导出播放列表 - + ... ... - + px px - + Synchronize library track metadata from/to file tags 从文件标签同步库轨道数据/与文件标签同步 - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library 自动将修改后的轨道元数据从库写入文件标签,并将元数据从更新的文件标签重新导入到库中 - + Synchronize Serato track metadata from/to file tags (experimental) 从/到文件标签同步 Serato 跟踪元数据(实验性) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. 使轨道颜色、节拍网格、bpm 锁定、提示点和 Loop 与 SERATO_MARKERS/MARKERS2 文件标签保持同步。<br/><br/>警告:启用此选项还会在 Mixxx 之外修改文件后重新导入 Serato 元数据。重新导入时,Mixxx 中的现有元数据将替换为文件标签中的数据。文件标签中未包含的自定义元数据(如循环颜色)将丢失。 - + Edit metadata after clicking selected track 单击所选轨道后编辑数据 - + Search-as-you-type timeout: 键入时搜索超时: - + ms 女士 - + Load track to next available deck 載入追蹤記錄到下一個可用的甲板上 - + External Libraries 外部库 - + You will need to restart Mixxx for these settings to take effect. 您需要重启 Mixxx 以便这些设置生效。 - + Show Rhythmbox Library 顯示 Rhythmbox 庫 - + Track Metadata Synchronization / Playlists 轨道数据同步/播放列表 - + Add track to Auto DJ queue (bottom) 将轨道添加到 Auto DJ 队列(底部) - + Add track to Auto DJ queue (top) 将轨道添加到 Auto DJ 队列(顶部) - + Ignore 忽略 - + Show Banshee Library 顯示女妖庫 - + Show iTunes Library 显示iTunes音乐库 - + Show Traktor Library 显示Traktor音乐库 - + Show Rekordbox Library 显示 Recordbox 库 - + Show Serato Library 显示 Serato 库 - + All external libraries shown are write protected. 所有显示的外部库均为写保护模式。 @@ -7276,39 +7548,39 @@ 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 - + 所有设置都会在下一次轨道加载时生效。当前加载的轨迹不受影响。有关这些设置的说明,请参阅 %1 DlgPrefRecord - + Choose recordings directory 選擇錄音目錄 - - + + Recordings directory invalid 录制文件目录无效 - + Recordings directory must be set to an existing directory. 录制目录必须设置为现有目录。 - + Recordings directory must be set to a directory. Recordings directory (录制文件目录) 必须设置为目录。 - + Recordings directory not writable 录制文件目录不可写 - + You do not have write access to %1. Choose a recordings directory you have write access to. 您没有对 %1 的写入权限。选择您具有写入权限的录制文件目录。 @@ -7326,43 +7598,55 @@ and allows you to pitch adjust them for harmonic mixing. 流覽... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality 品质 - + Tags 标签 - + Title 標題 - + Author 作者 - + Album 专辑 - + Output File Format 输出文件格式 - + Compression 壓縮 - + Lossy 損耗衰減 @@ -7377,12 +7661,12 @@ and allows you to pitch adjust them for harmonic mixing. 目录: - + Compression Level 压缩级别 - + Lossless 無損 @@ -7515,172 +7799,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 赫兹 - + Default (long delay) 默认(长延时) - + Experimental (no delay) 试验(无延时) - + Disabled (short delay) 禁用 (短延時) - + Soundcard Clock 声卡时钟 - + Network Clock 网络时钟 - + Direct monitor (recording and broadcasting only) 直接监视器(仅限录制和广播) - + Disabled 已禁用 - + Enabled 啟用 - + Stereo 立体声 - + Mono 單聲道 - + To enable Realtime scheduling (currently disabled), see the %1. 要启用实时计划(当前已禁用),请参阅 %1。 - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 列出了您可能需要考虑使用 Mixxx 的声卡和控制器。 - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) 自动(<= 1024 帧/周期) - + 2048 frames/period 2048 帧/周期 - + 4096 frames/period 4096 帧/周期 - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. 测量往返延迟,并在上方输入麦克风延迟补偿以对齐麦克风计时。 - + Refer to the Mixxx User Manual for details. 細節請參考Mixxx 使用者操作手冊 - + Configured latency has changed. 配置的延迟已更改。 - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. 重新测量往返延迟,并将其输入到麦克风延迟补偿上方,以调整麦克风定时。 - + Realtime scheduling is enabled. 已启用实时调度。 - + Main output only 仅主输出 - + Main and booth outputs 主输出和展位输出 - + %1 ms %1 ms - + Configuration error 配置錯誤 @@ -7747,17 +8036,22 @@ The loudness target is approximate and assumes track pregain and main output lev 女士 - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 為 20 毫秒 - + Buffer Underflow Count 緩衝區下溢計數 - + 0 0 @@ -7782,12 +8076,12 @@ The loudness target is approximate and assumes track pregain and main output lev 輸入 - + System Reported Latency 系統報告延遲 - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. 若下溢计数持续增加,或者您听到“啪啪”声,请增大您的音频缓冲区。 @@ -7817,7 +8111,7 @@ The loudness target is approximate and assumes track pregain and main output lev 提示和診斷 - + Downsize your audio buffer to improve Mixxx's responsiveness. 若需提升 Mixxx 的响应速度,请降低您的音频缓冲区大小。 @@ -7864,7 +8158,7 @@ The loudness target is approximate and assumes track pregain and main output lev 乙烯基配置 - + Show Signal Quality in Skin 在皮膚中顯示信號品質 @@ -7900,47 +8194,52 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 碟盘1 - + Deck 2 碟盘2 - + Deck 3 碟盘3 - + Deck 4 碟盘4 - + Signal Quality 信號品質 - + http://www.xwax.co.uk http://www.xwax.co.uk - + Powered by xwax 由 xwax 提供動力 - + Hints 提示 - + Select sound devices for Vinyl Control in the Sound Hardware pane. 選擇聲音設備乙烯控制聲音硬體窗格中。 @@ -7948,58 +8247,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered 過濾 - + HSV HSV - + RGB RGB - + Top 返回页首 - + Center 中心 - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL 不可用 - + dropped frames 丟棄的幀 - + Cached waveforms occupy %1 MiB on disk. 缓存的波形占用了 %1 MB 磁盘空间。 @@ -8017,22 +8316,17 @@ The loudness target is approximate and assumes track pregain and main output lev 畫面播放速率 - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. 显示当前平台所支持的 OpenGL 版本。 - - Normalize waveform overview - 正常化波形概述 - - - + Average frame rate 平均畫面播放速率 @@ -8048,7 +8342,7 @@ The loudness target is approximate and assumes track pregain and main output lev 預設縮放級別 - + Displays the actual frame rate. 显示实际帧率。 @@ -8083,7 +8377,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show minute markers on waveform overview @@ -8128,7 +8422,7 @@ The loudness target is approximate and assumes track pregain and main output lev 全球視覺增益 - + 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. 选择波形的显示样式,其主要区别在于显示在波形中的细节多少。 @@ -8196,22 +8490,22 @@ Select from different types of displays for the waveform, which differ primarily pt - + Caching 緩存 - + 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 緩存您軌道在磁片第一次你載入追蹤記錄的波形。這降低了 CPU 使用率,當你玩活的時候,但需要額外的磁碟空間。 - + Enable waveform caching 启用波形缓存 - + Generate waveforms when analyzing library 在分析圖書館時產生波形 @@ -8227,7 +8521,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8257,12 +8551,58 @@ Select from different types of displays for the waveform, which differ primarily 将波形上的播放标记位置向左、向右或居中移动(默认)。 - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms 清除波形缓存 @@ -8754,7 +9094,7 @@ This can not be undone! BPM: - + Location: 位置: @@ -8769,27 +9109,27 @@ This can not be undone! 注视 - + BPM BPM - + Sets the BPM to 75% of the current value. 将 BPM 设置为当前值的 75%。 - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. 将 BPM 设置为当前值的 50%。 - + Displays the BPM of the selected track. 显示所选音轨的 BPM。 @@ -8844,49 +9184,49 @@ This can not be undone! 體裁 - + ReplayGain: 重播增益︰ - + Sets the BPM to 200% of the current value. 將 BPM 設置為 200%的當前值。 - + Double BPM 拍速倍增 - + Halve BPM 減半 BPM - + Clear BPM and Beatgrid 明確的 BPM 和 Beatgrid - + Move to the previous item. "Previous" button 移动至前一项。 - + &Previous 上一首(&P) - + Move to the next item. "Next" button 移動到下一個專案。 - + &Next 下一首(&N) @@ -8911,12 +9251,12 @@ This can not be undone! 颜色 - + Date added: 添加日期: - + Open in File Browser 在文件管理器中打开 @@ -8926,12 +9266,17 @@ This can not be undone! 采样率: - + + Filesize: + + + + Track BPM: BPM 的軌道︰ - + 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. @@ -8940,90 +9285,90 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 这样通常能得到质量更高的节拍网格,但对有节奏变化的音轨效果不佳。 - + Assume constant tempo 假定速度恒定 - + Sets the BPM to 66% of the current value. 將 BPM 設置為當前值的 66%。 - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. 将 BPM 设置为当前值的 150%。 - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. 将 BPM 设置为当前值的 133%。 - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. 點擊擊敗,設置 BPM 為您正在開發的速度。 - + Tap to Beat 點擊節拍 - + Hint: Use the Library Analyze view to run BPM detection. 提示︰ 使用庫分析視圖運行 BPM 檢測。 - + Save changes and close the window. "OK" button 保存更改并关闭窗口。 - + &OK 與確定 - + Discard changes and close the window. "Cancel" button 丢弃更改并关闭窗口。 - + Save changes and keep the window open. "Apply" button 保存更改並保持視窗打開。 - + &Apply 與應用 - + &Cancel 與取消 - + (no color) (无颜色) @@ -9180,7 +9525,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 确认(&O) - + (no color) (无颜色) @@ -9382,27 +9727,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (更快) - + Rubberband (better) 橡皮條 (更好) - + Rubberband R3 (near-hi-fi quality) 接近高保真质量 - + Unknown, using Rubberband (better) 未知,使用更好 - + Unknown, using Soundtouch 未知,使用 Soundtouch @@ -9617,15 +9962,15 @@ 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 @@ -9637,57 +9982,57 @@ Shown when VuMeter can not be displayed. Please keep 支持。 - + activate 启用 - + toggle 切換 - + right - + left - + right small 右小 - + left small 左小 - + up 向上 - + down - + up small 小了 - + down small 下小 - + Shortcut 快捷方式 @@ -9695,37 +10040,37 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. 此目录或父目录已位于您的库中。 - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies 此目录或列出的目录不存在或无法访问。 中止操作以避免库不一致 - - + + This directory can not be read. 无法读取此目录。 - + An unknown error occurred. Aborting the operation to avoid library inconsistencies 发生未知错误。 中止操作以避免库不一致 - + Can't add Directory to Library 无法将目录添加到库 - + Could not add <b>%1</b> to your library. %2 @@ -9734,27 +10079,27 @@ Aborting the operation to avoid library inconsistencies %2 - + Can't remove Directory from Library 无法从库中删除目录 - + An unknown error occurred. 发生未知错误。 - + This directory does not exist or is inaccessible. 此目录不存在或无法访问。 - + Relink Directory 重新链接目录 - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9766,23 +10111,23 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9920,12 +10265,12 @@ Do you really want to overwrite it? 隱藏的曲目 - + Export to Engine DJ 导出到 Engine DJ - + Tracks 音轨 @@ -9933,37 +10278,37 @@ 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 重试 @@ -9973,211 +10318,211 @@ Do you really want to overwrite it? 皮肤 - + Allow Mixxx to hide the menu bar? 允许 Mixxx 隐藏菜单栏? - + Hide Always show the menu bar? 隐藏 - + Always show 始终显示 - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Mixxx 菜单栏是隐藏的,只需按一下<b>Alt 键</b>钥匙。<br><br>点击<b>%1</b>同意。<br><br>点击<b>%2</b>以禁用它,例如,如果您不将 Mixxx 与键盘一起使用。<br><br>您可以随时在 Preferences -> Interface 中更改此设置。<br> - + Ask me again 再问我一次 - - + + 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? 没有为此辅助设备选择输入设备。是否要选择输入设备? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. 您的计算机上未启用直接渲染。<br><br>这意味着波形显示将非常<br><b>速度慢,并且可能会严重占用您的 CPU</b>.要么更新您的<br>配置以启用直接渲染或禁用<br>波形将通过选择 Mixxx 首选项显示在<br>“空”作为“界面”部分的波形显示。 - - - + + + 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? @@ -10193,14 +10538,14 @@ Do you want to select an input device? PlaylistFeature - + Lock - - + + Playlists 播放列表 @@ -10210,58 +10555,63 @@ Do you want to select an input device? 随机播放播放列表 - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock 解鎖 - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. 播放列表是有序的曲目列表,允许您规划 DJ 集。 - + 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 建立新的播放清單 @@ -10360,59 +10710,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 重新分析音轨,请选择“保留当前节拍样式”。您可以之后在首选项中的“节拍检测”选项卡中更改此设置。 - + Keep Current Beatgrids 保留当前节拍样式 - + Generate New Beatgrids 生成新 Beatgrids @@ -10526,69 +10876,82 @@ Do you want to scan your library for cover files now? 14 位 (MSB) - + Main + Audio path indetifier 主要 - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier 耳机 - + Left Bus + Audio path indetifier 左的巴士 - + Center Bus + Audio path indetifier 中心巴士 - + Right Bus + Audio path indetifier 右总线 - + Invalid Bus + Audio path indetifier 无效总线 - + Deck + Audio path indetifier 甲板上 - + Record/Broadcast + Audio path indetifier 錄音/廣播 - + Vinyl Control + Audio path indetifier 唱盘控制 - + Microphone + Audio path indetifier 麥克風 - + Auxiliary + Audio path indetifier 辅助 - + Unknown path type %1 + Audio path 路径类型 %1 未知 @@ -10931,47 +11294,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang 寬度 - + Metronome 节拍器 - + + The Mixxx Team - + Adds a metronome click sound to the stream 向流中添加节拍器咔嗒声 - + BPM BPM - + Set the beats per minute value of the click sound 设置咔嗒声的每分钟节拍数值 - + Sync 同步 - + Synchronizes the BPM with the track if it can be retrieved 如果可以检索 Track,则将 BPM 与 Track 同步 - + + Gain - + Set the gain of metronome click sound @@ -11775,14 +12140,14 @@ Fully right: end of the effect period 不支持 OGG 录制。无法初始化 OGG/Vorbis 库。 - - + + encoder failure 编码器故障 - - + + Failed to apply the selected settings. 无法应用所选设置。 @@ -11901,7 +12266,7 @@ Hint: compensates "chipmunk" or "growling" voices Soft Clipping - + Soft Clipping @@ -11920,7 +12285,7 @@ Hint: compensates "chipmunk" or "growling" voices 应用于音频信号的放大量。在更高的级别上,音频将更加分散。 - + Passthrough 直通 @@ -11972,31 +12337,102 @@ Hint: compensates "chipmunk" or "growling" voices 补偿 - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - Auto Makeup 按钮启用自动增益调整以保持输入信号 -以及处理后的输出信号在感知响度上尽可能接近 + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + Auto Makeup 按钮启用自动增益调整以保持输入信号 +以及处理后的输出信号在感知响度上尽可能接近 + + + + Off + 关闭 + + + + On + 打开 + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + 阈值 (dBFS) + + + + + Threshold + 门槛 + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - 关闭 + + Knee (dB) + - - On - 打开 + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - 阈值 (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - 门槛 + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -12028,6 +12464,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee (dBFS) + Knee Knee @@ -12038,11 +12475,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee 旋钮用于实现更圆润的压缩曲线 + Attack (ms) + Attack @@ -12055,11 +12494,13 @@ will set in once the signal exceeds the threshold 将在信号超过阈值时设置 + Release (ms) 版本(毫秒) + Release 释放 @@ -12090,12 +12531,12 @@ may introduce a 'pumping' effect and/or distortion. 各种 - + built-in - + missing @@ -12130,42 +12571,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12247,7 +12688,7 @@ may introduce a 'pumping' effect and/or distortion. Hot cues - + 即时切点 @@ -12428,193 +12869,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx遇到一个问题 - + Could not allocate shout_t 无法为 shout_t 分配内存 - + Could not allocate shout_metadata_t 无法为 shout_metadata_t 分配内存 - + Error setting non-blocking mode: 錯誤設置非阻塞模式︰ - + Error setting tls mode: 设置 TLS 模式时出错: - + Error setting hostname! 设置主机名时出错! - + Error setting port! 設置埠時出錯 ! - + Error setting password! 設置密碼時出錯 ! - + Error setting mount! 设置挂载点时出错! - + Error setting username! 设置i用户名时出错! - + Error setting stream name! 錯誤設置流名稱 ! - + Error setting stream description! 錯誤設置流說明 ! - + Error setting stream genre! 设置流的流派时出错! - + Error setting stream url! 设置流的 URL 时出错! - + Error setting stream IRC! 设置流 IRC 时出错! - + Error setting stream AIM! 设置流 AIM 时出错! - + Error setting stream ICQ! 设置流 ICQ 时出错! - + Error setting stream public! 錯誤設置流公共 ! - + Unknown stream encoding format! 未知的流编码格式! - + Use a libshout version with %1 enabled 使用启用了 %1 的 libshout 版本 - + 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. 目前不支持使用 Ogg Vorbis 以 96 kHz 进行广播。请尝试不同的采样率或切换到不同的编码。 - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. 有关更多信息,请参阅 https://github.com/mixxxdj/mixxx/issues/5701。 - + Unsupported sample rate 不支持的采样率 - + Error setting bitrate 錯誤設置位元速率 - + Error: unknown server protocol! 错误:服务器协议未知! - + Error: Shoutcast only supports MP3 and AAC encoders 错误:Shoutcast 仅支持 MP3 和 AAC 编码器 - + Error setting protocol! 设置协议时出错! - + Network cache overflow 網路的快取溢出 - + Connection error 连接错误 - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> 其中一个 Live Broadcasting 连接引发了以下错误:<br><b>连接“%1”出错:</b><br> - + Connection message 连接消息 - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>来自实时广播连接“%1”的消息:</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. 到流服务器的连接中断,且在 %1 次重试之后仍然无法重新连接 - + Lost connection to streaming server. 到流服务器的连接断开 - + Please check your connection to the Internet. 请检查您的互联网连接 - + Can't connect to streaming server 无法连接到流服务器 - + Please check your connection to the Internet and verify that your username and password are correct. 請檢查您連接到 Internet,請驗證您的使用者名和密碼正確。 @@ -12622,7 +13063,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered 過濾 @@ -12630,23 +13071,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device 一个设备 - + An unknown error occurred 出現未知的錯誤 - + Two outputs cannot share channels on "%1" 两个输出无法共享 %1 的通道 - + Error opening "%1" 无法打开 "%1" @@ -12831,7 +13272,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl 紡紗乙烯基 @@ -13013,7 +13454,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art 封面 @@ -13203,243 +13644,243 @@ may introduce a 'pumping' effect and/or distortion. 启用时,将低频均衡器的增益置为 0。 - + Displays the tempo of the loaded track in BPM (beats per minute). 显示已加载音轨的BPM(拍每分钟)。 - + Tempo 速度 - + Key The musical key of a track 關鍵 - + BPM Tap BPM 敲击 - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 - + Adjust BPM Down 向下調整 BPM - + When tapped, adjusts the average BPM down by a small amount. 点击时,将平均 BPM 略微下调。 - + Adjust BPM Up 上调 BPM - + When tapped, adjusts the average BPM up by a small amount. 當敲擊時,通過少量向上調整平均 BPM。 - + Adjust Beats Earlier 早些時候調整節拍 - + When tapped, moves the beatgrid left by a small amount. 當敲擊時,移動 beatgrid 留下的一小部分。 - + Adjust Beats Later 推迟节拍 - + When tapped, moves the beatgrid right by a small amount. 点击时,将节拍略微推迟。 - + Tempo and BPM Tap 速度和 BPM - + Show/hide the spinning vinyl section. 显示/隐藏唱盘控制器。 - + Keylock 鑰匙鎖 - + Toggling keylock during playback may result in a momentary audio glitch. 在回放时切换音高锁定可能会导致音频出现瞬间的噪音(glitch)。 - + Toggle visibility of Loop Controls 切换 Loop Controls 的可见性 - + Toggle visibility of Beatjump Controls 切换 Beatjump 控件的可见性 - + Toggle visibility of Rate Control 切换速率控制的可见性 - + Toggle visibility of Key Controls 切换键控的可见性 - + (while previewing) (预览时) - + Places a cue point at the current position on the waveform. 在波形的当前位置上设置一个切入点。 - + Stops track at cue point, OR go to cue point and play after release (CUP mode). 在切入点处停止,或跳至切入点并在释放后播放(切播模式下)。 - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). 设置切入点(Pioneer/Mixxx 模式下)并在释放后开始播放(切播模式下),或从切入点出开始预览(Denon 模式下)。 - + Is latching the playing state. 正在锁定播放状态。 - + Seeks the track to the cue point and stops. 跳至音轨的切入点,然后停止。 - + Play 播放 - + Plays track from the cue point. 从提示点播放轨道。 - + 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 启用 Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. 点击可将速度同步到其他正在播放的轨道或同步引导。 - + Enable Sync Leader 启用 Sync Leader - + When enabled, this device will serve as the sync leader for all other decks. 启用后,此设备将用作所有其他 Deck 的同步引导。 - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. 当动态速度轨道加载到同步引导界面时,这一点很重要。在这种情况下,其他同步装置将采用不断变化的速度。 - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. 更改跟蹤重播速度 (影響節奏和音高)。如果啟用了鍵盤鎖,只有節奏受到影響。 - + Tempo Range Display 速度范围显示 - + Displays the current range of the tempo slider. 显示速度滑块的当前范围。 - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). 未加载 track 时取消弹出,即重新加载最后弹出的 track (任何卡座)。 - + Delete selected hotcue. 删除选定的 hotcue。 - + Track Comment 轨道评级 - + Displays the comment tag of the loaded track. 显示加载的轨道的注释标签。 - + Opens separate artwork viewer. 打开单独的图稿查看器。 - + Effect Chain Preset Settings Effect Chain 预设设置 - + Show the effect chain settings menu for this unit. 显示本机的 Effect Chain 设置菜单。 - + Select and configure a hardware device for this input 为此输入选择并配置硬件设备 - + Recording Duration 录制时间 @@ -13662,949 +14103,984 @@ may introduce a 'pumping' effect and/or distortion. 在活动时保持较高的播放速度(少量)。 - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap 节奏敲击 - + Rate Tap and BPM Tap Rate Tap 和 BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/节拍网格 锁 - + Tempo and Rate Tap 速度和 BPM - + Tempo, Rate Tap and BPM Tap 速度、速率拍子和 BPM 拍子 - + Shift cues earlier 提前移动提示 - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. 从 Serato 或 Rekordbox 导入的 Shift 提示点(如果它们稍微偏离时间)。 - + Left click: shift 10 milliseconds earlier 左键单击:提前 10 毫秒 Shift - + Right click: shift 1 millisecond earlier 右键单击:提前 1 毫秒 Shift - + Shift cues later 稍后切换提示 - + Left click: shift 10 milliseconds later 左键单击:10 毫秒后 shift - + Right click: shift 1 millisecond later 右键单击:1 毫秒后 Shift - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. 将主输出中所选声道的音频静音。 - + Main mix enable 主混音启用 - + Hold or short click for latching to mix this input into the main output. 按住或短按锁定以将此输入混合到主输出中。 - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. 如果 hotcue 是一个 Loop 提示,则切换 Loop 并跳转到 Loop 是否在播放位置后面。 - + If the play position is inside an active loop, stores the loop as loop cue. 如果播放位置位于活动 Loop 内,则将 Loop 存储为 Loop 提示。 - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers 展开/折叠采样器 - + Toggle expanded samplers view. 切换展开的采样器视图。 - + Displays the duration of the running recording. 显示运行录制的持续时间。 - + Auto DJ is active Auto DJ 处于活动状态 - + Red for when needle skip has been detected. 红色表示检测到跳针。 - + Hot Cue - Track will seek to nearest previous hotcue point. 热切 - 将会定位到上一个(最近的)热切入点。 - + Sets the track Loop-In Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-In Marker. 按住可移动 Loop-In 标记。 - + Jump to Loop-In Marker. 跳转到 Loop-In 标记。 - + Sets the track Loop-Out Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-Out Marker. 按住可移动 Loop-Out Marker。 - + Jump to Loop-Out Marker. 跳转到 Loop-Out Marker。 - + If the track has no beats the unit is seconds. 如果轨道没有节拍,则单位为秒。 - + Beatloop Size Beatloop 大小 - + Select the size of the loop in beats to set with the Beatloop button. 选择 Loop 的大小(以节拍为单位),以使用 Beatloop 按钮进行设置。 - + Changing this resizes the loop if the loop already matches this size. 如果 loop 已经匹配此大小,则更改此 URL 将调整 Loop 的大小。 - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. 将现有 Beatloop 的大小减半,或使用 Beatloop 按钮将下一个 Beatloop 集的大小减半。 - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. 使用 Beatloop 按钮将现有 Beatloop 的大小增加一倍,或将下一个 Beatloop 集的大小增加一倍。 - + Start a loop over the set number of beats. 在设定的节拍数上开始循环。 - + Temporarily enable a rolling loop over the set number of beats. 在设定的节拍数上暂时启用滚动循环。 - + Beatloop Anchor Beatloop 固定点 - + Define whether the loop is created and adjusted from its staring point or ending point. 定义是否从其起始点或终点创建和调整循环。 - + Beatjump/Loop Move Size Beatjump/Loop 移动大小 - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. 选择要跳跃的节拍数,或使用 Beatjump Forward/Backward 按钮移动 Loop。 - + Beatjump Forward Beatjump 向前 - + Jump forward by the set number of beats. 向前跳动设定的节拍数。 - + Move the loop forward by the set number of beats. 将 Loop 向前移动设定的节拍数。 - + Jump forward by 1 beat. 向前跳 1 拍 - + Move the loop forward by 1 beat. 将循环向前移动 1 拍 - + Beatjump Backward 向后跳拍 - + Jump backward by the set number of beats. 向后跳过指定数量的节拍。 - + Move the loop backward by the set number of beats. 将循环向后移动指定数量的节拍。 - + Jump backward by 1 beat. 向后跳 1 拍 - + Move the loop backward by 1 beat. 将循环向后移动 1 拍 - + Reloop 再循环 - + 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. 仅当设置了循环起始和结束位置时才会有效。 - + Enable loop, jump to Loop-In Marker, and stop playback. 启用 loop,跳转到 Loop-In Marker,然后停止播放。 - + Displays the elapsed and/or remaining time of the track loaded. 显示加载跟踪的经过和 (或) 剩余时间。 - + Click to toggle between time elapsed/remaining time/both. 单击可切换时间/剩余时间时间或两者。 - + Hint: Change the time format in Preferences -> Decks. 提示:在 Preferences -> Decks 中更改时间格式。 - + Show/hide intro & outro markers and associated buttons. 显示/隐藏介绍和结尾标记以及相关按钮。 - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker 介绍开始标记 - - - - + + + + If marker is set, jumps to the marker. 如果设置了 marker,则跳转到 marker。 - - - - + + + + If marker is not set, sets the marker to the current play position. 如果未设置 marker,则将 marker 设置为当前播放位置。 - - - - + + + + If marker is set, clears the marker. 如果设置了 marker,则清除 marker。 - + Intro End Marker 介绍结束标记 - + Outro Start Marker 结尾部分开始标记 - + Outro End Marker 结尾部分结束标记 - + Mix 混合 - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit 调整效果器单元的干 (input) 信号与湿 (output) 信号的混合 - + D/W mode: Crossfade between dry and wet D/W 模式:干湿交叉淡入淡出 - + D+W mode: Add wet to dry D+W 模式:从湿到干 - + Mix Mode 混合模式 - + 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. 干/湿模式(交叉线):混合旋钮在干湿之间交叉淡化 使用此选项可通过 EQ 和滤波器效果更改轨道的声音。 - + 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. 干 + 湿模式(平坦干线):混合旋钮将湿添加到干 使用此选项可仅更改带有 EQ 和滤波器效果的效果(湿)信号。 - + Route the main mix through this effect unit. 通过此效果器单元路由主混音。 - + Route the left crossfader bus through this effect unit. 将左侧的交叉推子总线路由到此效果器单元中。 - + Route the right crossfader bus through this effect unit. 将右侧的 Crossfader 总线路由到此效果器单元中 - + Right side active: parameter moves with right half of Meta Knob turn 右侧激活:参数随着 Meta 旋钮的右半部分转动而移动 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin Settings 菜单 - + Show/hide skin settings menu 显示/隐藏皮肤设置菜单 - + Save Sampler Bank 保存採樣器銀行 - + Save the collection of samples loaded in the samplers. 保存采样器中加载的样本集合。 - + Load Sampler Bank 加载采样库 - + Load a previously saved collection of samples into the samplers. 将以前保存的样本集合加载到采样器中。 - + Show Effect Parameters 顯示效果器的參數 - + Enable Effect 启用特效 - + Meta Knob Link 元旋钮链接 - + Set how this parameter is linked to the effect's Meta Knob. 设置此参数如何链接到效果的 Meta 旋钮。 - + Meta Knob Link Inversion 元旋钮链接反演 - + Inverts the direction this parameter moves when turning the effect's Meta Knob. 反转此参数时效果的 Meta 旋钮移动的方向。 - + Super Knob 超級旋鈕 - + Next Chain 下一效果器链 - + Previous Chain 上一效果器链 - + Next/Previous Chain 下一個/上一個鏈 - + Clear 清除 - + Clear the current effect. 清除當前的效果。 - + Toggle 切換 - + Toggle the current effect. 切換當前效果。 - + Next 下一個 - + Clear Unit 清除單元 - + Clear effect unit. 單位明確效果。 - + Show/hide parameters for effects in this unit. 显示/隐藏此单元中效果的参数。 - + Toggle Unit 切換單元 - + Enable or disable this whole effect unit. 启用或禁用整个效果单元。 - + Controls the Meta Knob of all effects in this unit together. 同时控制该单元中所有效果的 Meta 旋钮。 - + Load next effect chain preset into this effect unit. 将 next effect chain 预设加载到此效果单元中。 - + Load previous effect chain preset into this effect unit. 将上一个效果链预设加载到此效果单元中。 - + Load next or previous effect chain preset into this effect unit. 将下一个或上一个效果链预设加载到此效果单元中。 - - - - - - - - - + + + + + + + + + Assign Effect Unit 分配效果单元 - + Assign this effect unit to the channel output. 将此效果器单元分配给通道输出。 - + Route the headphone channel through this effect unit. 通过此效果器单元路由耳机通道。 - + Route this deck through the indicated effect unit. 将此 Deck 路由到指定的效果单位。 - + Route this sampler through the indicated effect unit. 将此采样器路由到指示的效果器单元。 - + Route this microphone 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. 还必须将效果单元分配给 Deck 或其他声源才能听到效果。 - + Switch to the next effect. 切换至下一个效果。 - + Previous 前一個 - + Switch to the previous effect. 切换至之前的效果。 - + Next or Previous 下一个或上一个 - + Switch to either the next or previous effect. 切換到下一個或上一個效果。 - + Meta Knob 元旋钮 - + Controls linked parameters of this effect 这种效应的控制链接的参数 - + Effect Focus Button 影响对焦按钮 - + Focuses this effect. 针对这种效果。 - + Unfocuses this effect. Unfocuses 这种效果。 - + Refer to the web page on the Mixxx wiki for your controller for more information. 您的控制器的详细信息,请参阅 Mixxx wiki 上的 web 页。 - + Effect Parameter 影響參數 - + Adjusts a parameter of the effect. 调整效果器的参数。 - + Inactive: parameter not linked Inactive:参数未链接 - + Active: parameter moves with Meta Knob Active(活动):参数随 Meta 旋钮移动 - + Left side active: parameter moves with left half of Meta Knob turn 左侧激活:参数随着 Meta 旋钮的左半部分转动而移动 - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half 左侧和右侧激活:参数在切换距离时移动,Meta 旋钮的一半转动,另一半转动 - - + + Equalizer Parameter Kill 均衡器参数置零 - - + + Holds the gain of the EQ to zero while active. 情商的增益堅持零的活躍。 - + Quick Effect Super Knob 快捷效果的超级旋钮 - + Quick Effect Super Knob (control linked effect parameters). 快捷效果超级旋钮(控制关联的效果参数)。 - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. 提示:可以在 首选项 -> 均衡器 设置中更改默认的快捷效果模式。 - + Equalizer Parameter 均衡器参数 - + Adjusts the gain of the EQ filter. 調整 EQ 濾波器的增益。 - + Hint: Change the default EQ mode in Preferences -> Equalizers. 提示︰ 更改預設首選項中的情商模式網站-> 等化器。 - - + + Adjust Beatgrid 调整节拍 - + Adjust beatgrid so the closest beat is aligned with the current play position. 所以最近的節拍與當前播放位置對齊調整 beatgrid。 - - + + Adjust beatgrid to match another playing deck. 调整节拍样式以匹配另一个正在播放的碟机。 - + If quantize is enabled, snaps to the nearest beat. 若启用量化,则对齐到最近的节拍。 - + Quantize 量化 - + Toggles quantization. 切換量化。 - + Loops and cues snap to the nearest beat when quantization is enabled. 若启用量化,循环和切入点将对齐到最近的节拍。 - + Reverse 反向 - + Reverses track playback during regular playback. 反轉跟蹤定期播放期間播放。 - + Puts a track into reverse while being held (Censor). 按下时,将音轨反向。 - + Playback continues where the track would have been if it had not been temporarily reversed. 在继续播放的同时,将音轨反转(若之前尚未反转的话)。 - - - + + + Play/Pause 播放/暫停 - + Jumps to the beginning of the track. 跳轉到的磁軌起點。 - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. 同步的節奏 (BPM) 和相位的另一條鐵軌,如果 BPM 檢測到兩個。 - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. 如果 BPM 在兩個上檢測到的另一條鐵軌,同步節奏 (BPM)。 - + Sync and Reset Key 同步和重置金鑰 - + Increases the pitch by one semitone. 增加一個半音的球場。 - + Decreases the pitch by one semitone. 減少一個半音的球場。 - + Enable Vinyl Control 启用唱盘控制 - + When disabled, the track is controlled by Mixxx playback controls. 當禁用時,軌道被受 Mixxx 播放控制項。 - + When enabled, the track responds to external vinyl control. 當啟用時,跟蹤回應外部乙烯控制。 - + Enable Passthrough 啟用直通 - + Indicates that the audio buffer is too small to do all audio processing. 指示音訊緩衝區太小,做所有的音訊處理。 - + Displays cover artwork of the loaded track. 显示已加载音轨的封面。 - + Displays options for editing cover artwork. 顯示用於編輯封面插圖選項。 - + Star Rating 星級 - + Assign ratings to individual tracks by clicking the stars. 通過按一下星星將評級分配到單獨曲目。 @@ -14739,33 +15215,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.麦克风闪避强度 - + Prevents the pitch from changing when the rate changes. 当速率改变时,防止音高也改变。 - + Changes the number of hotcue buttons displayed in the deck 更改 Deck 中显示的 hotcue 按钮的数量 - + Starts playing from the beginning of the track. 開始從軌道開始播放。 - + Jumps to the beginning of the track and stops. 跳轉到的磁軌起點和停止。 - - + + Plays or pauses the track. 播放或暂停音轨。 - + (while playing) (當演奏) @@ -14785,215 +15261,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.主通道 R 音量表 - + (while stopped) (雖然停止) - + Cue 提示 - + Headphone 耳机 - + Mute 静音 - + Old Synchronize 老同步 - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. 到第一 (按數值順序) 甲板播放的曲目並具有 BPM 同步。 - + If no deck is playing, syncs to the first deck that has a BPM. 若没有正在播放的碟机,与第一个有 BPM 信息的碟机同步。 - + Decks can't sync to samplers and samplers can only sync to decks. 无法将碟机与采样器同步,采样器仅能与碟机同步。 - + Hold for at least a second to enable sync lock for this 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. 启用了同步锁定的碟机将会以相同的速度播放;其中启用了量化模式的碟机还会自动同步节拍。 - + Resets the key to the original track key. 重置为音轨的原音调。 - + Speed Control 速度控制 - - - + + + Changes the track pitch independent of the tempo. 保持速度不变的前提下,改变音轨音高。 - + Increases the pitch by 10 cents. 增加 10 美分的球場。 - + Decreases the pitch by 10 cents. 減少 10 美分的球場。 - + Pitch Adjust 调整音高 - + Adjust the pitch in addition to the speed slider pitch. 調整除了速度滑塊球場球場。 - + Opens a menu to clear hotcues or edit their labels and colors. 打开一个菜单以清除 Hotcue 或编辑其标签和颜色。 - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix 录制混音 - + Toggle mix recording. 切换混音录制。 - + Enable Live Broadcasting 啟用即時廣播 - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Provides visual feedback for Live Broadcasting status: 为在线广播的状态提供可视化反馈: - + disabled, connecting, connected, failure. 禁用,連接,連接,失敗。 - + When enabled, the deck directly plays the audio arriving on the vinyl input. 若启用,碟机将会直接播放来自唱盘的输入信号。 - + Playback will resume where the track would have been if it had not entered the loop. 播放將恢復在軌道本來如果不進入了迴圈。 - + Loop Exit 循環關閉 - + Turns the current loop off. 关闭当前循环。 - + Slip Mode 滑动模式 - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. 若启用,将会在循环、反向或刮擦的时候将回放信号静音。 - + Once disabled, the audible playback will resume where the track would have been. 一旦禁用,聲音播放將恢復本來的軌道。 - + Track Key The musical key of a track 音轨音调 - + Displays the musical key of the loaded track. 显示已加载音轨的音调。 - + Clock 时钟 - + Displays the current time. 显示当前时间。 - + Audio Latency Usage Meter 音訊延遲用量表 - + Displays the fraction of latency used for audio processing. 显示用于音频处理的延迟分数。 - + A high value indicates that audible glitches are likely. 較高的值表明發聲的故障都有可能。 - + Do not enable keylock, effects or additional decks in this situation. 在这个情况不要启用音调锁,效果器或者额外的碟机。 - + Audio Latency Overload Indicator 音訊延遲超載指示器 @@ -15033,259 +15509,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.啟動從功能表-選項 > 乙烯控制。 - + Displays the current musical key of the loaded track after pitch shifting. 顯示載入跟蹤當前音樂鍵後變調。 - + Fast Rewind 快退 - + Fast rewind through the track. 音轨快退。 - + Fast Forward 快进 - + Fast forward through the track. 通過跟蹤的快速前進。 - + Jumps to the end of the track. 跳至音轨结束点。 - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. 选择音调的音高,以便从其他音轨进行和声转换。需要双方碟机均已检测到音调信息。 - - - + + + Pitch Control 變槳距控制 - + Pitch Rate 音高率 - + Displays the current playback rate of the track. 顯示當前播放率的軌道。 - + Repeat 重复 - + When active the track will repeat if you go past the end or reverse before the start. 活動時軌道將重複如果你走過結束或之前開始扭轉。 - + Eject 彈出 - + Ejects track from the player. 彈出從球員的軌道。 - + Hotcue 热切点(Hotcue) - + If hotcue is set, jumps to the hotcue. 若设置了热切,将会跳至热切点。 - + If hotcue is not set, sets the hotcue to the current play position. 如果未設置 hotcue,將 hotcue 設置為當前的播放位置。 - + Vinyl Control Mode 黑膠盤控制模式 - + Absolute mode - track position equals needle position and speed. 绝对模式 - 音轨位置与播放指针的位置和速度一致。 - + Relative mode - track speed equals needle speed regardless of needle position. 相对模式 - 音轨速度与播放指针速度一致(无论指针处于哪个位置) - + Constant mode - track speed equals last known-steady speed regardless of needle input. 持續模式-跟蹤速度等於針輸入最後一個已知穩定速度。 - + Vinyl Status 乙烯基狀態 - + Provides visual feedback for vinyl control status: 为唱盘控制器的状态提供可视化反馈: - + Green for control enabled. 绿色表示已启用控制。 - + Blinking yellow for when the needle reaches the end of the record. 黄色(闪烁)表示播放指针到达记录结尾。 - + Loop-In Marker 迴圈中的標記 - + Loop-Out Marker 圈出標記 - + Loop Halve 循环减半 - + Halves the current loop's length by moving the end marker. 移动循环结束标记,使得循环长度减半。 - + Deck immediately loops if past the new endpoint. 在到达新的结束位置后,碟机将会立即循环。 - + Loop Double 循環雙倍 - + Doubles the current loop's length by moving the end marker. 移动循环结束标记,使得循环长度加倍。 - + Beatloop - + 节拍循环 - + Toggles the current loop on or off. 开启或关闭当前循环。 - + Works only if Loop-In and Loop-Out marker are set. 只當回路中的作品和迴圈出標記設置。 - + Vinyl Cueing Mode 唱盘Cueing模式 - + Determines how cue points are treated in vinyl control Relative mode: 確定如何將提示點處理在乙烯基控制相對模式下︰ - + Off - Cue points ignored. 关闭 - 忽略切入点。 - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. 一個提示-如果針下降後提示點,軌道尋求那提示點。 - + Track Time 音轨时间 - + Track Duration 音轨长度 - + Displays the duration of the loaded track. 显示已加载的音轨的长度。 - + Information is loaded from the track's metadata tags. 已从音轨的元数据标签中载入 信息。 - + Track Artist 曲目演出者 - + Displays the artist of the loaded track. 顯示載入跟蹤的演出者。 - + Track Title 曲目標題 - + Displays the title of the loaded track. 顯示載入跟蹤的標題。 - + Track Album 专辑 - + Displays the album name of the loaded track. 顯示載入跟蹤的專輯名稱。 - + Track Artist/Title 音轨艺术家/标题 - + Displays the artist and title of the loaded track. 顯示的演出者和標題載入跟蹤。 @@ -15516,47 +15992,75 @@ This can not be undone! WCueMenuPopup - + Cue number 提示编号 - + Cue position 提示位置 - + Edit cue label Edit cue label(编辑提示标签) - + Label... 标签 - + Delete this cue 删除此提示 - - Toggle this cue type between normal cue and saved loop - 在正常提示点和保存的 Loop 之间切换此提示类型 + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - 左键单击:使用旧大小或当前 Beatloop 大小作为 Loop 大小 + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - 右键点击:如果当前播放位置在 cue 之后,则将其用作 Loop 结束 + + Right-click: use current play position as new jump start position + - + Hotcue #%1 热提示 #%1 @@ -15681,323 +16185,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist 創建與新的播放清單 - + Create a new playlist 新建播放列表 - + Ctrl+n Ctrl n + - + Create New &Crate 創建新 & 箱 - + Create a new crate 創建一個新的箱子 - + Ctrl+Shift+N Ctrl + Shift + N - - + + &View 查看(&V) - + Auto-hide menu bar 自动隐藏菜单栏 - + Auto-hide the main menu bar when it's not used. 不使用主菜单栏时自动隐藏主菜单栏。 - + May not be supported on all skins. 并非所有皮肤均支持。 - + Show Skin Settings Menu 皮肤设置菜单 - + Show the Skin Settings Menu of the currently selected Skin 显示当前选定皮肤的皮肤设置菜单 - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl 1 + - + Show Microphone Section 顯示麥克風節 - + Show the microphone section of the Mixxx interface. 顯示 Mixxx 介面的麥克風部分。 - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl+2 - + Show Vinyl Control Section 显示唱盘控制界面 - + Show the vinyl control section of the Mixxx interface. 顯示 Mixxx 介面的乙烯基控制部分。 - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl 3 + - + Show Preview Deck 顯示預覽甲板 - + Show the preview deck in the Mixxx interface. 在 Mixxx 内显示显示预览用碟机。 - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl+4 - + Show Cover Art 显示封面 - + Show cover art in the Mixxx interface. 在 Mixxx 介面中顯示封面藝術。 - + Ctrl+6 Menubar|View|Show Cover Art Ctrl 6 + - + Maximize Library 最大化音乐库 - + Maximize the track library to take up all the available screen space. 最大化音樂庫以佔用所有可用的螢幕空間。 - + Space Menubar|View|Maximize Library 空間 - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen 全屏(&F) - + Display Mixxx using the full screen 使用全螢幕的顯示 Mixxx - + &Options 选项(&O) - + &Vinyl Control 與乙烯基控制 - + Use timecoded vinyls on external turntables to control Mixxx 对外部转盘使用时间编码的唱盘控制,以便控制 Mixxx - + Enable Vinyl Control &%1 啟用乙烯控制 & %1 - + &Record Mix 與記錄組合 - + Record your mix to a file 記錄你組合到一個檔 - + Ctrl+R Ctrl+R - + Enable Live &Broadcasting 啟用即時 & 廣播 - + Stream your mixes to a shoutcast or icecast server 将混音通过流输出到 shoutcast 或 icecast 服务器 - + Ctrl+L 按 Ctrl + L - + Enable &Keyboard Shortcuts 启用键快捷键(&K) - + Toggles keyboard shortcuts on or off 键盘快捷键开关 - + Ctrl+` 按 Ctrl +' - + &Preferences 首选项(&P) - + Change Mixxx settings (e.g. playback, MIDI, controls) 改變 Mixxx 的設置 (例如播放 MIDI,控制項) - + &Developer 與開發人員 - + &Reload Skin 重载皮肤(&R) - + Reload the skin 重新載入皮膚 - + Ctrl+Shift+R Ctrl+Shift+R - + Developer &Tools 开发者工具(&T) - + Opens the developer tools dialog 打開開發人員工具對話方塊 - + Ctrl+Shift+T Ctrl + Shift + T - + Stats: &Experiment Bucket 統計: & 實驗鬥 - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. 使實驗模式。收集統計實驗跟蹤存儲桶中。 - + Ctrl+Shift+E Ctrl+Shift+E - + Stats: &Base Bucket 統計: & 基地鬥 - + Enables base mode. Collects stats in the BASE tracking bucket. 启用基础模式。统计数据将会收集到基础跟踪桶中。 - + Ctrl+Shift+B Ctrl+Shift+B - + Deb&ugger Enabled 调试器已启用(&U) - + Enables the debugger during skin parsing 在皮膚分析過程中啟用調試器 - + Ctrl+Shift+D 按 Ctrl + Shift + D - + &Help 與説明 - + Show Keywheel menu title 显示 Keywheel @@ -16014,74 +16558,74 @@ This can not be undone! 将库导出为 Engine DJ 格式 - + Show keywheel tooltip text 显示 Keywheel - + F12 Menubar|View|Show Keywheel F12 - + &Community Support 社区帮助(&C) - + Get help with Mixxx 獲得 Mixxx 的説明 - + &User Manual 與使用者手冊 - + Read the Mixxx user manual. 閱讀 Mixxx 使用者手冊。 - + &Keyboard Shortcuts 键盘快捷键(&K) - + Speed up your workflow with keyboard shortcuts. 加快您的工作流使用鍵盤快速鍵。 - + &Settings directory &设置目录 - + Open the Mixxx user settings directory. 打开 Mixxx 用户设置目录。 - + &Translate This Application 翻译这个程序(&T) - + Help translate this application into your language. 幫忙翻譯成您的語言此應用程式。 - + &About 关于(&A) - + About the application 有關應用程式 @@ -16089,25 +16633,25 @@ This can not be undone! WOverview - + 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 完成处理 ... @@ -16116,25 +16660,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - 清除輸入 - - - - Ctrl+F - Search|Focus - Ctrl+F - - - + Search noun 搜索 - + Clear input 清除輸入 @@ -16145,93 +16677,87 @@ This can not be undone! 搜索... - + Clear the search bar input field 清除搜索栏输入字段 - - Enter a string to search for - 輸入要搜索的字串 + + Return + 返回 - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - 使用运算符,如 bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - 有关更多信息,请参阅 Mixxx Library >用户手册 + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - 快捷方式 + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl+F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - 焦點 + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl + 倒退鍵 + + Additional Shortcuts When Focused: + - Shortcuts - 快捷方式 + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - 返回 + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - 在键入时搜索超时之前触发搜索,或在之后跳转到轨道视图 + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl + 空格键 - + Toggle search history Shows/hides the search history entries 切换搜索历史记录 - + Delete or Backspace 删除或退格 - - Delete query from history - 从历史记录中删除查询 - - - - Esc - 按 esc 鍵 + + in search history + - - Exit search - Exit search bar and leave focus - 退出搜索 + + Delete query from history + 从历史记录中删除查询 @@ -16315,631 +16841,646 @@ This can not be undone! WTrackMenu - + Load to 载入到 - + Deck 甲板上 - + Sampler 取樣器 - + Add to Playlist 添加到播放列表 - + Crates 音軌資料夾 - + Metadata 元数据 - + Update external collections 更新外部集合 - + Cover Art 封面 - + Adjust BPM 调节 BPM - + Select Color 选择颜色 - - + + Analyze 分析 - - + + Delete Track Files 删除音轨数据 - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Add to Auto DJ Queue (replace) 加入自動 DJ 柱列 (取代) - + Preview Deck 预览碟机 - + Remove 移除 - + Remove from Playlist 从播放列表中删除 - + Remove from Crate 从播放列表中删除 - + Hide from Library 隱藏從庫 - + Unhide from Library 從圖書館取消隱藏 - + Purge from Library 从媒体库中清除 - + Move Track File(s) to Trash 将轨道文件移至废纸篓 - + Delete Files from Disk 从磁盘中删除文件 - + Properties 属性 - + Open in File Browser 在文件管理器中打开 - + Select in Library 在库中选择 - + Import From File Tags 从文件标签导入 - + Import From MusicBrainz 从 MusicBrainz 导入 - + Export To File Tags 导出文件属性 - + BPM and Beatgrid 拍速和拍格 - + Play Count 播放计数 - + Rating 评分 - + Cue Point 播放點 - - + + Hotcues 即时切点 - + Intro v - + Outro 结尾 - + Key 關鍵 - + ReplayGain 播放音量增益 - + Waveform 波形 - + Comment 备注 - + All 全部 - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPM 鎖 - + Unlock BPM 拍速解锁 - + Double BPM 拍速倍增 - + Halve BPM 減半 BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze 重新分析 - + Reanalyze (constant BPM) 重新分析(恒定 BPM) - + Reanalyze (variable BPM) 重新分析(变量 BPM) - + Update ReplayGain from Deck Gain 更新Deck Gain的ReplayGain - + Deck %1 甲板 %1 - + Importing metadata of %n track(s) from file tags 从文件标签导入 %n 个轨道的元数据 - + Marking metadata of %n track(s) to be exported into file tags 标记要导出到文件标签的 %n 个轨道的数据 - - + + 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) 缩放 %n 个磁道的 BPM - + Undo BPM/beats change of %n track(s) 撤消 BPM/节拍 %n 个轨道的更改 - + Locking BPM of %n track(s) 锁定 %n 个磁道的 BPM - + Unlocking BPM of %n track(s) 解锁 %n 个磁道的 BPM - + Setting rating of %n track(s) 清除 %n 条轨道的评级 - + Setting color of %n track(s) 设置 %n 个轨道的颜色 - + Resetting play count of %n track(s) 重置 %n 个轨道的播放计数 - + Resetting beats of %n track(s) 重置 %n 个轨道的节拍 - + Clearing rating of %n track(s) 清除 %n 条磁道的评级 - + Clearing comment of %n track(s) 正在清除 %n 个轨道的注释 - + Removing main cue from %n track(s) 从 %n 个轨道中删除主提示点 - + Removing outro cue from %n track(s) 从 %n 个轨道中删除结尾提示 - + Removing intro cue from %n track(s) 从 %n 个轨道中删除前奏提示 - + Removing loop cues from %n track(s) 从 %n 个轨道中删除 Loop 提示点 - + Removing hot cues from %n track(s) 从 %n 个轨道中删除热提示 - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) 重置 %n 个轨道的键 - + Resetting replay gain of %n track(s) 重置 %n 个轨道的重放增益 - + Resetting waveform of %n track(s) 重置 %n 个轨道的波形 - + Resetting all performance metadata of %n track(s) 重置 %n 个轨道的所有性能数据 - + Move these files to the trash bin? 将这些文件移动到垃圾箱? - + Permanently delete these files from disk? 从磁盘中永久删除这些文件? - - + + This can not be undone! 此操作无法撤消! - + Cancel 取消 - + Delete Files 删除文件 - + Okay - + Move Track File(s) to Trash? 要把轨道文件移到垃圾桶吗? - + Track Files Deleted 文件已删除 - + Track Files Moved To Trash 已移动到垃圾桶的文件 - + %1 track files were moved to trash and purged from the Mixxx database. %1 轨道文件被移至废纸篓并从 Mixxx 数据库中清除。 - + %1 track files were deleted from disk and purged from the Mixxx database. %1 轨道文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + Track File Deleted 文件已删除 - + Track file was deleted from disk and purged from the Mixxx database. 跟踪文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + The following %1 file(s) could not be deleted from disk 无法从磁盘中删除以下 %1 文件 - + This track file could not be deleted from disk 无法从磁盘中删除此跟踪文件 - + Remaining Track File(s) 剩余轨道文件 - + Close 關閉 - + Clear Reset metadata in right click track context menu in library 清除 - + Loops 循环 - + Clear BPM and Beatgrid 清除 BPM 和节拍样式 - + Undo last BPM/beats change 撤消上次 BPM/节拍更改 - + Move this track file to the trash bin? 把这个轨道文件移到垃圾桶吗? - + Permanently delete this track file from disk? 永久删除这个轨道文件吗? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. 加载这些轨道的所有卡盘都将停止,轨道将被弹出。 - + All decks where this track is loaded will be stopped and the track will be ejected. 加载此轨道的所有卡盘都将停止,轨道将被弹出。 - + Removing %n track file(s) from disk... 正在从磁盘中删除 %n 个磁道文件... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. 注意:如果您位于 Computer 或 Recording 视图中,则需要再次单击当前视图才能看到更改。 - + Track File Moved To Trash 文件已移至垃圾桶 - + Track file was moved to trash and purged from the Mixxx database. 跟踪文件已移至回收站并从 Mixxx 数据库中清除。 - + Don't show again during this session - + The following %1 file(s) could not be moved to trash 以下 %1 文件无法移至回收站 - + This track file could not be moved to trash 无法将此跟踪文件移至回收站 + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) 设置 %n 个轨道的封面艺术 - + Reloading cover art of %n track(s) 重新加载 %n 个轨道的封面艺术 @@ -16993,37 +17534,37 @@ This can not be undone! WTrackTableView - + Confirm track hide 确认轨道隐藏 - + Are you sure you want to hide the selected tracks? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from AutoDJ queue? 您确定要从 AutoDJ 队列中删除选定的曲目吗? - + Are you sure you want to remove the selected tracks from this crate? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from this playlist? 您确定要从此播放列表中删除选定的曲目吗? - + Don't ask again during this session 在此会话期间不要再次询问 - + Confirm track removal 确认轨道移除 @@ -17031,12 +17572,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. 显示或隐藏列。 - + Shuffle Tracks @@ -17074,22 +17615,22 @@ This can not be undone! 媒体库 - + 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. @@ -17247,6 +17788,24 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 网络请求尚未启动 + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17255,4 +17814,27 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 未加载效果器。 + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/mixxx_zh_TW.qm b/res/translations/mixxx_zh_TW.qm index 203c483ba499..197f1b9996d1 100644 Binary files a/res/translations/mixxx_zh_TW.qm and b/res/translations/mixxx_zh_TW.qm differ diff --git a/res/translations/mixxx_zh_TW.ts b/res/translations/mixxx_zh_TW.ts index b68acdd2c98b..cfc6ea0177d6 100644 --- a/res/translations/mixxx_zh_TW.ts +++ b/res/translations/mixxx_zh_TW.ts @@ -8,6 +8,14 @@ + + AllTrackLibraryFeature + + + All... + + + AnalysisFeature @@ -19,52 +27,52 @@ AutoDJFeature - + Crates 音樂庫 - + Enable Auto DJ - + Disable Auto DJ - + Clear Auto DJ Queue 清除自动 DJ 队列 - + Remove Crate as Track Source 從曲目清單删除音樂庫 - + Auto DJ 自動 DJ - + Confirmation Clear 确认清除 - + Do you really want to remove all tracks from the Auto DJ queue? 您真的要从 Auto DJ 队列中删除所有曲目吗? - + This can not be undone. 此操作无法撤消。 - + Add Crate as Track Source 加入音樂庫為曲目清單 @@ -223,7 +231,7 @@ - + Export Playlist 匯出播放清單 @@ -277,13 +285,13 @@ - + Playlist Creation Failed 播放清單建立失敗 - + An unknown error occurred while creating playlist: 建立播放清單時發生未知的錯誤︰ @@ -298,12 +306,12 @@ 您確定要刪除播放清單 <b>%1</b>嗎? - + 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) @@ -311,12 +319,12 @@ BaseSqlTableModel - + # # - + Timestamp 時間戳記 @@ -324,7 +332,7 @@ BaseTrackPlayerImpl - + Couldn't load track. 無法載入曲目。 @@ -362,7 +370,7 @@ 電視頻道 - + Color 顏色 @@ -377,7 +385,7 @@ 作曲者 - + Cover Art 封面 @@ -387,7 +395,7 @@ 加入日期 - + Last Played 最後播放 @@ -417,7 +425,7 @@ 音調 - + Location 位置 @@ -427,7 +435,7 @@ - + Preview 預覽 @@ -467,7 +475,7 @@ 年份 - + Fetching image ... Tooltip text on the cover art column shown when the cover is read from disk 獲取圖片中... @@ -489,22 +497,22 @@ BroadcastProfile - + Can't use secure password storage: keychain access failed. 無法使用安全密碼儲存:鑰匙圈存取失敗。 - + Secure password retrieval unsuccessful: keychain access failed. 安全密碼檢索失敗:鑰匙圈存取失敗。 - + Settings error 設定錯誤 - + <b>Error with settings for '%1':</b><br> <b>設定 '%1' 失敗:</b><br> @@ -592,7 +600,7 @@ - + Computer 電腦 @@ -612,19 +620,19 @@ 掃描 - + "Computer" lets you navigate, view, and load tracks from folders on your hard disk and external devices. 「電腦」可讓您從硬碟和外部裝置上的資料夾中導覽、檢視和載入曲目。 - + It shows the data from the file tags, not track data from your Mixxx library like other track views. - + 它显示的是文件标签中的数据,而不是像其他曲目视图那样来自你的 Mixxx 库的曲目数据。 - + If you load a track file from here, it will be added to your library. - + 如果你从这里加载曲目文件,它将被添加到你的库中。 @@ -735,12 +743,12 @@ 檔案已建立 - + Mixxx Library Mixxx 音樂庫 - + Could not load the following file because it is in use by Mixxx or another application. 無法載入下面的檔,因為它是由 Mixxx 或另一個應用程式使用。 @@ -771,87 +779,92 @@ CmdlineArgs - + Mixxx is an open source DJ software. For more information, see: Mixxx 是一款開源的 DJ 軟體。欲瞭解更多資訊,請參閱以下網址: - + Starts Mixxx in full-screen mode Mixxx 全螢幕模式下啟動 - + Use a custom locale for loading translations. (e.g 'fr') 使用自訂語言區域載入翻譯。(例如 'fr') - + Top-level directory where Mixxx should look for its resource files such as MIDI mappings, overriding the default installation location. Mixxx 應該尋找其資源檔案的頂層目錄,例如 MIDI 映射,以覆蓋默認安裝位置。 - + 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 使 Mixxx 顯示/記錄其接收的所有控制器資料和載入的腳本函數 - + The controller mapping will issue more aggressive warnings and errors when detecting misuse of controller APIs. New Controller Mappings should be developed with this option enabled! 當檢測到控制器 API 被誤用時,控制器映射將發出更積極的警告和錯誤。新的控制器映射應該啟用此選項進行開發! - + Enables developer-mode. Includes extra log info, stats on performance, and a Developer tools menu. 啟用開發者模式。包括額外的日誌資訊、性能統計和開發者工具選單。 - + Top-level directory where Mixxx should look for settings. Default is: Mixxx 應該尋找設定的頂層目錄。預設值為: - + Starts Auto DJ when Mixxx is launched. 启动Mixxx时自动开始DJ。 - + Rescans the library when Mixxx is launched. - + 在启动 Mixxx 时重新扫描库。 - + Use legacy vu meter 使用傳統的音量表 - + Use legacy spinny 使用舊版的旋轉界面 - - Loads experimental QML GUI instead of legacy QWidget skin - 使用實驗性的 QML 介面,而不是舊版的 QWidget 介面 + + Loads the highly unstable 3.0 Mixxx interface, based on QML. You need to use a new setting profile, or run with 'allow-dangerous-data-corruption-risk' to use with the current one. We highly recommend backing up your data if you do so. + + + + + Force Mixxx to load an unstable version with an existing user profile from a stable version + - + Enables safe-mode. Disables OpenGL waveforms, and spinning vinyl widgets. Try this option if Mixxx is crashing on startup. 啟用安全模式。禁用 OpenGL 波形和旋轉的黑膠碟小工具。如果 Mixxx 在啟動時崩潰,請嘗試使用此選項。 - + [auto|always|never] Use colors on the console output. [自動|始終|從不] 在控制台輸出中使用顏色。 - + Sets the verbosity of command line logging. critical - Critical/Fatal only warning - Above + Warnings @@ -866,32 +879,32 @@ 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. 設定記錄級別,當記錄緩衝區刷新到 mixxx.log 時。其中<level>是上述--log-level中定義的值之一。 - + Sets the maximum file size of the mixxx.log file in bytes. Use -1 for unlimited. The default is 100 MB as 1e5 or 100000000. 设置 mixxx.log 文件的最大文件大小(以字节为单位)。使用 -1 表示无限制。默认值为 100 MB,为 1e5 或 100000000。 - + Breaks (SIGINT) Mixxx, if a DEBUG_ASSERT evaluates to false. Under a debugger you can continue afterwards. 如果 DEBUG_ASSERT 評估為 false,則中斷(SIGINT)Mixxx。在調試器下,您可以之後繼續執行。 - + Overrides the default application GUI style. Possible values: %1 - + Load the specified music file(s) at start-up. Each file you specify will be loaded into the next virtual deck. 在啟動時載入指定的音樂檔案。您指定的每個檔案將被載入到下一個虛擬的檯面。 - + Preview rendered controller screens in the Setting windows. 在设置窗口中预览渲染好的控制器屏幕。 @@ -984,2557 +997,2585 @@ trace - Above + Profiling messages ControlPickerMenu - + Headphone Output 耳機輸出 - - - + + + + Deck %1 + %1 is the deck number 1 ... 4 甲板 %1 - + Sampler %1 採樣器 %1 - + Preview Deck %1 預覽甲板 %1 - + Microphone %1 麥克風 %1 - + Auxiliary %1 輔助 %1 - + Reset to default 重置為預設值 - + Effect Rack %1 效果機架 %1 - + Parameter %1 參數 %1 - + Mixer 混音器 - - + + Crossfader 推桿 - + Headphone mix (pre/main) 耳機混音 (前/主) - + Toggle headphone split cueing 切換耳機分離監聽 - + Headphone delay 耳機延遲 - + Transport 傳輸 - + Strip-search through track 透過曲目進行搜尋 - + Play button 播放按鈕 - - + + Set to full volume 設定為最大音量 - - + + Set to zero volume 音量設定為零 - + Stop button 停止按鈕 - + Jump to start of track and play 跳至曲目開頭並播放 - + Jump to end of track 跳至曲目結尾 - + Reverse roll (Censor) button 倒帶滾動(審查)按鈕 - + Headphone listen button 耳機監聽按鈕 - - + + Mute button 靜音按鈕 - + Toggle repeat mode 切換重複模式 - - + + Mix orientation (e.g. left, right, center) 混合方向 (例如左、 右側、 中心) - - + + Set mix orientation to left 設定輸出聲道為左聲道 - - + + Set mix orientation to center 設定輸出聲道為立體聲 - - + + Set mix orientation to right 設定輸出聲道為右聲道 - + Toggle slip mode 切換滑動模式 - - + + BPM BPM - + Increase BPM by 1 BPM 增加 1 - + Decrease BPM by 1 BPM 減少 1 - + Increase BPM by 0.1 BPM 增加 0.1 - + Decrease BPM by 0.1 BPM 減少 0.1 - + BPM tap button BPM 開關按鈕 - + Toggle quantize mode 切換量化模式 - + One-time beat sync (tempo only) 一次性節拍同步 (只有節奏) - + One-time beat sync (phase only) 一次性節拍同步 (僅階段) - + Toggle keylock mode 切換鍵鎖模式 - + Equalizers 等化器 - + 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) 切入按鈕(CDJ 模式) - + 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 音樂庫 - + Slot %1 插槽 %1 - + Headphone Mix 耳機混音器 - + Headphone Split Cue 耳機拆分提示 - + Headphone Delay 耳機延遲 - + Play 播放 - + Fast Rewind 快速倒帶 - + Fast Rewind button 快速倒帶按鈕 - + Fast Forward 快轉 - + Fast Forward button 快轉按鈕 - + Strip Search 完整搜索 - + Play Reverse 倒放 - + Play Reverse button 倒放按鈕 - + Reverse Roll (Censor) 倒帶滾動(審查) - + Jump To Start 跳轉到開始 - + Jumps to start of track 跳至曲目開始 - + Play From Start 從開始處播放 - + Stop 停止 - + Stop And Jump To Start 停止並跳轉到開始 - + Stop playback and jump to start of track 停止播放並跳至曲目開始 - + Jump To End 跳轉到結束 - + Volume 音量 - - - + + + Volume Fader 音量推桿 - - + + Full Volume 最大音量 - - + + Zero Volume 最小音量 - + Track Gain 曲目增益 - + Track Gain knob 曲目增益旋鈕 - - + + Mute 靜音 - + Eject 退出 - - + + Headphone Listen 耳機監聽 - + Headphone listen (pfl) button 耳機監聽(PFL)按鈕 - + Repeat Mode 重複模式 - + Slip Mode 滑動模式 - - + + Orientation 方向 - - + + Orient Left 左方向 - - + + Orient Center 中心 - - + + Orient Right 右方向 - + BPM +1 每分鐘拍數 +1 - + BPM -1 每分鐘拍數 -1 - + BPM +0.1 每分鐘拍數 +0.1 - + BPM -0.1 每分鐘拍數 -0.1 - + BPM Tap 每分鐘拍數偵測 - + Adjust Beatgrid Faster +.01 調快節拍速度 +.01 - + Increase track's average BPM by 0.01 曲目的平均每分鐘拍數增加 0.01 - + Adjust Beatgrid Slower -.01 調慢節拍速度 -.01 - + Decrease track's average BPM by 0.01 曲目的平均每分鐘拍數減少 0.01 - + Move Beatgrid Earlier 將節拍網格向前調整 - + Adjust the beatgrid to the left 將節拍網格向左調整 - + Move Beatgrid Later 將節拍網格向後調整 - + Adjust the beatgrid to the right 將節拍網格向右調整 - + Adjust Beatgrid 調整節拍網格 - + Align beatgrid to current position 對齊節拍網格至目前位置 - + Adjust Beatgrid - Match Alignment 調整節拍網格 - 符合對齊 - + Adjust beatgrid to match another playing deck. 調整節拍網格以匹配另一個播放檯面。 - + Quantize Mode 量化模式 - + Sync 同步 - + Beat Sync One-Shot 節拍同步單次觸發 - + Sync Tempo One-Shot 同步節奏單次觸發 - + Sync Phase One-Shot 同步相位單次觸發 - + 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 重置至原始音調 - + High EQ 高頻等化器 - + Mid EQ 中頻等化器 - - + + Main Output 主输出 - + Main Output Balance 主输出均衡 - + Main Output Delay 主输出延迟 - + Main Output Gain 主输出增益 - + Low 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 設置切入點 - + Go-To Cue 前往切入點 - + Go-To Cue And Play 前往切入點並播放 - + Go-To Cue And Stop 前往切入點並停止 - + Preview Cue 預覽提示 - + Cue (CDJ Mode) 提示 (CDJ 模式) - + Stutter Cue Stutter切入 - + 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 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 開啟/關閉 - + Show/hide the microphone & auxiliary section 显示/隐藏麦克风和辅助部分 - + 4 Effect Units Show/Hide 显示/隐藏效果器 - + Switches between showing 2 and 4 effect units 在显示2和4个效果单位之间切换 - + 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 波形縮小 - + Headphone Gain 耳機增益 - + Headphone gain 耳機增益 - + Tap to sync tempo (and phase with quantize enabled), hold to enable permanent sync 点击同步速度(和相位与量化启用),保持启用永久同步 - + One-time beat sync tempo (and phase with quantize enabled) 同步节奏 - + 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) 暫時降低速度 (精細) - - + + Adjust %1 調整 %1 - + + Deck %1 Stem %2 + + + + Effect Unit %1 效果单元 %1 - + Button Parameter %1 旋钮参数% 1 - + Skin 皮膚 - + Controller 控制器 - + Crossfader / Orientation 唱片平滑转换器/方向 - + Main Output gain 主输出增益 - + Main Output balance 主输出均衡 - + Main Output delay 主输出延迟 - + Headphone 耳機 - - + + Kill %1 + %1 is "Low EQ" "Mid EQ" or "High EQ" 關閉 %1 - + Eject or un-eject track, i.e. reload the last-ejected track (of any deck)<br>Double-press to reload the last replaced track. In empty decks it reloads the second-last ejected track. 彈出或取消彈出曲目,即重新載入最後彈出的曲目(任何檯面)<br>雙按以重新載入最後替換的曲目。在空檯面上,它將重新載入倒數第二個彈出的曲目。 - + BPM / Beatgrid BPM / 网格 - + Halve BPM BPM 减半 - + Multiply current BPM by 0.5 将当前BPM乘0.5 - + 2/3 BPM 2/3 BPM - + Multiply current BPM by 0.666 将当前BPM乘0.666 - + 3/4 BPM 3/4 BPM - + Multiply current BPM by 0.75 将当前BPM乘0.75 - + 4/3 BPM 4/3 BPM - + Multiply current BPM by 1.333 将当前BPM乘0.666 - + 3/2 BPM 3/2 BPM - + Multiply current BPM by 1.5 将当前BPM乘1.5 - + Double BPM BPM 加倍 - + Multiply current BPM by 2 1.5倍BPM - + Tempo Tap 节奏敲击 - + Tempo tap button 节奏敲击按钮 - + Move Beatgrid 調整節拍網格 - + Adjust the beatgrid to the left or right 將節拍網格向左或向右調整 - + Move Beatgrid Half a Beat - + 将节拍网格移动半个节拍 - + Adjust the beatgrid by exactly one half beat. Usable only for tracks with constant tempo. - + 将节拍网格精确调整半拍。仅适用于节奏恒定的曲目。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/beatgrid 锁 - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - + Sync / Sync Lock 同步/同步锁定 - + Internal Sync Leader 内部同步高音 - + Toggle Internal Sync Leader 切换内部同步高音 - - + + Internal Leader BPM 內部主 BPM - + Internal Leader BPM +1 內部主 BPM +1 - + Increase internal Leader BPM by 1 增加 1 级内置BPM - + Internal Leader BPM -1 內部主 BPM -1 - + Decrease internal Leader BPM by 1 减少 1 级内置BPM - + Internal Leader BPM +0.1 內部主 BPM +0.1 - + Increase internal Leader BPM by 0.1 增加 1 级内置BPM - + Internal Leader BPM -0.1 內部主 BPM +0.1 - + Decrease internal Leader BPM by 0.1 將內部主導節拍每分鐘減少 0.1 BPM - + Sync Leader 同步高音 - + Sync mode 3-state toggle / indicator (Off, Soft Leader, Explicit Leader) 同步模式切换/指示灯(关,低音,高音) - + Speed 速度 - + Decrease Speed (Fine) 減慢速度(微調) - + Pitch (Musical Key) 音高 - + Increase Pitch 升高音调 - + Increases the pitch by one semitone 将音高增加一个半音 - + Increase Pitch (Fine) 增加间距(细) - + Increases the pitch by 10 cents 增加10间距 - + Decrease Pitch 降低音调 - + Decreases the pitch by one semitone 将音高降低一个半音 - + Decrease Pitch (Fine) 减少间距(细) - + Decreases the pitch by 10 cents 将音高降低10间距 - + Keylock 鑰匙鎖 - + CUP (Cue + Play) CUP (提示 + 播放) - + Shift cue points earlier 移动提示点 - + Shift cue points 10 milliseconds earlier 将提示点移动10毫秒 - + Shift cue points earlier (fine) 移动提示点(可选) - + Shift cue points 1 millisecond earlier 将提示点移动1毫秒 - + Shift cue points later 稍后移动提示点 - + Shift cue points 10 milliseconds later 10毫秒后移动提示点 - + Shift cue points later (fine) 稍后移动(好) - + Shift cue points 1 millisecond later 1毫秒后移动提示点 - - + + Sort hotcues by position - + 按位置排序热键点 - - + + Sort hotcues by position (remove offsets) - + 按位置排序热键(移除偏移) - + Hotcues %1-%2 - 热切点 %1-%2 + 熱點 %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 激活Cue - + Jump to or set the %1 [intro/outro marker 跳转到热切点 %1 - + Set %1 [intro/outro marker 設定 %1 - + Set or jump to the %1 [intro/outro marker 設定或跳至 %1 - + Clear %1 [intro/outro marker 清除 %1 - + Clear the %1 [intro/outro marker 清除 %1 - + if the track has no beats the unit is seconds 如果轨道没有节拍,则单位为秒 - + 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 %1 Beats set from its end point Loop %1 从结束点开始设置的节拍 - + Loop Roll %1 Beats set from its end point Loop Roll %1 从结束点开始设置的节拍 - + Create %1-beat loop with the current play position as loop end 创建 %1 拍 Loop,并将当前播放位置作为 Loop 结束 - + Create temporary %1-beat loop roll with the current play position as loop end 创建临时的 %1 拍 Loop 滚动,并将当前播放位置作为 Loop 结束 - + Loop Beats 循环节拍 - + Loop Roll Beats 循环滚动节拍 - + Go To Loop In 跳转到循环 - + Go to Loop In button 跳转到循环按钮 - + Go To Loop Out 前往循環終點 - + Go to Loop Out button 前往循環終點按鈕 - + 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 个节拍,或者如果启用了 Loop,则将 Loop 向后移动 %1 个节拍 - + Beat Jump / Loop Move Forward Selected Beats Beat Jump / Loop 向前移动选定的节拍 - + Jump forward by the selected number of beats, or if a loop is enabled, move the loop forward by the selected number of beats 向前跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向前移动选定的节拍数 - + Beat Jump / Loop Move Backward Selected Beats Beat Jump / Loop 向后移动选定的节拍 - + Jump backward by the selected number of beats, or if a loop is enabled, move the loop backward by the selected number of beats 向后跳转选定的节拍数,或者如果启用了 Loop,则将 Loop 向后移动选定的节拍数 - + Beat Jump 跳拍 - + Indicate which loop marker remain static when adjusting the size or is inherited from the current position 指示在调整大小时哪个 Loop 标记保持静止或从当前位置继承 - + Beat Jump / Loop Move Forward 节拍跳跃/循环移动 - + Beat Jump / Loop Move Backward 节拍跳跃/循环移动 - + Loop Move Forward 向前移動循環 - + Loop Move Backward 向後移動循環 - + Remove Temporary Loop 移除臨時循環 - + Remove the temporary loop 移除臨時循環 - + 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 键效果一致 - + Sort focused column 將焦點列進行排序 - + Sort the column of the cell that is currently focused, equivalent to clicking on its header 對當前專注的儲存格所在的列進行排序,相當於點擊其標題欄。 - + 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 將所選的搜索歷史項目移動到指定的方向和步驟 - + Clear search 清除搜索 - + Clears the search query 清除搜索查詢 - - + + Select Next Color Available 选择下一个可用颜色 - + Select the next color in the color palette for the first selected track 在调色板中选择第一个选定轨道的下一种颜色 - - + + Select Previous Color Available 选择以前的可用颜色 - + Select the previous color in the color palette for the first selected track 在调色板中选择第一个选定轨道的上一种颜色 - + + Quick Effects Deck %1 + + + + Deck %1 Quick Effect Enable Button 檯面 %1 快速效果啟用按鈕 - + + Quick Effect Enable Button 快速效果啟用按鈕 - + + Deck %1 Stem %2 Quick Effect Super Knob + + + + + Deck %1 Stem %2 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) 切換麥克風迴避模式 (關閉、 自動、 手動) - + 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 顯示/隱藏取樣器節 - + Microphone && Auxiliary Show/Hide keep double & to prevent creation of keyboard accelerator 麦克风和辅助显示/隐藏 - + Waveform Zoom Reset To Default 將波形縮放重置為預設值 - + Reset the waveform zoom level to the default value selected in Preferences -> Waveforms 將波形縮放級別重置為首選項 -> 波形 中選擇的預設值 - + Select the next color in the color palette for the loaded track. 在调色板中选择加载轨道的下一种颜色。 - + Select previous color in the color palette for the loaded track. 在加载的轨道的调色板中选择上一种颜色。 - + Navigate Through Track Colors 浏览轨道颜色 - + Select either next or previous color in the palette for the loaded track. 选择调色板中加载轨道的下一个或上一个颜色 - + Start/Stop Live Broadcasting 開始/停止直播 - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Start/stop recording your mix. 開始/停止錄製您的混音。 - - + + + Deck %1 Stems + + + + + 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 將曲目評分減少一顆星 @@ -3547,6 +3588,159 @@ trace - Above + Profiling messages + + ControllerHidReportTabsManager + + + Read + + + + + Send + + + + + Payload Size + + + + + bytes + + + + + Byte Position + + + + + Bit Position + + + + + Bit Size + + + + + Logical Min + + + + + Logical Max + + + + + Value + + + + + Physical Min + + + + + Physical Max + + + + + Unit Scaling + + + + + Unit + + + + + Abs/Rel + + + + + + Wrap + + + + + + Linear + + + + + + Preferred + + + + + + Null + + + + + + Volatile + + + + + Usage Page + + + + + Usage + + + + + Relative + + + + + Absolute + + + + + No Wrap + + + + + Non Linear + + + + + No Preferred + + + + + No Null + + + + + Non Volatile + + + ControllerInputMappingTableModel @@ -3649,32 +3843,32 @@ trace - Above + Profiling messages 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. 控制器“%1”的映射工作不正常。 - + The script code needs to be fixed. 腳本代碼需要修理。 @@ -3682,27 +3876,27 @@ trace - Above + Profiling messages ControllerScriptEngineLegacy - + Controller Mapping File Problem 控制器映射文件问题 - + The mapping for controller "%1" cannot be opened. 无法打开控制器“%1”的映射。 - + The functionality provided by this controller mapping will be disabled until the issue has been resolved. 在问题得到解决之前,此控制器映射提供的功能将被禁用。 - + File: 文件: - + Error: 错误: @@ -3735,7 +3929,7 @@ trace - Above + Profiling messages - + Lock @@ -3765,7 +3959,7 @@ trace - Above + Profiling messages 自動 DJ 音軌來源 - + Enter new name for crate: 輸入收集箱的新名稱︰ @@ -3782,22 +3976,22 @@ trace - Above + Profiling messages 匯入箱 - + Export Crate 匯出音樂箱 - + Unlock 解鎖 - + An unknown error occurred while creating crate: 創建音樂箱時發生未知的錯誤︰ - + Rename Crate 重新命名音樂箱 @@ -3807,28 +4001,28 @@ trace - Above + Profiling messages 为你的下场表演、最喜爱的音轨和最常用的歌曲新建分类列表 - + Confirm Deletion 确认删除 - - + + 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) - + M3U Playlist (*.m3u) M3U 播放清單 (*.m3u) @@ -3849,17 +4043,17 @@ trace - Above + Profiling messages 音樂箱讓你組織你的音樂,你會喜歡 ! - + Do you really want to delete crate <b>%1</b>? 确定删除播放列表<b>%1</b>吗? - + A crate cannot have a blank name. 音樂箱名稱不得空白。 - + A crate by that name already exists. 已經有相同名稱的音樂箱。 @@ -3954,12 +4148,12 @@ trace - Above + Profiling messages 過去的貢獻者 - + Official Website 官方网站 - + Donate 捐献 @@ -4763,122 +4957,139 @@ You tried to learn: %1,%2 DlgPrefBroadcast - + Icecast 2 Icecast 2 - + Shoutcast 1 Shoutcast 1 - + Icecast 1 Icecast 1 - + MP3 MP3 - + Ogg Vorbis Ogg 格式 - + Opus Opus - + AAC AAC - + HE-AAC HE-AAC - + HE-AACv2 HE-AACv2 - + Automatic 自动 - + Mono 單聲道 - + Stereo 身歷聲 - - - - + + Saving settings failed + + + + + The password for '%1' contains invalid characters. Please enter it again. + +Note: This can for example be invisible linebreaks when using copy/paste. + + + + + + Action failed 行動失敗 - + You can't create more than %1 source connections. 你不能创建超过 %1 个源连接。 - + Source connection %1 源连接 %1 - + + Settings for %1 + Settings for broadcast profile, %1 is the profile name placeholder + + + + At least one source connection is required. 至少需要一个源连接。 - + Are you sure you want to disconnect every active source connection? 是否确实要断开每个活动的源连接? - - + + Confirmation required 需要确认 - + '%1' has the same Icecast mountpoint as '%2'. Two source connections to the same server that have the same mountpoint can not be enabled simultaneously. '%1' 和 '%2' 有相同的 Icecast 挂载点。两个连接到同一服务器的源,挂载点相同的情况下不能同时启用。 - + Are you sure you want to delete '%1'? 是否确实要删除“%1”? - + Renaming '%1' 重命名 '%1' - + New name for '%1': '%1' 的新名称: - + Can't rename '%1' to '%2': name already in use 无法将 '%1' 重命名为 '%2':名称已被使用 @@ -4891,27 +5102,27 @@ Two source connections to the same server that have the same mountpoint can not 直播首選項 - + Mixxx Icecast Testing Mixxx Icecast 測試 - + Public stream 公共流 - + http://www.mixxx.org HTTP://www.mixxx.org - + Stream name 流名稱 - + 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. 由於在一些流的用戶端中的缺陷,動態更新 Ogg 格式的中繼資料可以導致攔截器故障和斷開。選中此框,反正更新中繼資料。 @@ -4951,67 +5162,72 @@ Two source connections to the same server that have the same mountpoint can not %1 的设置 - + + Available fields: $artist, $title, $year, $album, $genre, $bpm + + + + Dynamically update Ogg Vorbis metadata. 動態更新 Ogg 格式的中繼資料。 - + ICQ ICQ - + AIM AIM - + Website 網站 - + Live mix 現場攪拌 - + IRC IRC - + Select a source connection above to edit its settings here 在上面选择一个源连接以在此处编辑其设置 - + Password storage 密码存储方式 - + Plain text 明文 - + Secure storage (OS keychain) 安全存储区(系统钥匙链) - + Genre 體裁 - + Use UTF-8 encoding for metadata. 使用 utf-8 編碼的中繼資料。 - + Description 描述 @@ -5037,42 +5253,42 @@ Two source connections to the same server that have the same mountpoint can not 電視頻道 - + Server connection 伺服器連接 - + Type 類型 - + Host 主機 - + Login 登錄 - + Mount 裝載 - + Port - + Password 密碼 - + Stream info 流信息 @@ -5082,17 +5298,17 @@ Two source connections to the same server that have the same mountpoint can not 元数据 - + Use static artist and title. 使用静态的艺术家名称和标题 - + Static title 静态标题 - + Static artist 静态艺术家名称 @@ -5151,13 +5367,14 @@ Two source connections to the same server that have the same mountpoint can not DlgPrefColors - - + + + By hotcue number 按 hotcue 编号 - + Color 颜色 @@ -5202,132 +5419,137 @@ Two source connections to the same server that have the same mountpoint can not + Jump default color + + + + When key colors are enabled, Mixxx will display a color hint associated with each key. - + Enable Key Colors - + 启用关键颜色 - + Key palette - + 快捷调色板 DlgPrefController - + Apply device settings? 應用設備設置嗎? - + Your settings must be applied before starting the learning wizard. Apply settings and continue? 開始學習嚮導前,必須應用您的設置。 應用設置並繼續? - + None 沒有一個 - + %1 by %2 %2 %1 - + Mapping has been edited 映射已编辑 - + Always overwrite during this session 在此会话期间始终覆盖 - + Save As 另存为 - + Overwrite 覆盖 - + Save user mapping 保存用户映射 - + Enter the name for saving the mapping to the user folder. 输入用于将映射保存到用户文件夹的名称。 - + Saving mapping failed 保存映射失败 - + A mapping cannot have a blank name and may not contain special characters. 映射不能具有空白名称,并且不能包含特殊字符。 - + A mapping file with that name already exists. 具有该名称的映射文件已存在。 - + Do you want to save the changes? 是否要保存更改? - + Troubleshooting 疑難排解 - + <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>. 如果使用此映射,则控制器可能无法正常工作。请选择其他映射或禁用控制器。此映射专为较新的 Mixxx 控制器引擎而设计,不能用于您当前的 Mixxx 安装。您的 Mixxx 安装的 Controller Engine 版本为 %1。此映射需要 Controller Engine 版本 >= %2。有关更多信息,请访问有关 Controller Engine 版本的 wiki 页面。 - + Mapping already exists. 映射已存在。 - + <b>%1</b> already exists in user mapping folder.<br>Overwrite or save with a new name? <b>%1</b>已存在于用户映射文件夹中.<br>覆盖还是用新名称保存? - + Clear Input Mappings 清除輸入的映射 - + Are you sure you want to clear all input mappings? 你確定你想要清除所有輸入的映射? - + Clear Output Mappings 清除輸出映射 - + Are you sure you want to clear all output mappings? 你確定你想要清除所有輸出映射? @@ -5345,100 +5567,105 @@ Apply settings and continue? 啟用 - - Device Info + + Refresh mapping list - + + Device Info + 设备信息 + + + Physical Interface: - + 物理接口: - + Vendor name: - + 供应商名称: - + Product name: - + 产品名称: - + Vendor ID - + VID: - + Product ID - + PID: - + Serial number: - + USB interface number: - + HID Usage-Page: - + HID Usage: - + Description: 描述︰ - + Support: 支援︰ - + Screens preview - + Input Mappings 輸入的映射 - - + + Search 搜索 - - + + Add 添加 - - + + Remove 刪除 @@ -5458,17 +5685,17 @@ Apply settings and continue? 加载映射: - + Mapping Info 映射信息 - + Author: 作者︰ - + Name: 名稱︰ @@ -5478,28 +5705,28 @@ Apply settings and continue? 學習嚮導 (僅適用于 MIDI) - + Data protocol: - + Mapping Files: 映射文件: - + Mapping Settings - - + + Clear All 全部清除 - + Output Mappings 輸出映射 @@ -5514,21 +5741,21 @@ 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 使用“映射”将来自控制器的消息连接到 Mixxx 中的控件。如果您在单击左侧边栏上的控制器时在“加载映射”菜单中没有看到控制器的映射,您可以从 %1 在线下载一个。将 XML (.xml) 和 Javascript (.js) 文件放在“用户映射文件夹”中,然后重新启动 Mixxx。如果您下载 ZIP 文件中的映射,请将 XML 和 Javascript 文件从 ZIP 文件解压到您的“用户映射文件夹”,然后重新启动 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 click the Reload button next to the mapping selector to reload all available mappings. 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 click the Reload button. + - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + MIDI Mapping File Format MIDI 映射文件格式 - + MIDI Scripting with Javascript 使用 Javascript 编写 MIDI 脚本 @@ -5658,6 +5885,16 @@ Apply settings and continue? Multi-Sampling 多重采样 + + + Force 3D acceleration + + + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + Start in full-screen mode @@ -5687,137 +5924,137 @@ Apply settings and continue? DlgPrefDeck - + Mixxx mode Mixxx 模式 - + Mixxx mode (no blinking) Mixxx 模式 (無閃爍) - + Pioneer mode 先驅模式 - + Denon mode 電音模式 - + Numark mode 發展模式 - + CUP mode CUP 模式 - + mm:ss%1zz - Traditional mm:ss%1zz - 繁体 - + mm:ss - Traditional (Coarse) mm:ss - 传统 (粗) - + s%1zz - Seconds s%1zz - 秒 - + sss%1zz - Seconds (Long) sss%1zz - 秒(长) - + s%1sss%2zz - Kiloseconds s%1sss%2zz - 千秒 - + Intro start 入门 - + Main cue 主要提示 - + First hotcue 第一个 hotcue - + First sound (skip silence) 第一个声音 (跳过静音) - + Beginning of track 轨道起点 - + Reject 拒绝 - + Allow, but stop deck 允许,但停止甲板 - + Allow, play from load point 允许,从加载点播放 - + 4% 4% - + 6% (semitone) 6%(半音) - + 8% (Technics SL-1210) 8%(工藝 SL-1210) - + 10% 10% - + 16% 16% - + 24% 24% - + 50% 50% - + 90% 90% @@ -6266,62 +6503,62 @@ 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 當播放歌曲時禁止螢幕保護程式 - + Disabled 禁用 - + 2x MSAA 2倍采样抗锯齿 - + 4x MSAA 4倍采样抗锯齿 - + 8x MSAA 8倍采样抗锯齿 - + 16x MSAA 16倍采样抗锯齿 - + This skin does not support color schemes 這種皮膚不支援色彩配置 - + Information 資訊 - + Mixxx must be restarted before the new locale, scaling or multi-sampling settings will take effect. 在新的区域设置、缩放或多重采样设置生效之前,必须重新启动Mixxx。 @@ -6548,67 +6785,97 @@ and allows you to pitch adjust them for harmonic mixing. 有关详细信息,请参阅手册 - + 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 掃描 - + Item is not a directory or directory is missing 项目不是目录或目录缺失 - + 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 重新連結到新位置的音樂目錄 - + + Black + + + + + ExtraBold + + + + + Bold + + + + + SemiBold + + + + + Medium + + + + + Light + + + + Select Library Font 選擇庫字體 @@ -6657,262 +6924,267 @@ and allows you to pitch adjust them for harmonic mixing. 启动时重新扫描目录 - + Audio File Formats 音訊檔案格式 - + Track Table View 轨道视图 - + Track Double-Click Action: 轨道双击操作: - + BPM display precision: BPM 显示精度: - + Session History 工作階段紀錄 - + Track duplicate distance 跟踪重复距离 - + When playing a track again log it to the session history only if more than N other tracks have been played in the meantime 再次播放轨道时,仅当同时播放了 N 个以上的其他轨道时,才会将其记录到会话历史记录中 - + History playlist with less than N tracks will be deleted<br/><br/>Note: the cleanup will be performed during startup and shutdown of Mixxx. 少于 N 首曲目的历史播放列表将被删除注意:清理将在 Mixxx 启动和关闭期间进行。 - + Delete history playlist with less than N tracks 删除少于 N 首曲目的历史播放列表 - + Library Font: 圖書館字體︰ - + + Show scan summary dialog + + + + Grey out played tracks 灰显播放的曲目 - + Track Search 轨迹搜索 - + Enable search completions 启用搜索补全 - + Enable search history keyboard shortcuts 启用搜索历史记录键盘快捷键 - + Percentage of pitch slider range for 'fuzzy' BPM search: “模糊”BPM 搜索范围: - + This range will be used for the 'fuzzy' BPM search (~bpm:) via the search box, as well as for BPM search in Track context menu > Search related Tracks 此范围将通过搜索框用于“模糊”BPM 搜索 (~bpm:),以及用于 Search related Tracks > Track 上下文菜单中的 BPM 搜索 - + Preferred Cover Art Fetcher Resolution 首选封面图片提取程序分辨率 - + Fetch cover art from coverartarchive.com by using Import Metadata From Musicbrainz. 使用从 Musicbrainz 导入数据 从 coverartarchive.com 中获取封面。 - + Note: ">1200 px" can fetch up to very large cover arts. 注意:“>1200 px”最多可以获取非常大的封面。 - + >1200 px (if available) >1200 像素(如果可用) - + 1200 px (if available) 1200 像素(如果可用) - + 500 px 500像素 - + 250 px 250像素 - + Settings Directory 设置目录 - + The Mixxx settings directory contains the library database, various configuration files, log files, track analysis data, as well as custom controller mappings. Mixxx 设置目录包含库数据库、各种配置文件、日志文件、轨道分析数据以及自定义控制器映射。 - + Edit those files only if you know what you are doing and only while Mixxx is not running. 仅当您知道自己在做什么时,并且仅在 Mixxx 未运行时编辑这些文件。 - + Open Mixxx Settings Folder 打开 Mixxx 设置文件夹 - + Library Row Height: 圖書館行高︰ - + Use relative paths for playlist export if possible 如果可能的話使用相對路徑進行播放清單匯出 - + ... ... - + px px - + Synchronize library track metadata from/to file tags 从文件标签同步库轨道数据/与文件标签同步 - + Automatically write modified track metadata from the library into file tags and reimport metadata from updated file tags into the library 自动将修改后的轨道元数据从库写入文件标签,并将元数据从更新的文件标签重新导入到库中 - + Synchronize Serato track metadata from/to file tags (experimental) 从/到文件标签同步 Serato 跟踪元数据(实验性) - + Keeps track color, beat grid, bpm lock, cue points, and loops synchronized with SERATO_MARKERS/MARKERS2 file tags.<br/><br/>WARNING: Enabling this option also enables the reimport of Serato metadata after files have been modified outside of Mixxx. On reimport existing metadata in Mixxx is replaced with the metadata found in file tags. Custom metadata not included in file tags like loop colors is lost. 使轨道颜色、节拍网格、bpm 锁定、提示点和 Loop 与 SERATO_MARKERS/MARKERS2 文件标签保持同步。<br/><br/>警告:启用此选项还会在 Mixxx 之外修改文件后重新导入 Serato 元数据。重新导入时,Mixxx 中的现有元数据将替换为文件标签中的数据。文件标签中未包含的自定义元数据(如循环颜色)将丢失。 - + Edit metadata after clicking selected track 单击所选轨道后编辑数据 - + Search-as-you-type timeout: 键入时搜索超时: - + ms 女士 - + Load track to next available deck 載入追蹤記錄到下一個可用的甲板上 - + External Libraries 外部庫 - + You will need to restart Mixxx for these settings to take effect. 您將需要重新開機 Mixxx,這些設置才能生效。 - + Show Rhythmbox Library 顯示 Rhythmbox 庫 - + Track Metadata Synchronization / Playlists 轨道数据同步/播放列表 - + Add track to Auto DJ queue (bottom) 将轨道添加到 Auto DJ 队列(底部) - + Add track to Auto DJ queue (top) 将轨道添加到 Auto DJ 队列(顶部) - + Ignore 忽略 - + Show Banshee Library 顯示女妖庫 - + Show iTunes Library 顯示 iTunes 庫 - + Show Traktor Library 顯示拖拉機庫 - + Show Rekordbox Library 显示 Recordbox 库 - + Show Serato Library 显示 Serato 库 - + All external libraries shown are write protected. 所示的所有外部庫已被防寫。 @@ -7251,39 +7523,39 @@ 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 - + 所有设置都会在下一次轨道加载时生效。当前加载的轨迹不受影响。有关这些设置的说明,请参阅 %1 DlgPrefRecord - + Choose recordings directory 選擇錄音目錄 - - + + Recordings directory invalid 录制文件目录无效 - + Recordings directory must be set to an existing directory. 录制目录必须设置为现有目录。 - + Recordings directory must be set to a directory. Recordings directory (录制文件目录) 必须设置为目录。 - + Recordings directory not writable 录制文件目录不可写 - + You do not have write access to %1. Choose a recordings directory you have write access to. 您没有对 %1 的写入权限。选择您具有写入权限的录制文件目录。 @@ -7301,43 +7573,55 @@ and allows you to pitch adjust them for harmonic mixing. 流覽... - - + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + + + Enable File Annotation in CUE file + + + + + Quality 品質 - + Tags 標籤 - + Title 標題 - + Author 作者 - + Album 專輯 - + Output File Format 輸出檔案格式 - + Compression 壓縮 - + Lossy 損耗衰減 @@ -7352,12 +7636,12 @@ and allows you to pitch adjust them for harmonic mixing. 目录: - + Compression Level 壓縮等級 - + Lossless 無損 @@ -7490,172 +7774,177 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefSound - + %1 Hz %1 Hz - + Default (long delay) 預設 (長時間的延遲) - + Experimental (no delay) 實驗 (無延時) - + Disabled (short delay) 禁用 (短延時) - + Soundcard Clock 声卡时钟 - + Network Clock 网络时钟 - + Direct monitor (recording and broadcasting only) 直接监视器(仅限录制和广播) - + Disabled 已禁用 - + Enabled 啟用 - + Stereo 身歷聲 - + Mono 單聲道 - + To enable Realtime scheduling (currently disabled), see the %1. 要启用实时计划(当前已禁用),请参阅 %1。 - + The %1 lists sound cards and controllers you may want to consider for using Mixxx. %1 列出了您可能需要考虑使用 Mixxx 的声卡和控制器。 - + Mixxx DJ Hardware Guide Mixxx DJ 硬件指南 - + + Find details in the Mixxx user manual + + + + Information - + Mixxx must be restarted before the multi-threaded RubberBand setting change will take effect. - + auto (<= 1024 frames/period) 自动(<= 1024 帧/周期) - + 2048 frames/period 2048 帧/周期 - + 4096 frames/period 4096 帧/周期 - + Are you sure? - + Distribute stereo channels into mono channels for parallel processing will result in a loss of mono compatibility and a diffuse stereo image. It is not recommended during broadcasting or recording. - + Are you sure you wish to proceed? - + No - + Yes, I know what I am doing - + 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. 测量往返延迟,并在上方输入麦克风延迟补偿以对齐麦克风计时。 - + Refer to the Mixxx User Manual for details. 細節請參考Mixxx 使用者操作手冊 - + Configured latency has changed. 配置的延迟已更改。 - + Remeasure round trip latency and enter it above for Microphone Latency Compensation to align microphone timing. 重新测量往返延迟,并将其输入到麦克风延迟补偿上方,以调整麦克风定时。 - + Realtime scheduling is enabled. 已启用实时调度。 - + Main output only 仅主输出 - + Main and booth outputs 主输出和展位输出 - + %1 ms %1 ms - + Configuration error 配置錯誤 @@ -7722,17 +8011,22 @@ The loudness target is approximate and assumes track pregain and main output lev 女士 - + + Deck and Bus outputs are for external mixers. They are post-fader and include effects and crossfader (for Auto DJ). For external mixing, make sure all Mixxx faders and EQ knobs are set to their default position (right- or double-click). + + + + 20 ms 為 20 毫秒 - + Buffer Underflow Count 緩衝區下溢計數 - + 0 0 @@ -7757,12 +8051,12 @@ The loudness target is approximate and assumes track pregain and main output lev 輸入 - + System Reported Latency 系統報告延遲 - + Enlarge your audio buffer if the underflow counter is increasing or you hear pops during playback. 如果增加下溢計數器或你聽到持久性有機污染物在播放過程中,放大你的音訊緩衝區。 @@ -7792,7 +8086,7 @@ The loudness target is approximate and assumes track pregain and main output lev 提示和診斷 - + Downsize your audio buffer to improve Mixxx's responsiveness. 縮減你的音訊緩衝區來提高 Mixxx 的回應能力。 @@ -7839,7 +8133,7 @@ The loudness target is approximate and assumes track pregain and main output lev 乙烯基配置 - + Show Signal Quality in Skin 在皮膚中顯示信號品質 @@ -7875,47 +8169,52 @@ The loudness target is approximate and assumes track pregain and main output lev + Pitch estimator + + + + Deck 1 碟盘1 - + Deck 2 碟盘2 - + Deck 3 碟盘3 - + Deck 4 碟盘4 - + Signal Quality 信號品質 - + http://www.xwax.co.uk HTTP://www.xwax.co.uk - + Powered by xwax 由 xwax 提供動力 - + Hints 提示 - + Select sound devices for Vinyl Control in the Sound Hardware pane. 選擇聲音設備乙烯控制聲音硬體窗格中。 @@ -7923,58 +8222,58 @@ The loudness target is approximate and assumes track pregain and main output lev DlgPrefWaveform - + Filtered 過濾 - + HSV 單純皰疹病毒 - + RGB RGB - + Top 返回页首 - + Center 中心 - + Bottom - + 1/3 of waveform viewer options for "Text height limit" - + Entire waveform viewer - + OpenGL not available OpenGL 不可用 - + dropped frames 丟棄的幀 - + Cached waveforms occupy %1 MiB on disk. 緩存的波形佔據磁片上的 MiB %1。 @@ -7992,22 +8291,17 @@ The loudness target is approximate and assumes track pregain and main output lev 畫面播放速率 - + OpenGL Status - + Displays which OpenGL version is supported by the current platform. 顯示由當前平臺支援的 OpenGL 版本。 - - Normalize waveform overview - 正常化波形概述 - - - + Average frame rate 平均畫面播放速率 @@ -8023,7 +8317,7 @@ The loudness target is approximate and assumes track pregain and main output lev 預設縮放級別 - + Displays the actual frame rate. 顯示實際的畫面播放速率。 @@ -8058,7 +8352,7 @@ The loudness target is approximate and assumes track pregain and main output lev - + Show minute markers on waveform overview @@ -8103,7 +8397,7 @@ The loudness target is approximate and assumes track pregain and main output lev 全球視覺增益 - + 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. 选择波形的显示样式,其主要区别在于显示在波形中的细节多少。 @@ -8171,22 +8465,22 @@ Select from different types of displays for the waveform, which differ primarily pt - + Caching 緩存 - + 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 緩存您軌道在磁片第一次你載入追蹤記錄的波形。這降低了 CPU 使用率,當你玩活的時候,但需要額外的磁碟空間。 - + Enable waveform caching 啟用緩存波形 - + Generate waveforms when analyzing library 在分析圖書館時產生波形 @@ -8202,7 +8496,7 @@ Select from different types of displays for the waveform, which differ primarily - + Type @@ -8232,12 +8526,58 @@ Select from different types of displays for the waveform, which differ primarily 将波形上的播放标记位置向左、向右或居中移动(默认)。 - + + Stem + + + + + Channel opacity + + + + + Channel opacity (outline) + + + + + Main stem opacity + + + + + Outline stem opacity + + + + + Move channel to foreground when volume is adjusted + + + + Overview Waveforms - + + Gain + + + + + Normalize to peak + + + + + Use Waveform "Global" gain and ReplayGain (if enabled) + 'Global' refers to the 'Global' visual gain in the scrolling waveform settings + + + + Clear Cached Waveforms 清除緩存的波形 @@ -8729,7 +9069,7 @@ This can not be undone! BPM: - + Location: 位置︰ @@ -8744,27 +9084,27 @@ This can not be undone! 評論 - + BPM BPM - + Sets the BPM to 75% of the current value. 將 BPM 設置為當前值的 75%。 - + 3/4 BPM 3/4 BPM - + Sets the BPM to 50% of the current value. 將 BPM 設置為當前值的 50%。 - + Displays the BPM of the selected track. 顯示選定的軌道的 BPM。 @@ -8819,49 +9159,49 @@ This can not be undone! 體裁 - + ReplayGain: 重播增益︰ - + Sets the BPM to 200% of the current value. 將 BPM 設置為 200%的當前值。 - + Double BPM 雙 BPM - + Halve BPM 減半 BPM - + Clear BPM and Beatgrid 明確的 BPM 和 Beatgrid - + Move to the previous item. "Previous" button 移動到前一項。 - + &Previous & 上一頁 - + Move to the next item. "Next" button 移動到下一個專案。 - + &Next 與下一步 @@ -8886,12 +9226,12 @@ This can not be undone! 颜色 - + Date added: 添加日期: - + Open in File Browser 在檔瀏覽器中打開 @@ -8901,12 +9241,17 @@ This can not be undone! 采样率: - + + Filesize: + + + + Track BPM: BPM 的軌道︰ - + 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. @@ -8915,90 +9260,90 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 这样通常能得到质量更高的节拍网格,但对有节奏变化的音轨效果不佳。 - + Assume constant tempo 假設恒定的節奏 - + Sets the BPM to 66% of the current value. 將 BPM 設置為當前值的 66%。 - + 2/3 BPM 2/3 BPM - + Sets the BPM to 150% of the current value. 将 BPM 设置为当前值的 150%。 - + 3/2 BPM 3/2 BPM - + Sets the BPM to 133% of the current value. 将 BPM 设置为当前值的 133%。 - + 4/3 BPM 4/3 BPM - + Tap with the beat to set the BPM to the speed you are tapping. 點擊擊敗,設置 BPM 為您正在開發的速度。 - + Tap to Beat 點擊節拍 - + Hint: Use the Library Analyze view to run BPM detection. 提示︰ 使用庫分析視圖運行 BPM 檢測。 - + Save changes and close the window. "OK" button 保存更改並關閉視窗。 - + &OK 與確定 - + Discard changes and close the window. "Cancel" button 捨棄變更並關閉視窗。 - + Save changes and keep the window open. "Apply" button 保存更改並保持視窗打開。 - + &Apply 與應用 - + &Cancel 取消(&C) - + (no color) (无颜色) @@ -9155,7 +9500,7 @@ Often results in higher quality beatgrids, but will not do well on tracks that h 确认(&O) - + (no color) (无颜色) @@ -9357,27 +9702,27 @@ Often results in higher quality beatgrids, but will not do well on tracks that h EngineBuffer - + Soundtouch (faster) Soundtouch (更快) - + Rubberband (better) 橡皮條 (更好) - + Rubberband R3 (near-hi-fi quality) 接近高保真质量 - + Unknown, using Rubberband (better) 未知,使用更好 - + Unknown, using Soundtouch 未知,使用 Soundtouch @@ -9592,15 +9937,15 @@ 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 @@ -9611,57 +9956,57 @@ Shown when VuMeter can not be displayed. Please keep 沒有 OpenGL 支援。 - + activate 啟動 - + toggle 切換 - + right 權利 - + left - + right small 右小 - + left small 左小 - + up 向上 - + down 向下 - + up small 小了 - + down small 下小 - + Shortcut 快捷方式 @@ -9669,37 +10014,37 @@ Shown when VuMeter can not be displayed. Please keep Library - + This or a parent directory is already in your library. 此目录或父目录已位于您的库中。 - + This or a listed directory does not exist or is inaccessible. Aborting the operation to avoid library inconsistencies 此目录或列出的目录不存在或无法访问。 中止操作以避免库不一致 - - + + This directory can not be read. 无法读取此目录。 - + An unknown error occurred. Aborting the operation to avoid library inconsistencies 发生未知错误。 中止操作以避免库不一致 - + Can't add Directory to Library 无法将目录添加到库 - + Could not add <b>%1</b> to your library. %2 @@ -9708,27 +10053,27 @@ Aborting the operation to avoid library inconsistencies %2 - + Can't remove Directory from Library 无法从库中删除目录 - + An unknown error occurred. 发生未知错误。 - + This directory does not exist or is inaccessible. 此目录不存在或无法访问。 - + Relink Directory 重新链接目录 - + Could not relink <b>%1</b> to <b>%2</b>. %3 @@ -9740,22 +10085,22 @@ Aborting the operation to avoid library inconsistencies 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. @@ -9892,12 +10237,12 @@ Do you really want to overwrite it? 隱藏的曲目 - + Export to Engine DJ 导出到 Engine DJ - + Tracks 音軌 @@ -9905,37 +10250,37 @@ 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 重試 @@ -9945,211 +10290,211 @@ Do you really want to overwrite it? 皮肤 - + Allow Mixxx to hide the menu bar? 允许 Mixxx 隐藏菜单栏? - + Hide Always show the menu bar? 隐藏 - + Always show 始终显示 - + The Mixxx menu bar is hidden and can be toggled with a single press of the <b>Alt</b> key.<br><br>Click <b>%1</b> to agree.<br><br>Click <b>%2</b> to disable that, for example if you don't use Mixxx with a keyboard.<br><br>You can change this setting any time in Preferences -> Interface.<br> Keep formatting tags <b> (bold text) and <br> (linebreak). %1 is the placeholder for the 'Always show' button label Mixxx 菜单栏是隐藏的,只需按一下<b>Alt 键</b>钥匙。<br><br>点击<b>%1</b>同意。<br><br>点击<b>%2</b>以禁用它,例如,如果您不将 Mixxx 与键盘一起使用。<br><br>您可以随时在 Preferences -> Interface 中更改此设置。<br> - + Ask me again 再问我一次 - - + + 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? 没有为此辅助设备选择输入设备。是否要选择输入设备? - + Scan took %1 - + No changes detected. - + %1 tracks in total - + %1 new tracks found - + %1 moved tracks detected - + %1 tracks are missing (%2 total) - + %1 tracks have been rediscovered - + Library scan finished - + 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. 您的计算机上未启用直接渲染。<br><br>这意味着波形显示将非常<br><b>速度慢,并且可能会严重占用您的 CPU</b>.要么更新您的<br>配置以启用直接渲染或禁用<br>波形将通过选择 Mixxx 首选项显示在<br>“空”作为“界面”部分的波形显示。 - - - + + + 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? @@ -10165,13 +10510,13 @@ Do you want to select an input device? PlaylistFeature - + Lock - - + + Playlists 播放清單 @@ -10181,58 +10526,63 @@ Do you want to select an input device? 随机播放播放列表 - + + Adopt current order + + + + Unlock all playlists - + Delete all unlocked playlists - + Unlock 解鎖 - - + + Confirm Deletion - + Do you really want to delete all unlocked playlists? - + Deleting %1 unlocked playlists.<br>This operation can not be undone! - + Playlists are ordered lists of tracks that allow you to plan your DJ sets. 播放列表是有序的曲目列表,允许您规划 DJ 集。 - + 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 創建新的播放清單 @@ -10331,59 +10681,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 @@ -10497,69 +10847,82 @@ Do you want to scan your library for cover files now? 14 位 (MSB) - + Main + Audio path indetifier 主要 - + Booth + Audio path indetifier Booth - + Headphones + Audio path indetifier 耳機 - + Left Bus + Audio path indetifier 左的巴士 - + Center Bus + Audio path indetifier 中心巴士 - + Right Bus + Audio path indetifier 公共汽車嗎 - + Invalid Bus + Audio path indetifier 不正確巴士 - + Deck + Audio path indetifier 甲板上 - + Record/Broadcast + Audio path indetifier 錄音/廣播 - + Vinyl Control + Audio path indetifier 唱片控制 - + Microphone + Audio path indetifier 麥克風 - + Auxiliary + Audio path indetifier 輔助 - + Unknown path type %1 + Audio path 未知的路徑類型 %1 @@ -10902,47 +11265,49 @@ With width at zero, this allows for manually sweeping over the entire delay rang 寬度 - + Metronome 节拍器 - + + The Mixxx Team - + Adds a metronome click sound to the stream 向流中添加节拍器咔嗒声 - + BPM BPM - + Set the beats per minute value of the click sound 设置咔嗒声的每分钟节拍数值 - + Sync 同步 - + Synchronizes the BPM with the track if it can be retrieved 如果可以检索 Track,则将 BPM 与 Track 同步 - + + Gain - + Set the gain of metronome click sound @@ -11746,14 +12111,14 @@ Fully right: end of the effect period 不支持 OGG 录制。无法初始化 OGG/Vorbis 库。 - - + + encoder failure 编码器故障 - - + + Failed to apply the selected settings. 无法应用所选设置。 @@ -11891,7 +12256,7 @@ Hint: compensates "chipmunk" or "growling" voices 应用于音频信号的放大量。在更高的级别上,音频将更加分散。 - + Passthrough 直通 @@ -11943,31 +12308,102 @@ Hint: compensates "chipmunk" or "growling" voices 补偿 - - The Auto Makeup button enables automatic gain adjustment to keep the input signal -and the processed output signal as close as possible in perceived loudness - Auto Makeup 按钮启用自动增益调整以保持输入信号 -以及处理后的输出信号在感知响度上尽可能接近 + + The Auto Makeup button enables automatic gain adjustment to keep the input signal +and the processed output signal as close as possible in perceived loudness + Auto Makeup 按钮启用自动增益调整以保持输入信号 +以及处理后的输出信号在感知响度上尽可能接近 + + + + Off + 关闭 + + + + On + 打开 + + + + Auto Gain Control + + + + + AGC + + + + + Auto Gain Control (AGC) automatically adjusts the gain of an audio signal to maintain a consistent output level. + + + + + + Threshold (dBFS) + 阈值 (dBFS) + + + + + Threshold + 门槛 + + + + The Threshold knob adjusts the level above which the effect starts enhancing the input signal + + + + + Target (dBFS) + + + + + Target + + + + + The Target knob adjusts the desired target level of the output signal + + + + + Gain (dB) + + + + + The Gain knob adjusts the maximum amount of gain that the effect will apply + - - Off - 关闭 + + Knee (dB) + - - On - 打开 + + The Knee knob defines the range around the Threshold where gain changes are applied gradually, +ensuring smooth transitions and avoiding abrupt level shifts. + - - Threshold (dBFS) - 阈值 (dBFS) + + The Attack knob sets the time that determines how fast the auto gain +will set in once the signal exceeds the threshold + - - Threshold - 门槛 + + The Release knob sets the time that determines how fast the auto gain will recover from the gain +adjustment once the signal falls under the threshold. Depending on the input signal, short release times +may introduce a 'pumping' effect and/or distortion. + @@ -11999,6 +12435,7 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee (dBFS) + Knee Knee @@ -12009,11 +12446,13 @@ At a ratio of 1:1 no compression is happening, as the input is exactly the outpu Knee 旋钮用于实现更圆润的压缩曲线 + Attack (ms) + Attack @@ -12026,11 +12465,13 @@ will set in once the signal exceeds the threshold 将在信号超过阈值时设置 + Release (ms) 版本(毫秒) + Release 释放 @@ -12061,12 +12502,12 @@ may introduce a 'pumping' effect and/or distortion. 各种 - + built-in - + missing @@ -12101,42 +12542,42 @@ may introduce a 'pumping' effect and/or distortion. - + Empty - + Simple - + Filtered - + HSV - + VSyncTest - + RGB - + Stacked - + Unknown @@ -12218,7 +12659,7 @@ may introduce a 'pumping' effect and/or distortion. Hot cues - + 熱點 @@ -12397,193 +12838,193 @@ may introduce a 'pumping' effect and/or distortion. ShoutConnection - - + + Mixxx encountered a problem Mixxx 時遇到問題 - + Could not allocate shout_t 無法分配 shout_t - + Could not allocate shout_metadata_t 無法分配 shout_metadata_t - + Error setting non-blocking mode: 錯誤設置非阻塞模式︰ - + Error setting tls mode: 设置 TLS 模式时出错: - + Error setting hostname! 錯誤設置主機名稱 ! - + Error setting port! 設置埠時出錯 ! - + Error setting password! 設置密碼時出錯 ! - + Error setting mount! 設置裝載錯誤 ! - + Error setting username! 錯誤設置使用者名 ! - + Error setting stream name! 錯誤設置流名稱 ! - + Error setting stream description! 錯誤設置流說明 ! - + Error setting stream genre! 錯誤設置流流派 ! - + Error setting stream url! 錯誤設置流 url ! - + Error setting stream IRC! 设置流 IRC 时出错! - + Error setting stream AIM! 设置流 AIM 时出错! - + Error setting stream ICQ! 设置流 ICQ 时出错! - + Error setting stream public! 錯誤設置流公共 ! - + Unknown stream encoding format! 未知的流编码格式! - + Use a libshout version with %1 enabled 使用启用了 %1 的 libshout 版本 - + 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. 目前不支持使用 Ogg Vorbis 以 96 kHz 进行广播。请尝试不同的采样率或切换到不同的编码。 - + See https://github.com/mixxxdj/mixxx/issues/5701 for more information. 有关更多信息,请参阅 https://github.com/mixxxdj/mixxx/issues/5701。 - + Unsupported sample rate 不支持的采样率 - + Error setting bitrate 錯誤設置位元速率 - + Error: unknown server protocol! 錯誤︰ 未知的伺服器協定 ! - + Error: Shoutcast only supports MP3 and AAC encoders 错误:Shoutcast 仅支持 MP3 和 AAC 编码器 - + Error setting protocol! 錯誤設置協定 ! - + Network cache overflow 網路的快取溢出 - + Connection error 连接错误 - + One of the Live Broadcasting connections raised this error:<br><b>Error with connection '%1':</b><br> 其中一个 Live Broadcasting 连接引发了以下错误:<br><b>连接“%1”出错:</b><br> - + Connection message 连接消息 - + <b>Message from Live Broadcasting connection '%1':</b><br> <b>来自实时广播连接“%1”的消息:</b><br> - + Lost connection to streaming server and %1 attempts to reconnect have failed. 到流服务器的连接中断,且在 %1 次重试之后仍然无法重新连接 - + Lost connection to streaming server. 到流服务器的连接断开 - + Please check your connection to the Internet. 請檢你的網際網路連線 - + Can't connect to streaming server 無法連接到流媒體伺服器 - + Please check your connection to the Internet and verify that your username and password are correct. 請檢查您連接到 Internet,請驗證您的使用者名和密碼正確。 @@ -12591,7 +13032,7 @@ may introduce a 'pumping' effect and/or distortion. SoftwareWaveformWidget - + Filtered 過濾 @@ -12599,23 +13040,23 @@ may introduce a 'pumping' effect and/or distortion. SoundManager - - + + a device 設備 - + An unknown error occurred 出現未知的錯誤 - + Two outputs cannot share channels on "%1" 两个输出无法共享 %1 的通道 - + Error opening "%1" 无法打开 "%1" @@ -12800,7 +13241,7 @@ may introduce a 'pumping' effect and/or distortion. - + Spinning Vinyl 紡紗乙烯基 @@ -12982,7 +13423,7 @@ may introduce a 'pumping' effect and/or distortion. - + Cover Art 封面 @@ -13172,243 +13613,243 @@ may introduce a 'pumping' effect and/or distortion. 持有低情商的增益為零的活躍。 - + Displays the tempo of the loaded track in BPM (beats per minute). 在 BPM (每分鐘心跳) 中顯示載入跟蹤的節奏。 - + Tempo 節奏 - + Key The musical key of a track 關鍵 - + BPM Tap BPM 偵測 - + When tapped repeatedly, adjusts the BPM to match the tapped BPM. 當敲擊時反復,調整 BPM 的匹配抽頭的 BPM。 - + Adjust BPM Down 向下調整 BPM - + When tapped, adjusts the average BPM down by a small amount. 當敲擊時,通過少量下來調整平均 BPM。 - + Adjust BPM Up BPM 調高 - + When tapped, adjusts the average BPM up by a small amount. 當敲擊時,通過少量向上調整平均 BPM。 - + Adjust Beats Earlier 早些時候調整節拍 - + When tapped, moves the beatgrid left by a small amount. 當敲擊時,移動 beatgrid 留下的一小部分。 - + Adjust Beats Later 後來調整節奏 - + When tapped, moves the beatgrid right by a small amount. 拍了拍,以少量右移動 beatgrid。 - + Tempo and BPM Tap 節奏和 BPM 水龍頭 - + Show/hide the spinning vinyl section. 顯示/隱藏紡乙烯基節。 - + Keylock 鑰匙鎖 - + Toggling keylock during playback may result in a momentary audio glitch. 在播放過程中切換鍵鎖可能會導致一個短暫的音訊故障。 - + Toggle visibility of Loop Controls 切换 Loop Controls 的可见性 - + Toggle visibility of Beatjump Controls 切换 Beatjump 控件的可见性 - + Toggle visibility of Rate Control 切换速率控制的可见性 - + Toggle visibility of Key Controls 切换键控的可见性 - + (while previewing) (预览时) - + Places a cue point at the current position on the waveform. 在波形的当前位置上设置一个切入点。 - + Stops track at cue point, OR go to cue point and play after release (CUP mode). 在切入点处停止,或跳至切入点并在释放后播放(切播模式下)。 - + Set cue point (Pioneer/Mixxx/Numark mode), set cue point and play after release (CUP mode) OR preview from it (Denon mode). 设置切入点(Pioneer/Mixxx 模式下)并在释放后开始播放(切播模式下),或从切入点出开始预览(Denon 模式下)。 - + Is latching the playing state. 正在锁定播放状态。 - + Seeks the track to the cue point and stops. 跳至音轨的切入点,然后停止。 - + Play 播放 - + Plays track from the cue point. 从提示点播放轨道。 - + 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 启用 Sync Lock - + Tap to sync the tempo to other playing tracks or the sync leader. 点击可将速度同步到其他正在播放的轨道或同步引导。 - + Enable Sync Leader 启用 Sync Leader - + When enabled, this device will serve as the sync leader for all other decks. 启用后,此设备将用作所有其他 Deck 的同步引导。 - + This is relevant when a dynamic tempo track is loaded to a sync leader deck.In that case, other synced devices will adopt the changing tempo. 当动态速度轨道加载到同步引导界面时,这一点很重要。在这种情况下,其他同步装置将采用不断变化的速度。 - + Changes the track playback speed (affects both the tempo and the pitch). If keylock is enabled, only the tempo is affected. 更改跟蹤重播速度 (影響節奏和音高)。如果啟用了鍵盤鎖,只有節奏受到影響。 - + Tempo Range Display 速度范围显示 - + Displays the current range of the tempo slider. 显示速度滑块的当前范围。 - + Un-ejects when no track is loaded, i.e. reloads the track that was ejected last (of any deck). 未加载 track 时取消弹出,即重新加载最后弹出的 track (任何卡座)。 - + Delete selected hotcue. 删除选定的 hotcue。 - + Track Comment 轨道评级 - + Displays the comment tag of the loaded track. 显示加载的轨道的注释标签。 - + Opens separate artwork viewer. 打开单独的图稿查看器。 - + Effect Chain Preset Settings Effect Chain 预设设置 - + Show the effect chain settings menu for this unit. 显示本机的 Effect Chain 设置菜单。 - + Select and configure a hardware device for this input 为此输入选择并配置硬件设备 - + Recording Duration 录制时间 @@ -13631,949 +14072,984 @@ may introduce a 'pumping' effect and/or distortion. 在活动时保持较高的播放速度(少量)。 - + When tapped repeatedly, adjusts the tempo to match the tapped BPM. 若重复点击,将把音轨的 BPM 设为点击动作的 BPM。 + + + Click to open the tempo/BPM editor + + + + + It also shows a colored bar if Key colors are enabled in the Preferences. + + + The bar will be split vertically if the track's key is in between full keys. + + + + Tempo Tap 节奏敲击 - + Rate Tap and BPM Tap Rate Tap 和 BPM Tap - + + Set Tempo + + + + + Set the desired tempo in BPM. If the track currently has no BPM detected, set the desired tempo in percent. + + + + Adjust beatgrid by exactly one half beat. Usable only on tracks with constant tempo. - + Revert last BPM/Beatgrid Change 还原上次 BPM/节拍网格 更改 - + Revert last BPM/Beatgrid Change of the loaded track. 还原上次 BPM/节拍网格 对加载曲目的更改。 - - + + Toggle the BPM/beatgrid lock 切换 BPM/节拍网格 锁 - + Tempo and Rate Tap 速度和 BPM - + Tempo, Rate Tap and BPM Tap 速度、速率拍子和 BPM 拍子 - + Shift cues earlier 提前移动提示 - - + + Shift cues imported from Serato or Rekordbox if they are slightly off time. 从 Serato 或 Rekordbox 导入的 Shift 提示点(如果它们稍微偏离时间)。 - + Left click: shift 10 milliseconds earlier 左键单击:提前 10 毫秒 Shift - + Right click: shift 1 millisecond earlier 右键单击:提前 1 毫秒 Shift - + Shift cues later 稍后切换提示 - + Left click: shift 10 milliseconds later 左键单击:10 毫秒后 shift - + Right click: shift 1 millisecond later 右键单击:1 毫秒后 Shift - - - + + + Drag a Hotcue button here to continue playing after releasing the Hotcue. - + Hint: Change the default cue mode in Preferences -> Decks. - + Mutes the selected channel's audio in the main output. 将主输出中所选声道的音频静音。 - + Main mix enable 主混音启用 - + Hold or short click for latching to mix this input into the main output. 按住或短按锁定以将此输入混合到主输出中。 - + + Reloads the last replaced track. If no track is loaded reloads the second-last ejected track. + + + + If hotcue is a loop cue, toggles the loop and jumps to if the loop is behind the play position. 如果 hotcue 是一个 Loop 提示,则切换 Loop 并跳转到 Loop 是否在播放位置后面。 - + If the play position is inside an active loop, stores the loop as loop cue. 如果播放位置位于活动 Loop 内,则将 Loop 存储为 Loop 提示。 - + Drag this button onto another Hotcue button to move it there (change its index). If the other hotcue is set, the two are swapped. - + Expand/Collapse Samplers 展开/折叠采样器 - + Toggle expanded samplers view. 切换展开的采样器视图。 - + Displays the duration of the running recording. 显示运行录制的持续时间。 - + Auto DJ is active Auto DJ 处于活动状态 - + Red for when needle skip has been detected. 红色表示检测到跳针。 - + Hot Cue - Track will seek to nearest previous hotcue point. 热切 - 将会定位到上一个(最近的)热切入点。 - + Sets the track Loop-In Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-In Marker. 按住可移动 Loop-In 标记。 - + Jump to Loop-In Marker. 跳转到 Loop-In 标记。 - + Sets the track Loop-Out Marker to the current play position. 将当前播放位置设为碟机循环起始位置。 - + Press and hold to move Loop-Out Marker. 按住可移动 Loop-Out Marker。 - + Jump to Loop-Out Marker. 跳转到 Loop-Out Marker。 - + If the track has no beats the unit is seconds. 如果轨道没有节拍,则单位为秒。 - + Beatloop Size Beatloop 大小 - + Select the size of the loop in beats to set with the Beatloop button. 选择 Loop 的大小(以节拍为单位),以使用 Beatloop 按钮进行设置。 - + Changing this resizes the loop if the loop already matches this size. 如果 loop 已经匹配此大小,则更改此 URL 将调整 Loop 的大小。 - + Halve the size of an existing beatloop, or halve the size of the next beatloop set with the Beatloop button. 将现有 Beatloop 的大小减半,或使用 Beatloop 按钮将下一个 Beatloop 集的大小减半。 - + Double the size of an existing beatloop, or double the size of the next beatloop set with the Beatloop button. 使用 Beatloop 按钮将现有 Beatloop 的大小增加一倍,或将下一个 Beatloop 集的大小增加一倍。 - + Start a loop over the set number of beats. 在设定的节拍数上开始循环。 - + Temporarily enable a rolling loop over the set number of beats. 在设定的节拍数上暂时启用滚动循环。 - + Beatloop Anchor Beatloop 固定点 - + Define whether the loop is created and adjusted from its staring point or ending point. 定义是否从其起始点或终点创建和调整循环。 - + Beatjump/Loop Move Size Beatjump/Loop 移动大小 - + Select the number of beats to jump or move the loop with the Beatjump Forward/Backward buttons. 选择要跳跃的节拍数,或使用 Beatjump Forward/Backward 按钮移动 Loop。 - + Beatjump Forward Beatjump 向前 - + Jump forward by the set number of beats. 向前跳动设定的节拍数。 - + Move the loop forward by the set number of beats. 将 Loop 向前移动设定的节拍数。 - + Jump forward by 1 beat. 向前跳 1 拍 - + Move the loop forward by 1 beat. 将循环向前移动 1 拍 - + Beatjump Backward 向后跳拍 - + Jump backward by the set number of beats. 向后跳过指定数量的节拍。 - + Move the loop backward by the set number of beats. 将循环向后移动指定数量的节拍。 - + Jump backward by 1 beat. 向后跳 1 拍 - + Move the loop backward by 1 beat. 将循环向后移动 1 拍 - + Reloop 再循环 - + 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. 仅当设置了循环起始和结束位置时才会有效。 - + Enable loop, jump to Loop-In Marker, and stop playback. 启用 loop,跳转到 Loop-In Marker,然后停止播放。 - + Displays the elapsed and/or remaining time of the track loaded. 显示加载跟踪的经过和 (或) 剩余时间。 - + Click to toggle between time elapsed/remaining time/both. 单击可切换时间/剩余时间时间或两者。 - + Hint: Change the time format in Preferences -> Decks. 提示:在 Preferences -> Decks 中更改时间格式。 - + Show/hide intro & outro markers and associated buttons. 显示/隐藏介绍和结尾标记以及相关按钮。 - + + Ensure all waveforms to have the same height across all channels. By default, when displaying the stem controls, waveform for channel that have no stem may render with a shorter height in order to honor the waveform container size you have requested.. + + + + Intro Start Marker 介绍开始标记 - - - - + + + + If marker is set, jumps to the marker. 如果设置了 marker,则跳转到 marker。 - - - - + + + + If marker is not set, sets the marker to the current play position. 如果未设置 marker,则将 marker 设置为当前播放位置。 - - - - + + + + If marker is set, clears the marker. 如果设置了 marker,则清除 marker。 - + Intro End Marker 介绍结束标记 - + Outro Start Marker 结尾部分开始标记 - + Outro End Marker 结尾部分结束标记 - + Mix 混合 - + Adjust the mixing of the dry (input) signal with the wet (output) signal of the effect unit 调整效果器单元的干 (input) 信号与湿 (output) 信号的混合 - + D/W mode: Crossfade between dry and wet D/W 模式:干湿交叉淡入淡出 - + D+W mode: Add wet to dry D+W 模式:从湿到干 - + Mix Mode 混合模式 - + 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. 干/湿模式(交叉线):混合旋钮在干湿之间交叉淡化 使用此选项可通过 EQ 和滤波器效果更改轨道的声音。 - + 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. 干 + 湿模式(平坦干线):混合旋钮将湿添加到干 使用此选项可仅更改带有 EQ 和滤波器效果的效果(湿)信号。 - + Route the main mix through this effect unit. 通过此效果器单元路由主混音。 - + Route the left crossfader bus through this effect unit. 将左侧的交叉推子总线路由到此效果器单元中。 - + Route the right crossfader bus through this effect unit. 将右侧的 Crossfader 总线路由到此效果器单元中 - + Right side active: parameter moves with right half of Meta Knob turn 右侧激活:参数随着 Meta 旋钮的右半部分转动而移动 - + Stem Label - + Name of the stem stored in the stem file - + Text is displayed in the stem color stored in the stem file - + this stem color is also used for the waveform of this stem - + Stem Mute - + Toggle the stem mute/unmuted - + Stem Volume Knob - + Adjusts the volume of the stem - + Skin Settings Menu Skin Settings 菜单 - + Show/hide skin settings menu 显示/隐藏皮肤设置菜单 - + Save Sampler Bank 保存採樣器銀行 - + Save the collection of samples loaded in the samplers. 保存采样器中加载的样本集合。 - + Load Sampler Bank 負荷取樣器銀行 - + Load a previously saved collection of samples into the samplers. 将以前保存的样本集合加载到采样器中。 - + Show Effect Parameters 顯示效果器的參數 - + Enable Effect 启用特效 - + Meta Knob Link 元旋钮链接 - + Set how this parameter is linked to the effect's Meta Knob. 设置此参数如何链接到效果的 Meta 旋钮。 - + Meta Knob Link Inversion 元旋钮链接反演 - + Inverts the direction this parameter moves when turning the effect's Meta Knob. 反转此参数时效果的 Meta 旋钮移动的方向。 - + Super Knob 超級旋鈕 - + Next Chain 下一個鏈 - + Previous Chain 以前的鏈 - + Next/Previous Chain 下一個/上一個鏈 - + Clear 清除 - + Clear the current effect. 清除當前的效果。 - + Toggle 切換 - + Toggle the current effect. 切換當前效果。 - + Next 下一個 - + Clear Unit 清除單元 - + Clear effect unit. 單位明確效果。 - + Show/hide parameters for effects in this unit. 显示/隐藏此单元中效果的参数。 - + Toggle Unit 切換單元 - + Enable or disable this whole effect unit. 启用或禁用整个效果单元。 - + Controls the Meta Knob of all effects in this unit together. 同时控制该单元中所有效果的 Meta 旋钮。 - + Load next effect chain preset into this effect unit. 将 next effect chain 预设加载到此效果单元中。 - + Load previous effect chain preset into this effect unit. 将上一个效果链预设加载到此效果单元中。 - + Load next or previous effect chain preset into this effect unit. 将下一个或上一个效果链预设加载到此效果单元中。 - - - - - - - - - + + + + + + + + + Assign Effect Unit 分配效果单元 - + Assign this effect unit to the channel output. 将此效果器单元分配给通道输出。 - + Route the headphone channel through this effect unit. 通过此效果器单元路由耳机通道。 - + Route this deck through the indicated effect unit. 将此 Deck 路由到指定的效果单位。 - + Route this sampler through the indicated effect unit. 将此采样器路由到指示的效果器单元。 - + Route this microphone 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. 还必须将效果单元分配给 Deck 或其他声源才能听到效果。 - + Switch to the next effect. 切換到下一個效果。 - + Previous 上一個 - + Switch to the previous effect. 切換到上一個效果。 - + Next or Previous 下一頁或上一頁 - + Switch to either the next or previous effect. 切換到下一個或上一個效果。 - + Meta Knob 元旋钮 - + Controls linked parameters of this effect 这种效应的控制链接的参数 - + Effect Focus Button 影响对焦按钮 - + Focuses this effect. 针对这种效果。 - + Unfocuses this effect. Unfocuses 这种效果。 - + Refer to the web page on the Mixxx wiki for your controller for more information. 您的控制器的详细信息,请参阅 Mixxx wiki 上的 web 页。 - + Effect Parameter 影響參數 - + Adjusts a parameter of the effect. 調整參數的影響。 - + Inactive: parameter not linked Inactive:参数未链接 - + Active: parameter moves with Meta Knob Active(活动):参数随 Meta 旋钮移动 - + Left side active: parameter moves with left half of Meta Knob turn 左侧激活:参数随着 Meta 旋钮的左半部分转动而移动 - + Left and right side active: parameter moves across range with half of Meta Knob turn and back with the other half 左侧和右侧激活:参数在切换距离时移动,Meta 旋钮的一半转动,另一半转动 - - + + Equalizer Parameter Kill 等化器參數殺 - - + + Holds the gain of the EQ to zero while active. 情商的增益堅持零的活躍。 - + Quick Effect Super Knob 見效快超級旋鈕 - + Quick Effect Super Knob (control linked effect parameters). 快速效果超級旋鈕 (控制連結的效果參數)。 - + Hint: Change the default Quick Effect mode in Preferences -> Equalizers. 提示︰ 預設見效模式在首選項中更改網站-> 等化器。 - + Equalizer Parameter 等化器參數 - + Adjusts the gain of the EQ filter. 調整 EQ 濾波器的增益。 - + Hint: Change the default EQ mode in Preferences -> Equalizers. 提示︰ 更改預設首選項中的情商模式網站-> 等化器。 - - + + Adjust Beatgrid 調整 Beatgrid - + Adjust beatgrid so the closest beat is aligned with the current play position. 所以最近的節拍與當前播放位置對齊調整 beatgrid。 - - + + Adjust beatgrid to match another playing deck. 調整 beatgrid 以匹配另一個玩甲板。 - + If quantize is enabled, snaps to the nearest beat. 如果量化啟用,將捕捉到的最近的節拍。 - + Quantize 量化 - + Toggles quantization. 切換量化。 - + Loops and cues snap to the nearest beat when quantization is enabled. 迴圈和線索管理單元的最近的節拍,量化啟用時。 - + Reverse 扭轉 - + Reverses track playback during regular playback. 反轉跟蹤定期播放期間播放。 - + Puts a track into reverse while being held (Censor). 被關押 (檢查員) 置於反向的軌道。 - + Playback continues where the track would have been if it had not been temporarily reversed. 重播繼續在軌道本來如果它不暫時扭轉了。 - - - + + + Play/Pause 播放/暫停 - + Jumps to the beginning of the track. 跳轉到的磁軌起點。 - + Syncs the tempo (BPM) and phase to that of the other track, if BPM is detected on both. 同步的節奏 (BPM) 和相位的另一條鐵軌,如果 BPM 檢測到兩個。 - + Syncs the tempo (BPM) to that of the other track, if BPM is detected on both. 如果 BPM 在兩個上檢測到的另一條鐵軌,同步節奏 (BPM)。 - + Sync and Reset Key 同步和重置金鑰 - + Increases the pitch by one semitone. 增加一個半音的球場。 - + Decreases the pitch by one semitone. 減少一個半音的球場。 - + Enable Vinyl Control 啟用乙烯基控制 - + When disabled, the track is controlled by Mixxx playback controls. 當禁用時,軌道被受 Mixxx 播放控制項。 - + When enabled, the track responds to external vinyl control. 當啟用時,跟蹤回應外部乙烯控制。 - + Enable Passthrough 啟用直通 - + Indicates that the audio buffer is too small to do all audio processing. 指示音訊緩衝區太小,做所有的音訊處理。 - + Displays cover artwork of the loaded track. 顯示覆蓋載入跟蹤的藝術作品。 - + Displays options for editing cover artwork. 顯示用於編輯封面插圖選項。 - + Star Rating 星級 - + Assign ratings to individual tracks by clicking the stars. 通過按一下星星將評級分配到單獨曲目。 @@ -14708,33 +15184,33 @@ Use this to change only the effected (wet) signal with EQ and filter effects.麦克风闪避强度 - + Prevents the pitch from changing when the rate changes. 防止更改率發生變化時的球場。 - + Changes the number of hotcue buttons displayed in the deck 更改 Deck 中显示的 hotcue 按钮的数量 - + Starts playing from the beginning of the track. 開始從軌道開始播放。 - + Jumps to the beginning of the track and stops. 跳轉到的磁軌起點和停止。 - - + + Plays or pauses the track. 播放或暫停的軌道。 - + (while playing) (當演奏) @@ -14754,215 +15230,215 @@ Use this to change only the effected (wet) signal with EQ and filter effects.主通道 R 音量表 - + (while stopped) (雖然停止) - + Cue 提示 - + Headphone 耳機 - + Mute 靜音 - + Old Synchronize 老同步 - + Syncs to the first deck (in numerical order) that is playing a track and has a BPM. 到第一 (按數值順序) 甲板播放的曲目並具有 BPM 同步。 - + If no deck is playing, syncs to the first deck that has a BPM. 如果沒有甲板上現正播放,同步到了 BPM 的第一甲板。 - + Decks can't sync to samplers and samplers can only sync to decks. 甲板不能同步到採樣器,採樣器只可以同步到甲板上。 - + Hold for at least a second to enable sync lock for this 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. 甲板與同步鎖定將所有播放相同的節奏,和甲板也有量化啟用的都將總是有他們排隊的節拍。 - + Resets the key to the original track key. 將金鑰重置為原始軌道鍵。 - + Speed Control 速度控制 - - - + + + Changes the track pitch independent of the tempo. 更改跟蹤球場獨立的節奏。 - + Increases the pitch by 10 cents. 增加 10 美分的球場。 - + Decreases the pitch by 10 cents. 減少 10 美分的球場。 - + Pitch Adjust 音高調整 - + Adjust the pitch in addition to the speed slider pitch. 調整除了速度滑塊球場球場。 - + Opens a menu to clear hotcues or edit their labels and colors. 打开一个菜单以清除 Hotcue 或编辑其标签和颜色。 - + Drag this button onto a Play button while previewing to continue playback after release. - + Dragging with Shift key pressed will not start previewing the hotcue. - + Record Mix 錄製混音 - + Toggle mix recording. 切換混合錄音。 - + Enable Live Broadcasting 啟用即時廣播 - + Stream your mix over the Internet. 在互聯網上流你的組合。 - + Provides visual feedback for Live Broadcasting status: 提供可視回饋,直播狀態︰ - + disabled, connecting, connected, failure. 禁用,連接,連接,失敗。 - + When enabled, the deck directly plays the audio arriving on the vinyl input. 當啟用時,甲板上直接播放音訊輸入的乙烯基抵達。 - + Playback will resume where the track would have been if it had not entered the loop. 播放將恢復在軌道本來如果不進入了迴圈。 - + Loop Exit 循環關閉 - + Turns the current loop off. 關閉當前的迴圈。 - + Slip Mode 滑模式 - + When active, the playback continues muted in the background during a loop, reverse, scratch etc. 啟動時,播放繼續柔和的背景在迴圈中,反向,劃痕等。 - + Once disabled, the audible playback will resume where the track would have been. 一旦禁用,聲音播放將恢復本來的軌道。 - + Track Key The musical key of a track 跟蹤關鍵 - + Displays the musical key of the loaded track. 顯示載入跟蹤的音樂金鑰。 - + Clock 時鐘 - + Displays the current time. 顯示目前時間。 - + Audio Latency Usage Meter 音訊延遲用量表 - + Displays the fraction of latency used for audio processing. 顯示延遲用於音訊處理的分數。 - + A high value indicates that audible glitches are likely. 較高的值表明發聲的故障都有可能。 - + Do not enable keylock, effects or additional decks in this situation. 鑰匙鎖、 影響或額外的甲板,在這種情況,請不要啟用。 - + Audio Latency Overload Indicator 音訊延遲超載指示器 @@ -15002,259 +15478,259 @@ Use this to change only the effected (wet) signal with EQ and filter effects.啟動從功能表-選項 > 乙烯控制。 - + Displays the current musical key of the loaded track after pitch shifting. 顯示載入跟蹤當前音樂鍵後變調。 - + Fast Rewind 快退 - + Fast rewind through the track. 通過跟蹤的快速倒帶。 - + Fast Forward 快進 - + Fast forward through the track. 通過跟蹤的快速前進。 - + Jumps to the end of the track. 跳轉到軌道的一端。 - + Sets the pitch to a key that allows a harmonic transition from the other track. Requires a detected key on both involved decks. 將球場設置為允許從另一條鐵軌的諧波過渡的關鍵。要求這兩個涉及的甲板上檢測到的金鑰。 - - - + + + Pitch Control 變槳距控制 - + Pitch Rate 音高率 - + Displays the current playback rate of the track. 顯示當前播放率的軌道。 - + Repeat 重複 - + When active the track will repeat if you go past the end or reverse before the start. 活動時軌道將重複如果你走過結束或之前開始扭轉。 - + Eject 彈出 - + Ejects track from the player. 彈出從球員的軌道。 - + Hotcue 热切点 - + If hotcue is set, jumps to the hotcue. 如果設置了 hotcue,則跳轉到 hotcue。 - + If hotcue is not set, sets the hotcue to the current play position. 如果未設置 hotcue,將 hotcue 設置為當前的播放位置。 - + Vinyl Control Mode 黑膠盤控制模式 - + Absolute mode - track position equals needle position and speed. 絕對模式-軌道位置等於針的位置和速度。 - + Relative mode - track speed equals needle speed regardless of needle position. 相對模式-跟蹤速度等於針速度針位置無關。 - + Constant mode - track speed equals last known-steady speed regardless of needle input. 持續模式-跟蹤速度等於針輸入最後一個已知穩定速度。 - + Vinyl Status 乙烯基狀態 - + Provides visual feedback for vinyl control status: 乙烯基控制地位提供可視回饋︰ - + Green for control enabled. 控制項啟用了的綠色。 - + Blinking yellow for when the needle reaches the end of the record. 當針達到記錄末尾為黃色閃爍。 - + Loop-In Marker 迴圈中的標記 - + Loop-Out Marker 圈出標記 - + Loop Halve 循環減半 - + Halves the current loop's length by moving the end marker. 通過移動結束標記減半,電流環的長度。 - + Deck immediately loops if past the new endpoint. 甲板上立即迴圈如果過去新的終結點。 - + Loop Double 循環雙倍 - + Doubles the current loop's length by moving the end marker. 通過移動結束標記雙打電流回路長度。 - + Beatloop - + 节拍循环 - + Toggles the current loop on or off. 打開或關閉切換電流環。 - + Works only if Loop-In and Loop-Out marker are set. 只當回路中的作品和迴圈出標記設置。 - + Vinyl Cueing Mode 乙烯基線索模式 - + Determines how cue points are treated in vinyl control Relative mode: 確定如何將提示點處理在乙烯基控制相對模式下︰ - + Off - Cue points ignored. 關閉-提示點忽略。 - + One Cue - If needle is dropped after the cue point, track will seek to that cue point. 一個提示-如果針下降後提示點,軌道尋求那提示點。 - + Track Time 跟蹤時間 - + Track Duration 跟蹤持續時間 - + Displays the duration of the loaded track. 顯示載入跟蹤的持續時間。 - + Information is loaded from the track's metadata tags. 從軌道的元資料標記載入資訊。 - + Track Artist 曲目演出者 - + Displays the artist of the loaded track. 顯示載入跟蹤的演出者。 - + Track Title 曲目標題 - + Displays the title of the loaded track. 顯示載入跟蹤的標題。 - + Track Album 軌道專輯 - + Displays the album name of the loaded track. 顯示載入跟蹤的專輯名稱。 - + Track Artist/Title 稱號的軌道演出者 - + Displays the artist and title of the loaded track. 顯示的演出者和標題載入跟蹤。 @@ -15485,47 +15961,75 @@ This can not be undone! WCueMenuPopup - + Cue number 提示编号 - + Cue position 提示位置 - + Edit cue label Edit cue label(编辑提示标签) - + Label... 标签 - + Delete this cue 删除此提示 - - Toggle this cue type between normal cue and saved loop - 在正常提示点和保存的 Loop 之间切换此提示类型 + + Turn this cue into a regular hotcue + + + + + Turn this cue into a saved loop + + + + + Left-click: Use the old size if known or the current beatloop size as the loop size + + + + + Right-click: Use the current play position as new loop end if it is after the cue + + + + + Turn this cue into a saved forward jump. + + is a linebreak. Try to not to extend the translation beyond the length of the longest source line so the tooltip remains compact. + + + + + Turn this cue into a saved backward jump (one shot loop). + - - Left-click: Use the old size or the current beatloop size as the loop size - 左键单击:使用旧大小或当前 Beatloop 大小作为 Loop 大小 + + Left-click: Use the old size if known or the current play position as jump start position +If this is already a jump cue, swap the jump position and the cue/target position. + - - Right-click: Use the current play position as loop end if it is after the cue - 右键点击:如果当前播放位置在 cue 之后,则将其用作 Loop 结束 + + Right-click: use current play position as new jump start position + - + Hotcue #%1 热提示 #%1 @@ -15650,323 +16154,363 @@ This can not be undone! + Search in Current View... + + + + + Search for tracks in the current library view + + + + + Ctrl+f + + + + + Search in Tracks Library... + + + + + Search in the internal track collection under "Tracks" in the library + + + + + Ctrl+Shift+F + + + + Create &New Playlist 創建與新的播放清單 - + Create a new playlist 創建一個新的播放清單 - + Ctrl+n Ctrl n + - + Create New &Crate 創建新 & 箱 - + Create a new crate 創建一個新的箱子 - + Ctrl+Shift+N Ctrl + Shift + N - - + + &View 與視圖 - + Auto-hide menu bar 自动隐藏菜单栏 - + Auto-hide the main menu bar when it's not used. 不使用主菜单栏时自动隐藏主菜单栏。 - + May not be supported on all skins. 在所有的皮膚上可能不支援。 - + Show Skin Settings Menu 皮肤设置菜单 - + Show the Skin Settings Menu of the currently selected Skin 显示当前选定皮肤的皮肤设置菜单 - + Ctrl+1 Menubar|View|Show Skin Settings Ctrl 1 + - + Show Microphone Section 顯示麥克風節 - + Show the microphone section of the Mixxx interface. 顯示 Mixxx 介面的麥克風部分。 - + Ctrl+2 Menubar|View|Show Microphone Section Ctrl 2 + - + Show Vinyl Control Section 顯示乙烯控制節 - + Show the vinyl control section of the Mixxx interface. 顯示 Mixxx 介面的乙烯基控制部分。 - + Ctrl+3 Menubar|View|Show Vinyl Control Section Ctrl 3 + - + Show Preview Deck 顯示預覽甲板 - + Show the preview deck in the Mixxx interface. 在 Mixxx 介面中顯示預覽甲板。 - + Ctrl+4 Menubar|View|Show Preview Deck Ctrl 4 + - + Show Cover Art 顯示封面藝術 - + Show cover art in the Mixxx interface. 在 Mixxx 介面中顯示封面藝術。 - + Ctrl+6 Menubar|View|Show Cover Art Ctrl 6 + - + Maximize Library 最大限度地庫 - + Maximize the track library to take up all the available screen space. 最大化音樂庫以佔用所有可用的螢幕空間。 - + Space Menubar|View|Maximize Library 空間 - + + Show Auto DJ + + + + + Switch to the Auto DJ view. + + + + &Full Screen 與全螢幕 - + Display Mixxx using the full screen 使用全螢幕的顯示 Mixxx - + &Options 與選項 - + &Vinyl Control 與乙烯基控制 - + Use timecoded vinyls on external turntables to control Mixxx 在外部轉盤控制 Mixxx 上使用時間乙烯基 - + Enable Vinyl Control &%1 啟用乙烯控制 & %1 - + &Record Mix 與記錄組合 - + Record your mix to a file 記錄你組合到一個檔 - + Ctrl+R Ctrl + R - + Enable Live &Broadcasting 啟用即時 & 廣播 - + Stream your mixes to a shoutcast or icecast server 流到 shoutcast 或 icecast 伺服器你混合 - + Ctrl+L 按 Ctrl + L - + Enable &Keyboard Shortcuts 啟用與鍵盤快速鍵 - + Toggles keyboard shortcuts on or off 切換鍵盤快速鍵打開或關閉 - + Ctrl+` 按 Ctrl +' - + &Preferences 與首選項 - + Change Mixxx settings (e.g. playback, MIDI, controls) 改變 Mixxx 的設置 (例如播放 MIDI,控制項) - + &Developer 與開發人員 - + &Reload Skin & 重新載入皮膚 - + Reload the skin 重新載入皮膚 - + Ctrl+Shift+R Ctrl + Shift + R - + Developer &Tools 開發人員與工具 - + Opens the developer tools dialog 打開開發人員工具對話方塊 - + Ctrl+Shift+T Ctrl + Shift + T - + Stats: &Experiment Bucket 統計: & 實驗鬥 - + Enables experiment mode. Collects stats in the EXPERIMENT tracking bucket. 使實驗模式。收集統計實驗跟蹤存儲桶中。 - + Ctrl+Shift+E Ctrl + Shift + E - + Stats: &Base Bucket 統計: & 基地鬥 - + Enables base mode. Collects stats in the BASE tracking bucket. 啟用的基礎模式。收集統計基礎跟蹤桶內。 - + Ctrl+Shift+B Ctrl + Shift + B - + Deb&ugger Enabled Deb & ugger 啟用 - + Enables the debugger during skin parsing 在皮膚分析過程中啟用調試器 - + Ctrl+Shift+D 按 Ctrl + Shift + D - + &Help 與説明 - + Show Keywheel menu title 显示 Keywheel @@ -15983,74 +16527,74 @@ This can not be undone! 将库导出为 Engine DJ 格式 - + Show keywheel tooltip text 显示 Keywheel - + F12 Menubar|View|Show Keywheel F12 - + &Community Support 與社區的支援 - + Get help with Mixxx 獲得 Mixxx 的説明 - + &User Manual 與使用者手冊 - + Read the Mixxx user manual. 閱讀 Mixxx 使用者手冊。 - + &Keyboard Shortcuts 與鍵盤快速鍵 - + Speed up your workflow with keyboard shortcuts. 加快您的工作流使用鍵盤快速鍵。 - + &Settings directory &设置目录 - + Open the Mixxx user settings directory. 打开 Mixxx 用户设置目录。 - + &Translate This Application & 翻譯此應用程式 - + Help translate this application into your language. 幫忙翻譯成您的語言此應用程式。 - + &About & 約 - + About the application 有關應用程式 @@ -16058,25 +16602,25 @@ This can not be undone! WOverview - + 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 完成处理 ... @@ -16085,25 +16629,13 @@ This can not be undone! WSearchLineEdit - - Clear input - Clear the search bar input field - 清除輸入 - - - - Ctrl+F - Search|Focus - Ctrl + F - - - + Search noun 搜索 - + Clear input 清除輸入 @@ -16114,93 +16646,87 @@ This can not be undone! 搜索... - + Clear the search bar input field 清除搜索栏输入字段 - - Enter a string to search for - 輸入要搜索的字串 + + Return + 返回 - - Use operators like bpm:115-128, artist:BooFar, -year:1990 - 使用运算符,如 bpm:115-128, artist:BooFar, -year:1990 + + Enter a string to search for. + - - For more information see User Manual > Mixxx Library - 有关更多信息,请参阅 Mixxx Library >用户手册 + + Use operators like bpm:115-128, artist:BooFar, -year:1990. + - Shortcut - 快捷方式 + See User Manual > Mixxx Library for more information. + - - Ctrl+F - Ctrl + F + + Focus/Select All (Search in current view) + Give search bar input focus + - - Focus - Give search bar input focus - 焦點 + + Focus/Select All (Search in 'Tracks' library view) + - - - Ctrl+Backspace - Ctrl + 倒退鍵 + + Additional Shortcuts When Focused: + - Shortcuts - 快捷方式 + Trigger search before search-as-you-type timeout or focus tracks view afterwards + - Return - 返回 + Esc or Ctrl+Return + - Trigger search before search-as-you-type timeout orjump to tracks view afterwards - 在键入时搜索超时之前触发搜索,或在之后跳转到轨道视图 + Immediately trigger search and focus tracks view + Exit search bar and leave focus + - + Ctrl+Space Ctrl + 空格键 - + Toggle search history Shows/hides the search history entries 切换搜索历史记录 - + Delete or Backspace 删除或退格 - - Delete query from history - 从历史记录中删除查询 - - - - Esc - 按 esc 鍵 + + in search history + - - Exit search - Exit search bar and leave focus - 退出搜索 + + Delete query from history + 从历史记录中删除查询 @@ -16284,625 +16810,640 @@ This can not be undone! WTrackMenu - + Load to 载入到 - + Deck 甲板上 - + Sampler 取樣器 - + Add to Playlist 添加到播放清單 - + Crates 音樂箱 - + Metadata 元数据 - + Update external collections 更新外部集合 - + Cover Art 封面 - + Adjust BPM 调节 BPM - + Select Color 选择颜色 - - + + Analyze 分析 - - + + Delete Track Files 删除音轨数据 - + Add to Auto DJ Queue (bottom) 將添加到自動 DJ 佇列 (底部) - + Add to Auto DJ Queue (top) 將添加到自動 DJ 佇列 (頂部) - + Add to Auto DJ Queue (replace) 加入自動 DJ 柱列 (取代) - + Preview Deck 預覽甲板 - + Remove 刪除 - + Remove from Playlist 从播放列表中删除 - + Remove from Crate 从播放列表中删除 - + Hide from Library 隱藏從庫 - + Unhide from Library 從圖書館取消隱藏 - + Purge from Library 從庫中清除 - + Move Track File(s) to Trash 将轨道文件移至废纸篓 - + Delete Files from Disk 从磁盘中删除文件 - + Properties 屬性 - + Open in File Browser 在檔瀏覽器中打開 - + Select in Library 在库中选择 - + Import From File Tags 从文件标签导入 - + Import From MusicBrainz 从 MusicBrainz 导入 - + Export To File Tags 导出文件属性 - + BPM and Beatgrid 拍速和拍格 - + Play Count 播放計數 - + Rating 評分 - + Cue Point 播放點 - - + + Hotcues 熱點 - + Intro v - + Outro 结尾 - + Key 關鍵 - + ReplayGain 重播增益 - + Waveform 波形 - + Comment 評論 - + All 全部 - + Sort hotcues by position (remove offsets) - + Sort hotcues by position - + Lock BPM BPM 鎖 - + Unlock BPM 解鎖 BPM - + Double BPM 雙 BPM - + Halve BPM 減半 BPM - + 2/3 BPM 2/3 BPM - + 3/4 BPM 3/4 BPM - + 4/3 BPM 4/3 BPM - + 3/2 BPM 3/2 BPM - + Shift Beatgrid Half Beat - + Reanalyze 重新分析 - + Reanalyze (constant BPM) 重新分析(恒定 BPM) - + Reanalyze (variable BPM) 重新分析(变量 BPM) - + Update ReplayGain from Deck Gain 更新Deck Gain的ReplayGain - + Deck %1 甲板 %1 - + Importing metadata of %n track(s) from file tags 从文件标签导入 %n 个轨道的元数据 - + Marking metadata of %n track(s) to be exported into file tags 标记要导出到文件标签的 %n 个轨道的数据 - - + + 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) 缩放 %n 个磁道的 BPM - + Undo BPM/beats change of %n track(s) 撤消 BPM/节拍 %n 个轨道的更改 - + Locking BPM of %n track(s) 锁定 %n 个磁道的 BPM - + Unlocking BPM of %n track(s) 解锁 %n 个磁道的 BPM - + Setting rating of %n track(s) 清除 %n 条轨道的评级 - + Setting color of %n track(s) 设置 %n 个轨道的颜色 - + Resetting play count of %n track(s) 重置 %n 个轨道的播放计数 - + Resetting beats of %n track(s) 重置 %n 个轨道的节拍 - + Clearing rating of %n track(s) 清除 %n 条磁道的评级 - + Clearing comment of %n track(s) 正在清除 %n 个轨道的注释 - + Removing main cue from %n track(s) 从 %n 个轨道中删除主提示点 - + Removing outro cue from %n track(s) 从 %n 个轨道中删除结尾提示 - + Removing intro cue from %n track(s) 从 %n 个轨道中删除前奏提示 - + Removing loop cues from %n track(s) 从 %n 个轨道中删除 Loop 提示点 - + Removing hot cues from %n track(s) 从 %n 个轨道中删除热提示 - + Sorting hotcues of %n track(s) by position (remove offsets) - + Sorting hotcues of %n track(s) by position - + Resetting keys of %n track(s) 重置 %n 个轨道的键 - + Resetting replay gain of %n track(s) 重置 %n 个轨道的重放增益 - + Resetting waveform of %n track(s) 重置 %n 个轨道的波形 - + Resetting all performance metadata of %n track(s) 重置 %n 个轨道的所有性能数据 - + Move these files to the trash bin? 将这些文件移动到垃圾箱? - + Permanently delete these files from disk? 从磁盘中永久删除这些文件? - - + + This can not be undone! 此操作无法撤消! - + Cancel 取消 - + Delete Files 删除文件 - + Okay - + Move Track File(s) to Trash? 要把轨道文件移到垃圾桶吗? - + Track Files Deleted 文件已删除 - + Track Files Moved To Trash 已移动到垃圾桶的文件 - + %1 track files were moved to trash and purged from the Mixxx database. %1 轨道文件被移至废纸篓并从 Mixxx 数据库中清除。 - + %1 track files were deleted from disk and purged from the Mixxx database. %1 轨道文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + Track File Deleted 文件已删除 - + Track file was deleted from disk and purged from the Mixxx database. 跟踪文件已从磁盘中删除,并从 Mixxx 数据库中清除。 - + The following %1 file(s) could not be deleted from disk 无法从磁盘中删除以下 %1 文件 - + This track file could not be deleted from disk 无法从磁盘中删除此跟踪文件 - + Remaining Track File(s) 剩余轨道文件 - + Close 關閉 - + Clear Reset metadata in right click track context menu in library 清除 - + Loops 循环 - + Clear BPM and Beatgrid 清除 BPM 和节拍样式 - + Undo last BPM/beats change 撤消上次 BPM/节拍更改 - + Move this track file to the trash bin? 把这个轨道文件移到垃圾桶吗? - + Permanently delete this track file from disk? 永久删除这个轨道文件吗? - + All decks where these tracks are loaded will be stopped and the tracks will be ejected. 加载这些轨道的所有卡盘都将停止,轨道将被弹出。 - + All decks where this track is loaded will be stopped and the track will be ejected. 加载此轨道的所有卡盘都将停止,轨道将被弹出。 - + Removing %n track file(s) from disk... 正在从磁盘中删除 %n 个磁道文件... - + Note: if you are in the Computer or Recording view you need to click the current view again to see changes. 注意:如果您位于 Computer 或 Recording 视图中,则需要再次单击当前视图才能看到更改。 - + Track File Moved To Trash 文件已移至垃圾桶 - + Track file was moved to trash and purged from the Mixxx database. 跟踪文件已移至回收站并从 Mixxx 数据库中清除。 - + Don't show again during this session - + The following %1 file(s) could not be moved to trash 以下 %1 文件无法移至回收站 - + This track file could not be moved to trash 无法将此跟踪文件移至回收站 + + + Replace current Auto DJ queue? + + + + + Do you want to replace the entire Auto DJ queue with the selected tracks? + + + + + Don't ask again during this session + + - + Setting cover art of %n track(s) 设置 %n 个轨道的封面艺术 - + Reloading cover art of %n track(s) 重新加载 %n 个轨道的封面艺术 @@ -16956,37 +17497,37 @@ This can not be undone! WTrackTableView - + Confirm track hide 确认轨道隐藏 - + Are you sure you want to hide the selected tracks? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from AutoDJ queue? 您确定要从 AutoDJ 队列中删除选定的曲目吗? - + Are you sure you want to remove the selected tracks from this crate? 您确定要隐藏选定的轨道吗? - + Are you sure you want to remove the selected tracks from this playlist? 您确定要从此播放列表中删除选定的曲目吗? - + Don't ask again during this session 在此会话期间不要再次询问 - + Confirm track removal 确认轨道移除 @@ -16994,12 +17535,12 @@ This can not be undone! WTrackTableViewHeader - + Show or hide columns. 顯示或隱藏列。 - + Shuffle Tracks @@ -17037,22 +17578,22 @@ This can not be undone! 媒体库 - + 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. @@ -17210,6 +17751,24 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 网络请求尚未启动 + + mixxx::qml::QmlApplication + + + Existing user profile detected + + + + + Trying to run Mixxx 3.0 with an existing %0 user profile! <br><br>There is <b>serious risks</b> of data loss and corruption.<br>We recommend using a test profile folder with the '--settings-path' argument. <br><br>If you want to continue at your own risk, run Mixxx with the argument '--allow-dangerous-data-corruption-risk'. + + + + + Ok + + + mixxx::qml::QmlVisibleEffectsModel @@ -17218,4 +17777,27 @@ Mixxx 需要 qt 離散度與 SQLite 支援。請閱讀有關如何構建它的 未加载效果器 + + mixxx::qml::QmlWaveformRendererMark + + + Cannot find the marker pixmap + + + + + Cannot find the marker endPixmap + + + + + Cannot find the marker icon + + + + + Cannot find the marker endIcon + + + \ No newline at end of file diff --git a/res/translations/source_copy_allow_list.tsv b/res/translations/source_copy_allow_list.tsv index 9d717120198f..10373a53bfe3 100644 --- a/res/translations/source_copy_allow_list.tsv +++ b/res/translations/source_copy_allow_list.tsv @@ -170,7 +170,7 @@ ca,de,el,en_CA,en_GB,es*,fr_CA,fr_CI,hu,it,nl,pt*,sl,sv Res * FPS: %0/%1 * \u276f * \u276e -de,hu,bs,cs,da,fr,hr,id,it,lb,ms,nb,nl,nn,oc,pl,ro,sk,sl,sv,vi,sq_AL Album +de,hu,bs,cs,da,fr,hr,id,it,lb,ms,nb,nl,nn,oc,pl,ro,sk,sl,sv,vi,sq_AL,pt* Album de,da,fr,lb,ms,nl,oc,sv Genre de,it,pl Bitrate: es,es_419,es_AR,es_CO,es_MX,ca,es_ES Error: @@ -183,26 +183,26 @@ hu,ca,de,et,fr,nb,pl,ro,sv,tr Port hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* A hu,pt,pt_PT,et,fi,nl,pl,pt_BR,ro,zh* Bb hu,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* B -hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* C -hu,fi,nl,pl,pt_BR,ro,sl,zh* Db +hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh*,pt C +hu,fi,nl,pl,pt_BR,ro,sl,zh*,pt Db hu,pt,pt_PT,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* D hu,et,fi,nl,pl,pt_BR,ro,sl,zh* Eb -hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* E -hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* F +hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh*,pt E +hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh*,pt F hu,et,fi,nl,pl,pt_BR,ro,sl,zh_CN F# hu,cs,de,et,fi,fr,nl,pl,pt_BR,ro,ru,sl,vi,zh* G -hu,et,fi,nl,pl,pt_BR,ro,sl,zh* Ab +hu,et,fi,nl,pl,pt_BR,ro,sl,zh*,pt Ab hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK Am -hu,et,fi,nl,pl,pt_BR,ro,zh* Bbm -hu,et,fi,nl,pl,pt_BR,ro,zh* Bm +hu,et,fi,nl,pl,pt_BR,ro,zh*,pt Bbm +hu,et,fi,nl,pl,pt_BR,ro,zh*,pt Bm hu,et,fi,nl,pl,pt_BR,ro,sl,vi,zh,zh_CN,zh_HK Cm -hu,et,fi,nl,pl,pt_BR,ro,sl,zh_CN C#m -hu,et,fi,nl,pl,pt_BR,ro,sl,zh* Dm -hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK Ebm -hu,de,et,fi,nl,pl,pt_BR,ro,sl,vi,zh* Em +hu,et,fi,nl,pl,pt_BR,ro,sl,zh_CN,pt C#m +hu,et,fi,nl,pl,pt_BR,ro,sl,zh*,pt Dm +hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK,pt Ebm +hu,de,et,fi,nl,pl,pt_BR,ro,sl,vi,zh*,pt Em hu,et,fi,nl,pl,pt_BR,ro,sl,zh_CN Fm -hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK F#m -hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK Gm +hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK,pt F#m +hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK,pt Gm hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK G#m * 10Hz * 10ms @@ -213,8 +213,8 @@ hu,et,fi,nl,pl,pt_BR,ro,sl,zh,zh_CN,zh_HK G#m hu,bs,de,eo,eu,fr,hr,it,lb,lt,lv,nb,nl,pt_PT,ro,sk,sv,vi Min hu,bs,de,eu,fr,hr,it,lb,nl,ro,sk,sv,vi Max pt,pt_BR,ca,de,fr,it,nl,pl,pt_PT,sl,sv Tremolo -pt_BR,da,de,id,it,nl,pt,ro Mixer -pt_BR,de,it,nl,pt_PT Reloop +pt_BR,da,de,id,it,nl,pt*,ro Mixer +pt_BR,de,it,nl,pt* Reloop de,es*,nl,pt_BR,vi Hotcues de,es* Hotcues %1-%2 nl,pl Hotcue index @@ -275,12 +275,12 @@ nl Intro start nl Type: nl Equalizer Plugin nl,sv,vi Reverb -nl Encoder +nl,it Encoder it,nl,pl,ro,vi Downsampling it,nl 32 bits float -nl Queen Mary Key Detector +nl,it Queen Mary Key Detector it Pitch -it,nl Hot cues +it,nl,zh* Hot cues it &File it,nl database sn Key @@ -329,8 +329,8 @@ fr Question fr Microphone fr %1 minutes fr,it Bypass Fr. -fr Gain 1 -fr Gain 2 +fr,sv Gain 1 +fr,sv Gain 2 fr,it,ru,es* Queen Mary University London fr,nl Distortion fr,de Ratio (:1) @@ -351,16 +351,16 @@ it Fine it Deck Equalizers it,nl,es* Lead-In it Frame rate -it,nl,pt_BR Caching +it,nl,pt* Caching it,nl skin -it decks +it,es* decks de Timer (Fallback) de,fr,it,nl,pl,sv,es* Outro de,nl Loops el,pt_BR Tool tips el,es*,eu,id,it,lb,nb,pt*,tr Scratching es*,fr,it,nl,pt*,sq_AL &Ok -es*,pt_BR Switch +es*,pt_BR,sv Switch es*,pt* Manual et,hr,it,tr,vi BPM Tap fr,it,nl,zh* pt @@ -371,7 +371,7 @@ nl Audio Buffer nl,sv OpenGL Direct Rendering nl,zh* Hard Clip nl,zh* Hard -sv (status text) +sv,de (status text) da Input de,nl Moog Filter de,fr,it,nl,pt*,ro,sv Phaser @@ -384,7 +384,7 @@ de,it,nl,es* Drive de,fr,it,pl Passthrough de,it,nl Glitch de,it Beatgrids -de,nl,pt_BR,pt_PT,ro,vi,pl Sampler +de,nl,pt_BR,pt_PT,ro,vi Sampler de,es*,it,nl,pt_BR,ro,vi Hotcue de Loop-In Marker de Loop-Out Marker @@ -423,7 +423,7 @@ de,it,ja,nl,pt*,ro Deck 1 de,it,ja,nl,pt*,ro Deck 2 de,it,ja,nl Deck 3 de,it,ja,nl Deck 4 -de,fr,it,nl,sl fps +de,fr,it,nl,sl,sv fps de,nl Decks de,nl Track de,nl Tracks @@ -441,20 +441,30 @@ nl,de Release (ms) it Tempo Tap zh* Soft Clipping zh* Hard Clipping -es* No -nl,sq_AL,es*,pl VID: +es,es_419,es_AR,es_CO,es_ES,es_MX No +nl,sq_AL,es,es_419,es_AR,es_CO,es_ES,es_MX,pl,sv VID: nl Product ID -nl,sq_AL,es*,pl PID: +nl,sq_AL,es,es_419,es_AR,es_CO,es_ES,es_MX,pl,sv PID: nl Lossy nl Lossless nl Top -nl OpenGL Status +nl,de OpenGL Status nl Stem Label nl Stem Mute -sq_AL Artist + Album -sq_AL Off +sq_AL,sv Artist + Album +sq_AL,it Off de Attack (ms) de Attack +fr,it,sl Ctrl+f +fr,sl Ctrl+Shift+F +it Mixxx %1.%2 Development Team it Okay +sv Decay +sv Kill Low +sv Kill Mid +sv Kill High +tr Mount vi Samplerate -fr Stem +fr,sl Stem +fr Gain (dB) +sl,sv AGC diff --git a/src/controllers/android.cpp b/src/controllers/android.cpp new file mode 100644 index 000000000000..0d5ade3b35aa --- /dev/null +++ b/src/controllers/android.cpp @@ -0,0 +1,129 @@ +#include "android.h" + +#include +#include +#include + +#include +#include + +namespace mixxx { +namespace android { +std::mutex s_androidLock = {}; +std::condition_variable s_grantingWaitCond = {}; +std::vector> s_grantingResult = {}; +QJniObject s_intent = {}; +QJniObject s_usbManager = {}; + +const QJniObject& getIntent() { + __android_log_print(ANDROID_LOG_VERBOSE, "mixxx", "about to get intent"); + std::unique_lock lock(s_androidLock); + if (s_intent.isValid()) { + return s_intent; + } + // QNativeInterface::QAndroidApplication::runOnAndroidMainThread([]() { + if (!QNativeInterface::QAndroidApplication::isActivityContext()) { + __android_log_print(ANDROID_LOG_WARN, + "mixxx", + "current context doesn't refer to an activity!"); + } + + QJniObject context = QNativeInterface::QAndroidApplication::context(); + + s_usbManager = QJniObject("org/mixxx/UsbPermission"); + jint FLAG_IMMUTABLE = + QJniObject::getStaticField( + "android/app/PendingIntent", + "FLAG_IMMUTABLE"); + QtJniTypes::String ACTION_USB_PERMISSION = + QJniObject::fromString("org.mixxx.permissions.USB_PERMISSION"); + QtJniTypes::Intent intent = QJniObject("android/content/Intent", + "(Ljava/lang/String;)V", + ACTION_USB_PERMISSION.object()); + if (!intent.isValid()) { + __android_log_print(ANDROID_LOG_WARN, "mixxx", "pending intent is invalid!"); + } + s_intent = + QJniObject::callStaticMethod("android/app/PendingIntent", + "getBroadcast", + "(Landroid/content/Context;ILandroid/content/" + "Intent;I)Landroid/app/PendingIntent;", + context, + 0, + intent, + FLAG_IMMUTABLE); + + if (!s_intent.isValid()) { + __android_log_print(ANDROID_LOG_WARN, "mixxx", "pending intent is invalid!"); + } + + __android_log_print(ANDROID_LOG_VERBOSE, + "mixxx", + "about to register the the receiver %d", + s_usbManager.isValid()); + auto success = s_usbManager.callMethod("registerServiceBroadcastReceiver", + "(Landroid/content/Context;)Z", + context.object()); + if (!success) { + __android_log_print(ANDROID_LOG_WARN, "mixxx", "failed to registered the receiver!"); + } + // }); + return s_intent; +} + +bool waitForPermission(const QJniObject& device) { + __android_log_print(ANDROID_LOG_VERBOSE, "mixxx", "about to wait for perm"); + std::unique_lock lock(s_androidLock); + std::vector>::const_iterator result = s_grantingResult.cend(); + + int retries = 0; + + while (!s_grantingWaitCond.wait_for( + lock, std::chrono::seconds(1), [&result, device] { + result = std::find_if(s_grantingResult.cbegin(), + s_grantingResult.cend(), + [device](auto resultPair) { + return resultPair.first == device; + }); + return result != s_grantingResult.cend(); + })) { + __android_log_print(ANDROID_LOG_VERBOSE, + "mixxx", + "Not found - current result count: %lu", + s_grantingResult.size()); + QCoreApplication::processEvents(); + retries++; + if (retries >= 10) { + __android_log_print(ANDROID_LOG_WARN, "mixxx", "wait for perm timeout"); + qWarning() << "Timeout reached when waiting for Android permission to USB device"; + return false; + } + } + __android_log_print(ANDROID_LOG_VERBOSE, "mixxx", "got perm result"); + return result->second; +} + +void usbDeviceAccessResult(QJniObject device, bool granted) { + std::unique_lock lock(s_androidLock); + __android_log_print(ANDROID_LOG_WARN, "mixxx", "received permission result: %d", granted); + s_grantingResult.push_back(std::make_pair<>(device, granted)); + s_grantingWaitCond.notify_one(); + // FIXME Handle large list? +} +} // namespace android +} // namespace mixxx + +Q_DECLARE_JNI_CLASS(UsbPermissionClass, "org/mixxx/UsbPermission") + +void usbDeviceAccessResult(JNIEnv*, jobject, jobject device, jboolean granted) { + mixxx::android::usbDeviceAccessResult(device, granted); +} +Q_DECLARE_JNI_NATIVE_METHOD(usbDeviceAccessResult) + +JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM*, void*) { + QJniEnvironment env; + env.registerNativeMethods({ + Q_JNI_NATIVE_METHOD(usbDeviceAccessResult), + }); + return JNI_VERSION_1_6; +} diff --git a/src/controllers/android.h b/src/controllers/android.h new file mode 100644 index 000000000000..7c34d60cace6 --- /dev/null +++ b/src/controllers/android.h @@ -0,0 +1,21 @@ +#pragma once + +#include + +struct libusb_context; + +namespace mixxx { +namespace android { + +const QJniObject& getIntent(); +bool waitForPermission(const QJniObject& device); +void usbDeviceAccessResult(QJniObject device, bool granted); + +extern std::mutex s_androidLock; +extern std::condition_variable s_grantingWaitCond; +extern std::vector> s_grantingResult; +extern QJniObject s_intent; +extern QJniObject s_usbManager; + +} // namespace android +} // namespace mixxx diff --git a/src/controllers/bulk/bulkcontroller.cpp b/src/controllers/bulk/bulkcontroller.cpp index e03d275fcded..a6d28787ab34 100644 --- a/src/controllers/bulk/bulkcontroller.cpp +++ b/src/controllers/bulk/bulkcontroller.cpp @@ -2,7 +2,9 @@ #include -#include +#if defined(Q_OS_ANDROID) +#include "controllers/android.h" +#endif #include "controllers/bulk/bulksupported.h" #include "controllers/defs_controllers.h" @@ -55,6 +57,7 @@ void BulkReader::run() { qDebug() << "Stopped Reader"; } +#ifndef Q_OS_ANDROID static QString get_string(libusb_device_handle* handle, uint8_t id) { unsigned char buf[128] = { 0 }; @@ -74,7 +77,8 @@ BulkController::BulkController(libusb_context* context, m_context(context), m_phandle(handle), m_inEndpointAddr(0), - m_outEndpointAddr(0) { + m_outEndpointAddr(0), + m_pReader(nullptr) { m_vendorId = desc->idVendor; m_productId = desc->idProduct; @@ -84,8 +88,34 @@ BulkController::BulkController(libusb_context* context, setInputDevice(true); setOutputDevice(true); - m_pReader = nullptr; } +#else +BulkController::BulkController(const QJniObject& usbDevice) + : Controller(QString("%1 %2").arg( + usbDevice.callMethod("getProductName").toString(), + usbDevice.callMethod("getSerialNumber").toString())), + m_context(nullptr), + m_phandle(nullptr), + m_androidUsbDevice(usbDevice), + m_inEndpointAddr(0), + m_outEndpointAddr(0), + m_pReader(nullptr) { + m_vendorId = static_cast(usbDevice.callMethod("getVendorId")); + m_productId = static_cast(usbDevice.callMethod("getProductId")); + + m_manufacturer = usbDevice.callMethod("getManufacturerName").toString(); + m_product = usbDevice.callMethod("getProductName").toString(); + m_sUID = usbDevice.callMethod("getSerialNumber").toString(); + if (m_sUID.isEmpty()) { + // Android won't allow reading serial number if permission wasn't + // granted previously. Is this an issue? + m_sUID = "N/A"; + } + + setInputDevice(true); + setOutputDevice(true); +} +#endif BulkController::~BulkController() { if (isOpen()) { @@ -184,6 +214,68 @@ int BulkController::open(const QString& resourcePath) { m_outEndpointAddr = pDevice->endpoints.out_epaddr; m_interfaceNumber = pDevice->endpoints.interface_number; +#ifdef __ANDROID__ + QJniObject context = QNativeInterface::QAndroidApplication::context(); + QJniObject USB_SERVICE = + QJniObject::getStaticObjectField( + "android/content/Context", + "USB_SERVICE", + "Ljava/lang/String;"); + auto usbManager = context.callObjectMethod("getSystemService", + "(Ljava/lang/String;)Ljava/lang/Object;", + USB_SERVICE.object()); + if (!usbManager.isValid()) { + qDebug() << "usbManager invalid"; + return -1; + } + + if (!usbManager.callMethod("hasPermission", + "(Landroid/hardware/usb/UsbDevice;)Z", + m_androidUsbDevice)) { + auto pendingIntent = mixxx::android::getIntent(); + usbManager.callMethod("requestPermission", + "(Landroid/hardware/usb/UsbDevice;Landroid/app/" + "PendingIntent;)V", + m_androidUsbDevice, + pendingIntent); + // Wait for permission + if (!mixxx::android::waitForPermission(m_androidUsbDevice)) { + qDebug() << "access to device wasn't granted"; + return -1; + } + m_sUID = m_androidUsbDevice.callMethod("getSerialNumber").toString(); + } + m_androidConnection = usbManager.callMethod("openDevice", + "(Landroid/hardware/usb/UsbDevice;)Landroid/hardware/usb/" + "UsbDeviceConnection;", + m_androidUsbDevice); + + if (!m_androidConnection.isValid()) { + qDebug() << "Unable to open BULK device"; + return -1; + } + + auto fileDescriptor = static_cast( + m_androidConnection.callMethod("getFileDescriptor")); + + // Open device by file descriptor + qCInfo(m_logBase) << "Opening BULK device" << getName() + << "by file descriptor" + << fileDescriptor << "and interface" + << m_interfaceNumber; + + libusb_set_option(nullptr, LIBUSB_OPTION_NO_DEVICE_DISCOVERY); + libusb_init(&m_context); + int error = libusb_wrap_sys_device(nullptr, (intptr_t)fileDescriptor, &m_phandle); + if (error < 0) { + qCWarning(m_logBase) << "Cannot open interface for" << getName() + << ":" << libusb_error_name(error); + libusb_close(m_phandle); + return -1; + } else { + qCDebug(m_logBase) << "Opened interface for" << getName(); + } +#else // XXX: we should enumerate devices and match vendor, product, and serial if (m_phandle == nullptr) { m_phandle = libusb_open_device_with_vid_pid( @@ -197,6 +289,7 @@ int BulkController::open(const QString& resourcePath) { if (libusb_set_auto_detach_kernel_driver(m_phandle, true) == LIBUSB_ERROR_NOT_SUPPORTED) { qCDebug(m_logBase) << "unable to automatically detach kernel driver for" << getName(); } +#endif if (m_interfaceNumber.has_value()) { int error = libusb_claim_interface(m_phandle, *m_interfaceNumber); @@ -272,6 +365,12 @@ int BulkController::close() { } qCInfo(m_logBase) << " Closing device"; libusb_close(m_phandle); + +#ifdef Q_OS_ANDROID + if (m_androidConnection.isValid()) { + m_androidConnection.callMethod("close"); + } +#endif m_phandle = nullptr; setOpen(false); return 0; diff --git a/src/controllers/bulk/bulkcontroller.h b/src/controllers/bulk/bulkcontroller.h index d9910e88a8c4..cd6b0b1f309b 100644 --- a/src/controllers/bulk/bulkcontroller.h +++ b/src/controllers/bulk/bulkcontroller.h @@ -3,6 +3,9 @@ #include #include #include +#ifdef Q_OS_ANDROID +#include +#endif #include "controllers/controller.h" #include "controllers/hid/legacyhidcontrollermapping.h" @@ -34,10 +37,15 @@ class BulkReader : public QThread { class BulkController : public Controller { Q_OBJECT public: +#ifndef Q_OS_ANDROID BulkController( libusb_context* context, libusb_device_handle* handle, struct libusb_device_descriptor* desc); +#else + BulkController( + const QJniObject& usbDevice); +#endif ~BulkController() override; QString mappingExtension() override; @@ -100,6 +108,10 @@ class BulkController : public Controller { libusb_context* m_context; libusb_device_handle *m_phandle; +#ifdef Q_OS_ANDROID + QJniObject m_androidUsbDevice; + QJniObject m_androidConnection; +#endif // Local copies of things we need from desc diff --git a/src/controllers/bulk/bulkenumerator.cpp b/src/controllers/bulk/bulkenumerator.cpp index 089a337a3cf0..4552a9f79fc3 100644 --- a/src/controllers/bulk/bulkenumerator.cpp +++ b/src/controllers/bulk/bulkenumerator.cpp @@ -1,35 +1,102 @@ #include "controllers/bulk/bulkenumerator.h" #include +#include + +#ifdef __ANDROID__ +#include +#include +#include +#include + +#include +#include +#endif #include "controllers/bulk/bulkcontroller.h" #include "controllers/bulk/bulksupported.h" #include "moc_bulkenumerator.cpp" +#include "util/assert.h" +#ifndef __ANDROID__ BulkEnumerator::BulkEnumerator() : ControllerEnumerator(), m_context(nullptr) { - libusb_init(&m_context); + int r; + r = libusb_init(&m_context); + VERIFY_OR_DEBUG_ASSERT(r == 0) { + qCritical() << "libusb_init failed" << libusb_error_name(r); + m_context = nullptr; + } } +#else +BulkEnumerator::BulkEnumerator() = default; +#endif BulkEnumerator::~BulkEnumerator() { qDebug() << "Deleting USB Bulk devices..."; while (m_devices.size() > 0) { delete m_devices.takeLast(); } - libusb_exit(m_context); +#ifndef __ANDROID__ + if (m_context) { + libusb_exit(m_context); + } +#endif } -static bool is_interesting(const libusb_device_descriptor& desc) { +static bool is_interesting(const uint16_t idVendor, const uint16_t idProduct) { return std::any_of(std::cbegin(bulk_supported), std::cend(bulk_supported), [&](const auto& dev) { - return dev.key.vendor_id == desc.idVendor && dev.key.product_id == desc.idProduct; + return dev.key.vendor_id == idVendor && dev.key.product_id == idProduct; }); } QList BulkEnumerator::queryDevices() { qDebug() << "Scanning USB Bulk devices:"; +#ifdef __ANDROID__ + QJniObject context = QNativeInterface::QAndroidApplication::context(); + QJniObject USB_SERVICE = + QJniObject::getStaticObjectField( + "android/content/Context", + "USB_SERVICE", + "Ljava/lang/String;"); + auto usbManager = context.callObjectMethod("getSystemService", + "(Ljava/lang/String;)Ljava/lang/Object;", + USB_SERVICE.object()); + if (!usbManager.isValid()) { + qDebug() << "usbManager invalid"; + return {}; + } + + QJniObject deviceListObject = + usbManager.callMethod("getDeviceList", "()Ljava/util/HashMap;"); + deviceListObject = deviceListObject.callMethod("values", "()Ljava/util/Collection;"); + QJniArray deviceList = QJniArray( + deviceListObject.callMethod("toArray")); + __android_log_print(ANDROID_LOG_VERBOSE, + "mixxx", + "found %d USB devices for BULK enumerator", + deviceList.size()); + + for (const auto& usbDevice : deviceList) { + const uint16_t idVendor = static_cast( + usbDevice->callMethod("getVendorId")); + ; + const uint16_t idProduct = static_cast( + usbDevice->callMethod("getProductId")); + ; + if (is_interesting(idVendor, idProduct)) { + BulkController* currentDevice = + new BulkController(usbDevice); + m_devices.push_back(currentDevice); + } + } +#else + VERIFY_OR_DEBUG_ASSERT(m_context) { + return {}; + } libusb_device **list; ssize_t cnt = libusb_get_device_list(m_context, &list); ssize_t i = 0; @@ -40,7 +107,7 @@ QList BulkEnumerator::queryDevices() { struct libusb_device_descriptor desc; libusb_get_device_descriptor(device, &desc); - if (is_interesting(desc)) { + if (is_interesting(desc.idVendor, desc.idProduct)) { struct libusb_device_handle* handle = nullptr; err = libusb_open(device, &handle); if (err) { @@ -54,5 +121,6 @@ QList BulkEnumerator::queryDevices() { } } libusb_free_device_list(list, 1); +#endif return m_devices; } diff --git a/src/controllers/bulk/bulkenumerator.h b/src/controllers/bulk/bulkenumerator.h index 882fe808717e..222417078c3b 100644 --- a/src/controllers/bulk/bulkenumerator.h +++ b/src/controllers/bulk/bulkenumerator.h @@ -16,5 +16,7 @@ class BulkEnumerator : public ControllerEnumerator { private: QList m_devices; +#ifndef __ANDROID__ libusb_context* m_context; +#endif }; diff --git a/src/controllers/bulk/bulksupported.h b/src/controllers/bulk/bulksupported.h index a7bf6c916d60..f10673e87ba4 100644 --- a/src/controllers/bulk/bulksupported.h +++ b/src/controllers/bulk/bulksupported.h @@ -28,4 +28,5 @@ constexpr static bulk_support_lookup bulk_supported[] = { {{0x06f8, 0xb107}, {0x83, 0x03, std::nullopt}}, // Hercules Mk4 {{0x06f8, 0xb100}, {0x86, 0x06, std::nullopt}}, // Hercules Mk2 {{0x06f8, 0xb120}, {0x82, 0x03, std::nullopt}}, // Hercules MP3 LE / Glow + {{0x17cc, 0x1720}, {0x00, 0x03, 0x04}}, // Traktor NI S4 Mk3 }; diff --git a/src/controllers/controllerenumerator.cpp b/src/controllers/controllerenumerator.cpp index 36bc56f3f6e1..4fe0f631130a 100644 --- a/src/controllers/controllerenumerator.cpp +++ b/src/controllers/controllerenumerator.cpp @@ -2,9 +2,5 @@ #include "moc_controllerenumerator.cpp" -ControllerEnumerator::ControllerEnumerator() - : QObject() { -} - -ControllerEnumerator::~ControllerEnumerator() { -} +ControllerEnumerator::ControllerEnumerator() = default; +ControllerEnumerator::~ControllerEnumerator() = default; diff --git a/src/controllers/controllerenumerator.h b/src/controllers/controllerenumerator.h index e1b9e5f0fc14..18ca42847a58 100644 --- a/src/controllers/controllerenumerator.h +++ b/src/controllers/controllerenumerator.h @@ -18,10 +18,4 @@ class ControllerEnumerator : public QObject { virtual ~ControllerEnumerator(); virtual QList queryDevices() = 0; - - // Sub-classes return true here if their devices must be polled to get data - // from the controller. - virtual bool needPolling() { - return false; - } }; diff --git a/src/controllers/controllerhidreporttabsmanager.cpp b/src/controllers/controllerhidreporttabsmanager.cpp new file mode 100644 index 000000000000..3194e5bd211b --- /dev/null +++ b/src/controllers/controllerhidreporttabsmanager.cpp @@ -0,0 +1,547 @@ +#include "controllerhidreporttabsmanager.h" + +#include +#include +#include +#include +#include +#include +#include + +#include "controllers/hid/hidusagetables.h" +#include "moc_controllerhidreporttabsmanager.cpp" +#include "util/parented_ptr.h" + +namespace { +QTableWidgetItem* createReadOnlyItem(const QString& text, bool rightAlign = false) { + auto* item = new QTableWidgetItem(text); + item->setFlags(item->flags() & ~Qt::ItemIsEditable); + if (rightAlign) { + item->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter); + } + return item; +} + +QTableWidgetItem* createValueItem( + hid::reportDescriptor::HidReportType reportType, + int minVal, + int maxVal) { + auto* item = new QTableWidgetItem; + QFont font = item->font(); + font.setBold(true); + item->setFont(font); + if (reportType == hid::reportDescriptor::HidReportType::Input) { + item->setFlags(item->flags() & ~Qt::ItemIsEditable); + } else { + item->setFlags(item->flags() | Qt::ItemIsEditable); + item->setData(Qt::UserRole, QVariant::fromValue(QPair(minVal, maxVal))); + } + return item; +} +} // anonymous namespace + +ControllerHidReportTabsManager::ControllerHidReportTabsManager( + QTabWidget* pParentTabWidget, HidController* pHidController) + : m_pParentControllerTab(pParentTabWidget), + m_pHidController(pHidController) { +} + +void ControllerHidReportTabsManager::createReportTypeTabs() { + VERIFY_OR_DEBUG_ASSERT(m_pParentControllerTab) { + return; + } + auto reportTypeTabs = make_parented(m_pParentControllerTab); + + QMetaEnum metaEnum = QMetaEnum::fromType(); + + for (int reportTypeIdx = 0; reportTypeIdx < metaEnum.keyCount(); ++reportTypeIdx) { + auto reportType = static_cast( + metaEnum.value(reportTypeIdx)); + auto reportTypeTab = make_parented(reportTypeTabs.get()); + createHidReportTab(reportTypeTab.get(), reportType); + if (reportTypeTab->count() > 0) { + QString tabName = QStringLiteral("%1 Reports") + .arg(metaEnum.key(reportTypeIdx)); + m_pParentControllerTab->addTab(std::move(reportTypeTab), tabName); + } + } +} + +void ControllerHidReportTabsManager::createHidReportTab(QTabWidget* pParentReportTypeTab, + hid::reportDescriptor::HidReportType reportType) { + VERIFY_OR_DEBUG_ASSERT(m_pHidController) { + return; + } + auto reportDescriptor = m_pHidController->getReportDescriptor(); + if (!reportDescriptor) { + return; + } + + QMetaEnum metaEnum = QMetaEnum::fromType(); + + for (const auto& reportInfo : reportDescriptor->getListOfReports()) { + auto [index, type, reportId] = reportInfo; + if (type == reportType) { + // Report is a fixed HID term and shouldn't be translated + QString tabName = QStringLiteral("%1 Report 0x%2") + .arg(metaEnum.valueToKey(static_cast( + reportType)), + QString::number(reportId, 16) + .rightJustified(2, '0') + .toUpper()); + + auto pTabWidget = make_parented(pParentReportTypeTab); + auto pLayout = make_parented(pTabWidget); + auto* pTopWidgetRow = new QHBoxLayout(); + + // Create buttons + auto pReadButton = make_parented(tr("Read"), pTabWidget); + auto pSendButton = make_parented(tr("Send"), pTabWidget); + + // Adjust visibility/enable state based on the report type + if (reportType == hid::reportDescriptor::HidReportType::Input) { + pSendButton->hide(); + pReadButton->hide(); + } else if (reportType == hid::reportDescriptor::HidReportType::Output) { + pReadButton->hide(); + } + + pTopWidgetRow->addWidget(pReadButton); + pTopWidgetRow->addWidget(pSendButton); + pLayout->addLayout(pTopWidgetRow); + + auto pTable = make_parented(pTabWidget); + pLayout->addWidget(pTable); + + auto reportOpt = reportDescriptor->getReport(reportType, reportId); + if (reportOpt) { + const auto& report = reportOpt->get(); + // Show payload size + auto pSizeLabel = make_parented(pTabWidget); + pSizeLabel->setText( + QStringLiteral("%1: %2 %3") + .arg(tr("Payload Size")) + .arg(report.getReportSize()) + .arg(tr("bytes"))); + pTopWidgetRow->insertWidget(0, pSizeLabel); + + populateHidReportTable(pTable, report, reportType); + } + + if (reportType != hid::reportDescriptor::HidReportType::Output) { + connect(pReadButton, + &QPushButton::clicked, + this, + [this, pTable = pTable.get(), reportId, reportType]() { + slotReadReport(pTable, reportId, reportType); + }); + // Read once on tab creation + slotReadReport(pTable, reportId, reportType); + } + if (reportType != hid::reportDescriptor::HidReportType::Input) { + connect(pSendButton, + &QPushButton::clicked, + this, + [this, pTable = pTable.get(), reportId, reportType]() { + slotSendReport(pTable, reportId, reportType); + }); + } + + pParentReportTypeTab->addTab(pTabWidget, tabName); + + if (reportType == hid::reportDescriptor::HidReportType::Input) { + // Store the pTable pointer associated with the reportId + m_reportIdToTableMap[reportId] = pTable; + // Ensure that the table entry gets deleted when the table is destroyed + connect(pTable, &QObject::destroyed, this, [this, reportId]() { + m_reportIdToTableMap.erase(reportId); + }); + } + + // Connect the signal for the reportId + HidIoThread* hidIoThread = m_pHidController->getHidIoThread(); + if (hidIoThread) { + connect(hidIoThread, + &HidIoThread::reportReceived, + this, + &ControllerHidReportTabsManager::slotProcessInputReport); + } + } + } +} + +void ControllerHidReportTabsManager::updateTableWithReportData( + QTableWidget* pTable, + const QByteArray& reportData) { + // Temporarily disable updates to speed up processing + pTable->setUpdatesEnabled(false); + + // Process the report data and update the table + for (int row = 0; row < pTable->rowCount(); ++row) { + auto* pItem = pTable->item(row, 5); // Value column is at index 5 + if (pItem) { + // Retrieve custom data from the first cell + QVariant customData = pTable->item(row, 0)->data(Qt::UserRole + 1); + if (customData.isValid()) { + const auto* pControl = customData.value(); + VERIFY_OR_DEBUG_ASSERT(pControl) { + continue; + } + // Use the custom data as needed + int64_t controlValue = + hid::reportDescriptor::extractLogicalValue( + reportData, *pControl); + pItem->setText(QString::number(controlValue)); + } + } + } + + pTable->setUpdatesEnabled(true); +} + +void ControllerHidReportTabsManager::slotProcessInputReport( + quint8 reportId, const QByteArray& data) { + VERIFY_OR_DEBUG_ASSERT(m_pHidController) { + return; + } + // Find the table associated with the reportId + auto it = m_reportIdToTableMap.find(reportId); + if (it == m_reportIdToTableMap.end()) { + qWarning() << "No table found for reportId" << reportId; + return; + } + QTableWidget* pTable = it->second; + + VERIFY_OR_DEBUG_ASSERT(pTable) { + return; + } + + auto reportDescriptor = m_pHidController->getReportDescriptor(); + if (!reportDescriptor) { + return; + } + + auto reportOpt = reportDescriptor->getReport( + hid::reportDescriptor::HidReportType::Input, reportId); + if (reportOpt) { + updateTableWithReportData(pTable, data); + } +} + +void ControllerHidReportTabsManager::slotReadReport(QTableWidget* pTable, + quint8 reportId, + hid::reportDescriptor::HidReportType reportType) { + VERIFY_OR_DEBUG_ASSERT(m_pHidController) { + return; + } + if (!m_pHidController->isOpen()) { + qWarning() << "HID controller is not open."; + return; + } + + HidControllerJSProxy* pJsProxy = + static_cast(m_pHidController->jsProxy()); + VERIFY_OR_DEBUG_ASSERT(pJsProxy) { + return; + } + + QByteArray reportData; + if (reportType == hid::reportDescriptor::HidReportType::Input) { + reportData = pJsProxy->getInputReport(reportId); + } else if (reportType == hid::reportDescriptor::HidReportType::Feature) { + reportData = pJsProxy->getFeatureReport(reportId); + } else { + return; + } + + auto reportDescriptor = m_pHidController->getReportDescriptor(); + if (!reportDescriptor) { + return; + } + + auto reportOpt = reportDescriptor->getReport(reportType, reportId); + VERIFY_OR_DEBUG_ASSERT(reportOpt) { + return; + } + const auto& report = reportOpt->get(); + if (reportData.size() < report.getReportSize()) { + qWarning() << "Failed to get report. Read only " << reportData.size() + << " instead of expected " << report.getReportSize() + << " bytes."; + return; + } + + updateTableWithReportData(pTable, reportData); +} + +void ControllerHidReportTabsManager::slotSendReport(QTableWidget* pTable, + quint8 reportId, + hid::reportDescriptor::HidReportType reportType) { + VERIFY_OR_DEBUG_ASSERT(m_pHidController) { + return; + } + if (!m_pHidController->isOpen()) { + qWarning() << "HID controller is not open."; + return; + } + + HidControllerJSProxy* pJsProxy = + static_cast(m_pHidController->jsProxy()); + VERIFY_OR_DEBUG_ASSERT(pJsProxy) { + return; + } + + auto reportDescriptor = m_pHidController->getReportDescriptor(); + if (!reportDescriptor) { + return; + } + + auto reportOpt = reportDescriptor->getReport(reportType, reportId); + VERIFY_OR_DEBUG_ASSERT(reportOpt) { + return; + } + const auto& report = reportOpt->get(); + + // Create a QByteArray of the size of the report + QByteArray reportData(report.getReportSize(), 0); + + // Iterate through each row in the table + for (int row = 0; row < pTable->rowCount(); ++row) { + auto* pItem = pTable->item(row, 5); // Value column is at index 5 + if (pItem) { + // Retrieve custom data from the first cell + QVariant customData = pTable->item(row, 0)->data(Qt::UserRole + 1); + if (customData.isValid()) { + const auto* pControl = customData.value(); + VERIFY_OR_DEBUG_ASSERT(pControl) { + continue; + } + bool success = hid::reportDescriptor::applyLogicalValue( + reportData, *pControl, pItem->text().toLongLong()); + if (!success) { + qWarning() << "Failed to set control value for row" << row; + continue; + } + } + } + } + + // Send the reportData + if (reportType == hid::reportDescriptor::HidReportType::Feature) { + pJsProxy->sendFeatureReport(reportId, reportData); + } else if (reportType == hid::reportDescriptor::HidReportType::Output) { + pJsProxy->sendOutputReport(reportId, reportData); + } +} + +void ControllerHidReportTabsManager::populateHidReportTable( + QTableWidget* pTable, + const hid::reportDescriptor::Report& pReport, + hid::reportDescriptor::HidReportType reportType) { + // Temporarily disable updates to speed up populating + pTable->setUpdatesEnabled(false); + + // Reserve rows up-front + const auto& controls = pReport.getControls(); + pTable->setRowCount(static_cast(controls.size())); + + // Set the delegate once if needed + if (reportType != hid::reportDescriptor::HidReportType::Input) { + pTable->setItemDelegateForColumn(5, make_parented(pTable)); + } + + bool showVolatileColumn = (reportType == hid::reportDescriptor::HidReportType::Feature || + reportType == hid::reportDescriptor::HidReportType::Output); + + // Set headers + QStringList headers = {tr("Byte Position"), + tr("Bit Position"), + tr("Bit Size"), + tr("Logical Min"), + tr("Logical Max"), + tr("Value"), + tr("Physical Min"), + tr("Physical Max"), + tr("Unit Scaling"), + tr("Unit"), + tr("Abs/Rel"), + tr("Wrap"), + tr("Linear"), + tr("Preferred"), + tr("Null")}; + if (showVolatileColumn) { + headers << tr("Volatile"); + } + headers << tr("Usage Page") << tr("Usage"); + + pTable->setColumnCount(headers.size()); + pTable->setHorizontalHeaderLabels(headers); + pTable->verticalHeader()->setVisible(false); + + int row = 0; + for (const auto& control : controls) { + // Column 0 - Byte Position + QTableWidgetItem* pBytePositionItem = createReadOnlyItem( + QStringLiteral("0x%1").arg( + QString::number(control.m_bytePosition, 16) + .rightJustified(2, '0') + .toUpper()), + true); + pTable->setItem(row, 0, pBytePositionItem); + // Store custom data for the row in the first cell + pBytePositionItem->setData(Qt::UserRole + 1, + QVariant::fromValue(&control)); + + // Column 1 - Bit Position + pTable->setItem(row, 1, createReadOnlyItem(QString::number(control.m_bitPosition), true)); + // Column 2 - Bit Size + pTable->setItem(row, 2, createReadOnlyItem(QString::number(control.m_bitSize), true)); + // Column 3 - Logical Min + pTable->setItem(row, + 3, + createReadOnlyItem( + QString::number(control.m_logicalMinimum), true)); + // Column 4 - Logical Max + pTable->setItem(row, + 4, + createReadOnlyItem( + QString::number(control.m_logicalMaximum), true)); + // Column 5 - Value + pTable->setItem(row, + 5, + createValueItem(reportType, control.m_logicalMinimum, control.m_logicalMaximum)); + // Column 6 - Physical Min + pTable->setItem(row, + 6, + createReadOnlyItem( + QString::number(control.m_physicalMinimum), true)); + // Column 7 - Physical Max + pTable->setItem(row, + 7, + createReadOnlyItem( + QString::number(control.m_physicalMaximum), true)); + // Column 8 - Unit Scaling + pTable->setItem(row, + 8, + createReadOnlyItem(control.m_unitExponent != 0 + ? QStringLiteral("10^%1").arg( + control.m_unitExponent) + : QString(), + true)); + // Column 9 - Unit + pTable->setItem(row, + 9, + createReadOnlyItem(hid::reportDescriptor::getScaledUnitString( + control.m_unit))); + // Column 10 - Abs/Rel + pTable->setItem(row, + 10, + createReadOnlyItem(control.m_flags.absolute_relative + ? tr("Relative") + : tr("Absolute"))); + // Column 11 - Wrap + pTable->setItem(row, + 11, + createReadOnlyItem(control.m_flags.no_wrap_wrap + ? tr("Wrap") + : tr("No Wrap"))); + // Column 12 - Linear + pTable->setItem(row, + 12, + createReadOnlyItem(control.m_flags.linear_non_linear + ? tr("Non Linear") + : tr("Linear"))); + // Column 13 - Preferred + pTable->setItem(row, + 13, + createReadOnlyItem(control.m_flags.preferred_no_preferred + ? tr("No Preferred") + : tr("Preferred"))); + // Column 14 - Null + pTable->setItem(row, + 14, + createReadOnlyItem(control.m_flags.no_null_null + ? tr("Null") + : tr("No Null"))); + + // Volatile column (if present) + int volatileIndex = (showVolatileColumn ? 15 : -1); + if (volatileIndex != -1) { + pTable->setItem(row, + volatileIndex, + createReadOnlyItem(control.m_flags.non_volatile_volatile + ? tr("Volatile") + : tr("Non Volatile"))); + } + + // Usage Page / Usage + int usagePageIdx = showVolatileColumn ? 16 : 15; + int usageDescIdx = showVolatileColumn ? 17 : 16; + uint16_t usagePage = static_cast((control.m_usage & 0xFFFF0000) >> 16); + uint16_t usage = static_cast(control.m_usage & 0x0000FFFF); + + pTable->setItem(row, + usagePageIdx, + createReadOnlyItem( + mixxx::hid::HidUsageTables::getUsagePageDescription( + usagePage))); + pTable->setItem(row, + usageDescIdx, + createReadOnlyItem( + mixxx::hid::HidUsageTables::getUsageDescription( + usagePage, usage))); + + ++row; + } + + // Resize columns to contents once, store width and set column width fixed for performance + for (int colIdx = 0; colIdx < pTable->columnCount(); ++colIdx) { + pTable->horizontalHeader()->setSectionResizeMode(colIdx, QHeaderView::ResizeToContents); + } + QVector columnWidths; + columnWidths.reserve(pTable->columnCount()); + for (int colIdx = 0; colIdx < pTable->columnCount(); ++colIdx) { + columnWidths.push_back(pTable->columnWidth(colIdx)); + } + // Set the width of the "Value" column (5) to fit 11 digits (int32 minimum in decimal) + // This is the only column in the table with dynamic content, therefore we need to + // set the width with enough reserved space. + QFontMetrics metrics(pTable->font()); + int width = metrics.horizontalAdvance(QStringLiteral("0").repeated(11)); + columnWidths[5] = width; // The column "Value" is at index 5 + for (int colIdx = 0; colIdx < pTable->columnCount(); ++colIdx) { + pTable->horizontalHeader()->setSectionResizeMode(colIdx, QHeaderView::Fixed); + pTable->setColumnWidth(colIdx, columnWidths[colIdx]); + } + + pTable->setUpdatesEnabled(true); +} + +QWidget* ValueItemDelegate::createEditor(QWidget* pParent, + const QStyleOptionViewItem&, + const QModelIndex& index) const { + // Create a line edit restricted by (logical min, logical max) + auto dataRange = index.data(Qt::UserRole).value>(); + auto pEditor = make_parented(pParent); + pEditor->setValidator(make_parented(dataRange.first, dataRange.second, pEditor)); + return pEditor; +} + +void ValueItemDelegate::setModelData(QWidget* pEditor, + QAbstractItemModel* pModel, + const QModelIndex& index) const { + auto* pLineEdit = qobject_cast(pEditor); + if (!pLineEdit) { + return; + } + + // Confirm the text is an integer within the expected range + bool ok = false; + const int value = pLineEdit->text().toInt(&ok); + if (ok) { + auto dataRange = index.data(Qt::UserRole).value>(); + if (value >= dataRange.first && value <= dataRange.second) { + pModel->setData(index, value, Qt::EditRole); + } + } +} diff --git a/src/controllers/controllerhidreporttabsmanager.h b/src/controllers/controllerhidreporttabsmanager.h new file mode 100644 index 000000000000..434276bb3a6e --- /dev/null +++ b/src/controllers/controllerhidreporttabsmanager.h @@ -0,0 +1,54 @@ +#pragma once + +#include +#include +#include +#include +#include + +#include "controllers/hid/hidcontroller.h" +#include "controllers/hid/hidreportdescriptor.h" + +class ControllerHidReportTabsManager : public QObject { + Q_OBJECT + + public: + ControllerHidReportTabsManager(QTabWidget* pParentTabWidget, HidController* pHidController); + + void createReportTypeTabs(); + void createHidReportTab(QTabWidget* pParentTab, + hid::reportDescriptor::HidReportType reportType); + void slotSendReport(QTableWidget* pTable, + quint8 reportId, + hid::reportDescriptor::HidReportType reportType); + void populateHidReportTable(QTableWidget* pTable, + const hid::reportDescriptor::Report& report, + hid::reportDescriptor::HidReportType reportType); + + private slots: + void slotReadReport(QTableWidget* pTable, + quint8 reportId, + hid::reportDescriptor::HidReportType reportType); + + public slots: + void slotProcessInputReport(quint8 reportId, const QByteArray& reportData); + + private: + void updateTableWithReportData(QTableWidget* pTable, const QByteArray& reportData); + QPointer m_pParentControllerTab; + QPointer m_pHidController; + std::unordered_map> m_reportIdToTableMap; +}; + +class ValueItemDelegate : public QStyledItemDelegate { + public: + using QStyledItemDelegate::QStyledItemDelegate; + + QWidget* createEditor(QWidget* pParent, + const QStyleOptionViewItem& option, + const QModelIndex& index) const override; + + void setModelData(QWidget* pEditor, + QAbstractItemModel* pModel, + const QModelIndex& index) const override; +}; diff --git a/src/controllers/controllermanager.cpp b/src/controllers/controllermanager.cpp index 9e66b98d8601..7e3911b547f0 100644 --- a/src/controllers/controllermanager.cpp +++ b/src/controllers/controllermanager.cpp @@ -7,7 +7,9 @@ #include "controllers/controllerlearningeventfilter.h" #include "controllers/controllermappinginfoenumerator.h" #include "controllers/defs_controllers.h" +#include "controllers/legacycontrollermappingfilehandler.h" #include "moc_controllermanager.cpp" +#include "preferences/usersettings.h" #include "util/cmdlineargs.h" #include "util/compatibility/qmutex.h" #include "util/duration.h" diff --git a/src/controllers/controllermappinginfo.cpp b/src/controllers/controllermappinginfo.cpp index 7bb48989cae0..ca9c0a133b52 100644 --- a/src/controllers/controllermappinginfo.cpp +++ b/src/controllers/controllermappinginfo.cpp @@ -1,14 +1,17 @@ #include "controllers/controllermappinginfo.h" -#include "util/xml.h" +#include +#include +#include +#include +#include -MappingInfo::MappingInfo() - : m_valid(false) { -} +Q_LOGGING_CATEGORY(kLogger, "controllers.mappinginfo") -MappingInfo::MappingInfo(const QString& mapping_path) - : m_valid(false) { - // Parse header section from a controller description XML file +MappingInfo::MappingInfo(const QFileInfo& fileInfo) { + // Parse only the header section from a controller description XML file + // using a streaming parser to avoid loading/parsing the entire (potentially + // very large) XML file. // Contents parsed by xml path: // info.name Mapping name, used for drop down menus in dialogs // info.author Mapping author @@ -16,105 +19,157 @@ MappingInfo::MappingInfo(const QString& mapping_path) // info.forums Link to mixxx forum discussion for the mapping // info.wiki Link to mixxx wiki for the mapping // info.devices.product List of device matches, specific to device type - QFileInfo fileInfo(mapping_path); m_path = fileInfo.absoluteFilePath(); m_dirPath = fileInfo.dir().absolutePath(); - m_name = ""; - m_author = ""; - m_description = ""; - m_forumlink = ""; - m_wikilink = ""; - - QDomElement root = XmlParse::openXMLFile(m_path, "controller"); - if (root.isNull()) { - qWarning() << "ERROR parsing" << m_path; - return; - } - QDomElement info = root.firstChildElement("info"); - if (info.isNull()) { - qDebug() << "MISSING ELEMENT: " << m_path; + + QFile file(m_path); + if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { + qCWarning(kLogger) << "ERROR opening" << m_path; return; } - m_valid = true; + QXmlStreamReader xml(&file); + bool inInfo = false; + bool inInfoDevices = false; + int xmlHierachyDepth = 0; - QDomElement dom_name = info.firstChildElement("name"); - if (!dom_name.isNull()) { - m_name = dom_name.text(); - } else { - m_name = fileInfo.baseName(); - } + while (!xml.atEnd()) { + QXmlStreamReader::TokenType token = xml.readNext(); + if (token == QXmlStreamReader::StartElement) { + ++xmlHierachyDepth; + const QStringView xmlElementName = xml.name(); - QDomElement dom_author = info.firstChildElement("author"); - if (!dom_author.isNull()) { - m_author = dom_author.text(); - } + // Accept info block only as a top-level child of the document root + // root element will have depth == 1, so its direct children have depth == 2 + if (!inInfo && xmlElementName == QStringLiteral("info") && xmlHierachyDepth == 2) { + inInfo = true; + // We've found the info block; set valid now and start parsing children + m_valid = true; + continue; + } - QDomElement dom_description = info.firstChildElement("description"); - if (!dom_description.isNull()) { - m_description = dom_description.text(); - } + // Parse simple info children when inside the info block + if (inInfo) { + if (!inInfo && xmlElementName == QStringLiteral("info") && xmlHierachyDepth == 2) { + m_name = xml.readElementText(); + continue; + } else if (xmlElementName == QStringLiteral("author")) { + m_author = xml.readElementText(); + continue; + } else if (xmlElementName == QStringLiteral("description")) { + m_description = xml.readElementText(); + continue; + } else if (xmlElementName == QStringLiteral("forums")) { + m_forumlink = xml.readElementText(); + continue; + } else if (xmlElementName == QStringLiteral("wiki")) { + m_wikilink = xml.readElementText(); + continue; + } else if (xmlElementName == QStringLiteral("devices")) { + // Enter devices block + inInfoDevices = true; + continue; + } else if (inInfoDevices && xmlElementName == QStringLiteral("product")) { + QXmlStreamAttributes xmlElementAttributes = xml.attributes(); + ProductInfo product; + QStringView protocol = xmlElementAttributes + .value(QStringLiteral("protocol")); - QDomElement dom_forums = info.firstChildElement("forums"); - if (!dom_forums.isNull()) { - m_forumlink = dom_forums.text(); - } + if (protocol == QStringLiteral("hid")) { + product = parseHIDProduct(xml.attributes()); + } else if (protocol == QStringLiteral("bulk")) { + product = parseBulkProduct(xml.attributes()); + } else if (protocol == QStringLiteral("midi")) { + qCInfo(kLogger) << "MIDI product info parsing not yet implemented"; + } else { + qCCritical(kLogger) + << "Product info element contains missing or " + "invalid protocol attribute"; + } - QDomElement dom_wiki = info.firstChildElement("wiki"); - if (!dom_wiki.isNull()) { - m_wikilink = dom_wiki.text(); - } + if (!product.protocol.isEmpty()) { + m_products.append(std::move(product)); + } + continue; + } + } + + } else if (token == QXmlStreamReader::EndElement) { + const QString name = xml.name().toString(); - QDomElement devices = info.firstChildElement("devices"); - if (!devices.isNull()) { - QDomElement product = devices.firstChildElement("product"); - while (!product.isNull()) { - QString protocol = product.attribute("protocol", ""); - if (protocol == "hid") { - m_products.append(parseHIDProduct(product)); - } else if (protocol == "bulk") { - m_products.append(parseBulkProduct(product)); - } else if (protocol == "midi") { - qDebug("MIDI product info parsing not yet implemented"); - //m_products.append(parseMIDIProduct(product); - } else if (protocol == "osc") { - qDebug("OSC product info parsing not yet implemented"); - //m_products.append(parseOSCProduct(product); - } else { - qDebug("Product specification missing protocol attribute"); + if (inInfoDevices && name == QStringLiteral("devices")) { + inInfoDevices = false; + --xmlHierachyDepth; + continue; + } + if (inInfo && name == QStringLiteral("info")) { + // End of info block; we stop file-reading/parsing entirely + // Stopping here saves several hundreds milliseconds of startup time + break; } - product = product.nextSiblingElement("product"); + + --xmlHierachyDepth; } } + + if (xml.hasError()) { + qCWarning(kLogger) << "ERROR parsing" << m_path << ":" << xml.errorString(); + } + + file.close(); + + if (m_name.isEmpty()) { + m_name = fileInfo.baseName(); + } } -ProductInfo MappingInfo::parseBulkProduct(const QDomElement& element) const { +ProductInfo MappingInfo::parseBulkProduct(const QXmlStreamAttributes& xmlElementAttributes) { // - ProductInfo product; - product.protocol = element.attribute("protocol"); - product.vendor_id = element.attribute("vendor_id"); - product.product_id = element.attribute("product_id"); - product.in_epaddr = element.attribute("in_epaddr"); - product.out_epaddr = element.attribute("out_epaddr"); - product.interface_number = element.attribute("interface_number"); - return product; + // All number strings must be hex prefixed with 0x + + ProductInfo productInfo; + productInfo.protocol = xmlElementAttributes.value(QStringLiteral("protocol")).toString(); + productInfo.vendor_id = xmlElementAttributes.value(QStringLiteral("vendor_id")).toString(); + productInfo.product_id = xmlElementAttributes.value(QStringLiteral("product_id")).toString(); + // Check for HID-specific attributes which are not allowed for bulk protocol + if (xmlElementAttributes.hasAttribute(QStringLiteral("usage_page"))) { + qCCritical(kLogger) << "Product info element for bulk contains " + "unallowed UsagePage attribute"; + } + if (xmlElementAttributes.hasAttribute(QStringLiteral("usage"))) { + qCCritical(kLogger) << "Product info element for bulk contains unallowed Usage attribute"; + } + productInfo.in_epaddr = xmlElementAttributes.value(QStringLiteral("in_epaddr")).toString(); + productInfo.out_epaddr = xmlElementAttributes.value(QStringLiteral("out_epaddr")).toString(); + productInfo.interface_number = + xmlElementAttributes.value(QStringLiteral("interface_number")) + .toString(); + return productInfo; } -ProductInfo MappingInfo::parseHIDProduct(const QDomElement& element) const { +ProductInfo MappingInfo::parseHIDProduct(const QXmlStreamAttributes& xmlElementAttributes) { // HID device element parsing. Example of valid element: // - // All numbers must be hex prefixed with 0x - // Only vendor_id and product_id fields are required to map a device. - // usage_page and usage are matched on OS/X and windows - // interface_number is matched on linux, which does support usage_page/usage - - ProductInfo product; - product.protocol = element.attribute("protocol"); - product.vendor_id = element.attribute("vendor_id"); - product.product_id = element.attribute("product_id"); - product.usage_page = element.attribute("usage_page"); - product.usage = element.attribute("usage"); - product.interface_number = element.attribute("interface_number"); - return product; + // All number strings must be hex prefixed with 0x + + ProductInfo productInfo; + productInfo.protocol = xmlElementAttributes.value(QStringLiteral("protocol")).toString(); + productInfo.vendor_id = xmlElementAttributes.value(QStringLiteral("vendor_id")).toString(); + productInfo.product_id = xmlElementAttributes.value(QStringLiteral("product_id")).toString(); + productInfo.usage_page = xmlElementAttributes.value(QStringLiteral("usage_page")).toString(); + productInfo.usage = xmlElementAttributes.value(QStringLiteral("usage")).toString(); + // Check for bulk-specific attributes which are not allowed for hid protocol + if (xmlElementAttributes.hasAttribute(QStringLiteral("in_epaddr"))) { + qCCritical(kLogger) << "Product info element for hid contains " + "unallowed in_epaddr attribute"; + } + if (xmlElementAttributes.hasAttribute(QStringLiteral("out_epaddr"))) { + qCCritical(kLogger) << "Product info element for hid contains " + "unallowed out_epaddr attribute"; + } + productInfo.interface_number = + xmlElementAttributes.value(QStringLiteral("interface_number")) + .toString(); + return productInfo; } diff --git a/src/controllers/controllermappinginfo.h b/src/controllers/controllermappinginfo.h index e37baabb910f..1181496d3982 100644 --- a/src/controllers/controllermappinginfo.h +++ b/src/controllers/controllermappinginfo.h @@ -1,13 +1,10 @@ #pragma once -#include #include -#include #include -#include "controllers/legacycontrollermapping.h" -#include "controllers/legacycontrollermappingfilehandler.h" -#include "preferences/usersettings.h" +class QXmlStreamAttributes; +class QFileInfo; struct ProductInfo { QString protocol; @@ -31,8 +28,8 @@ struct ProductInfo { /// show details for a mapping. class MappingInfo { public: - MappingInfo(); - MappingInfo(const QString& path); + MappingInfo() = default; + explicit MappingInfo(const QFileInfo& fileInfo); inline bool isValid() const { return m_valid; @@ -65,10 +62,10 @@ class MappingInfo { } private: - ProductInfo parseBulkProduct(const QDomElement& element) const; - ProductInfo parseHIDProduct(const QDomElement& element) const; + static ProductInfo parseBulkProduct(const QXmlStreamAttributes& xmlElementAttributes); + static ProductInfo parseHIDProduct(const QXmlStreamAttributes& xmlElementAttributes); - bool m_valid; + bool m_valid = false; QString m_path; QString m_dirPath; QString m_name; diff --git a/src/controllers/controllermappinginfoenumerator.cpp b/src/controllers/controllermappinginfoenumerator.cpp index 7a1207c4f679..8543830e6520 100644 --- a/src/controllers/controllermappinginfoenumerator.cpp +++ b/src/controllers/controllermappinginfoenumerator.cpp @@ -54,14 +54,15 @@ void MappingInfoEnumerator::loadSupportedMappings() { QDirIterator it(dirPath); while (it.hasNext()) { it.next(); - const QString path = it.filePath(); + const QFileInfo fileInfo = it.fileInfo(); + const QString path = fileInfo.filePath(); if (path.endsWith(MIDI_MAPPING_EXTENSION, Qt::CaseInsensitive)) { - m_midiMappings.append(MappingInfo(path)); + m_midiMappings.append(MappingInfo(fileInfo)); } else if (path.endsWith(HID_MAPPING_EXTENSION, Qt::CaseInsensitive)) { - m_hidMappings.append(MappingInfo(path)); + m_hidMappings.append(MappingInfo(fileInfo)); } else if (path.endsWith(BULK_MAPPING_EXTENSION, Qt::CaseInsensitive)) { - m_bulkMappings.append(MappingInfo(path)); + m_bulkMappings.append(MappingInfo(fileInfo)); } } } diff --git a/src/controllers/dlgprefcontroller.cpp b/src/controllers/dlgprefcontroller.cpp index ecdcddd50598..4c744ed34281 100644 --- a/src/controllers/dlgprefcontroller.cpp +++ b/src/controllers/dlgprefcontroller.cpp @@ -18,9 +18,10 @@ #endif #include "controllers/defs_controllers.h" #include "controllers/dlgcontrollerlearning.h" -#ifdef __HID__ +#if defined(__HID__) && !defined(Q_OS_ANDROID) #include "controllers/hid/hidcontroller.h" #endif +#include "controllers/legacycontrollermappingfilehandler.h" #include "controllers/midi/legacymidicontrollermapping.h" #include "controllers/midi/midicontroller.h" #include "controllers/scripting/legacy/controllerscriptenginelegacy.h" @@ -90,7 +91,15 @@ DlgPrefController::DlgPrefController( m_inputMappingsTabIndex(-1), m_outputMappingsTabIndex(-1), m_settingsTabIndex(-1), - m_screensTabIndex(-1) { + m_screensTabIndex(-1) +#if defined(__HID__) && !defined(Q_OS_ANDROID) + , + m_hidReportTabsManager(nullptr) { + qRegisterMetaType(); +#else +{ +#endif + m_ui.setupUi(this); // Create text color for the file and wiki links createLinkColor(); @@ -196,9 +205,9 @@ DlgPrefController::DlgPrefController( m_ui.labelUsbInterfaceNumberValue->setVisible(false); } -#ifdef __HID__ +#if defined(__HID__) && !defined(Q_OS_ANDROID) // Display HID UsagePage and Usage if the controller is an HidController - if (auto* hidController = dynamic_cast(m_pController)) { + if (auto* hidController = qobject_cast(m_pController)) { m_ui.labelHidUsagePageValue->setText(QStringLiteral("%1 (%2)") .arg(formatHex(hidController->getUsagePage()), hidController->getUsagePageDescription())); @@ -210,6 +219,12 @@ DlgPrefController::DlgPrefController( m_ui.labelHidUsagePageValue->setVisible(true); m_ui.labelHidUsage->setVisible(true); m_ui.labelHidUsageValue->setVisible(true); + + // Create HID report tabs + m_hidReportTabsManager = + std::make_unique( + m_ui.controllerTabs, hidController); + m_hidReportTabsManager->createReportTypeTabs(); } else #endif { @@ -1182,7 +1197,7 @@ void DlgPrefController::showMapping(std::shared_ptr pMa } #endif - // Inputs tab + // MIDI Inputs tab ControllerInputMappingTableModel* pInputModel = new ControllerInputMappingTableModel(this, m_pControlPickerMenu, @@ -1210,7 +1225,7 @@ void DlgPrefController::showMapping(std::shared_ptr pMa // Trigger search when the model was recreated after hitting Apply slotInputControlSearch(); - // Outputs tab + // MIDI Outputs tab ControllerOutputMappingTableModel* pOutputModel = new ControllerOutputMappingTableModel(this, m_pControlPickerMenu, diff --git a/src/controllers/dlgprefcontroller.h b/src/controllers/dlgprefcontroller.h index 69a6f14b8ade..6a8e359de017 100644 --- a/src/controllers/dlgprefcontroller.h +++ b/src/controllers/dlgprefcontroller.h @@ -1,8 +1,14 @@ #pragma once +#include + #include +#if defined(__HID__) && !defined(Q_OS_ANDROID) +#include "controllers/controllerhidreporttabsmanager.h" +#endif #include "controllers/controllermappinginfo.h" +#include "controllers/legacycontrollermapping.h" #include "controllers/midi/midimessage.h" #include "controllers/ui_dlgprefcontrollerdlg.h" #include "preferences/dialog/dlgpreferencepage.h" @@ -148,4 +154,8 @@ class DlgPrefController : public DlgPreferencePage { int m_settingsTabIndex; // Index of the settings tab int m_screensTabIndex; // Index of the screens tab QHash m_settingsCollapsedStates; + +#if defined(__HID__) && !defined(Q_OS_ANDROID) + std::unique_ptr m_hidReportTabsManager; +#endif }; diff --git a/src/controllers/hid/hidcontroller.cpp b/src/controllers/hid/hidcontroller.cpp index d699de35cff4..7cff9c64c9dc 100644 --- a/src/controllers/hid/hidcontroller.cpp +++ b/src/controllers/hid/hidcontroller.cpp @@ -1,6 +1,13 @@ #include "controllers/hid/hidcontroller.h" +#ifdef __ANDROID__ +#include +#include + +#include "controllers/android.h" +#else #include +#endif #include "controllers/defs_controllers.h" #include "moc_hidcontroller.cpp" @@ -8,14 +15,17 @@ class LegacyControllerMapping; +#ifndef __ANDROID__ namespace { constexpr size_t kMaxHidErrorMessageSize = 512; } // namespace +#endif HidController::HidController( mixxx::hid::DeviceInfo&& deviceInfo) : Controller(deviceInfo.formatName()), - m_deviceInfo(std::move(deviceInfo)) { + m_deviceInfo(std::move(deviceInfo)), + m_deviceUsesReportIds(std::nullopt) { // We assume, that all HID controllers are full-duplex, // but a HID can also be input only (e.g. a USB HID mouse) setInputDevice(true); @@ -88,6 +98,65 @@ int HidController::open(const QString& resourcePath) { return -1; } +#ifdef __ANDROID__ + QJniObject usbDeviceConnection; + + QJniObject context = QNativeInterface::QAndroidApplication::context(); + QJniObject USB_SERVICE = + QJniObject::getStaticObjectField( + "android/content/Context", + "USB_SERVICE", + "Ljava/lang/String;"); + auto usbManager = context.callObjectMethod("getSystemService", + "(Ljava/lang/String;)Ljava/lang/Object;", + USB_SERVICE.object()); + if (!usbManager.isValid()) { + qDebug() << "usbManager invalid"; + return -1; + } + + auto usbDevice = m_deviceInfo.androidUsbDevice(); + + if (!usbManager.callMethod("hasPermission", + "(Landroid/hardware/usb/UsbDevice;)Z", + usbDevice)) { + auto pendingIntent = mixxx::android::getIntent(); + usbManager.callMethod("requestPermission", + "(Landroid/hardware/usb/UsbDevice;Landroid/app/" + "PendingIntent;)V", + usbDevice, + pendingIntent); + // Wait for permission + if (!mixxx::android::waitForPermission(usbDevice)) { + qDebug() << "access to device wasn't granted"; + return -1; + } + m_deviceInfo.updateSerialNumber( + usbDevice.callMethod("getSerialNumber").toString()); + } + usbDeviceConnection = usbManager.callMethod("openDevice", + "(Landroid/hardware/usb/UsbDevice;)Landroid/hardware/usb/" + "UsbDeviceConnection;", + usbDevice); + + if (!usbDeviceConnection.isValid()) { + qDebug() << "Unable to open HID device"; + return -1; + } + + auto fileDescriptor = static_cast( + usbDeviceConnection.callMethod("getFileDescriptor")); + + // Open device by file descriptor + qCInfo(m_logBase) << "Opening HID device" << getName() + << "by file descriptor" + << fileDescriptor << "and interface" + << m_deviceInfo.getUsbInterfaceNumber(); + + libusb_set_option(nullptr, LIBUSB_OPTION_NO_DEVICE_DISCOVERY); + hid_device* pHidDevice = hid_libusb_wrap_sys_device( + fileDescriptor, m_deviceInfo.getUsbInterfaceNumber().value()); +#else // Open device by path qCInfo(m_logBase) << "Opening HID device" << getName() << "by HID path" << m_deviceInfo.pathRaw(); @@ -154,6 +223,7 @@ int HidController::open(const QString& resourcePath) { kMaxHidErrorMessageSize)); return -1; } +#endif // Set hid controller to non-blocking if (hid_set_nonblocking(pHidDevice, 1) != 0) { @@ -162,7 +232,27 @@ int HidController::open(const QString& resourcePath) { return -1; } - m_pHidIoThread = std::make_unique(pHidDevice, m_deviceInfo); +#ifndef Q_OS_ANDROID + // When fetching the report descriptor, from m_deviceInfo or if not read yet from the device + const std::vector& rawReportDescriptor = + m_deviceInfo.fetchRawReportDescriptor(pHidDevice); + + if (!rawReportDescriptor.empty()) { + m_reportDescriptor = + std::make_shared( + rawReportDescriptor); + m_reportDescriptor->parse(); + m_deviceUsesReportIds = m_reportDescriptor->isDeviceWithReportIds(); + } else { + m_reportDescriptor.reset(); + m_deviceUsesReportIds = std::nullopt; + } + +#endif + m_pHidIoThread = std::make_unique(pHidDevice, m_deviceInfo, m_deviceUsesReportIds); +#ifdef Q_OS_ANDROID + m_pHidIoThread->setDeviceConnection(std::move(usbDeviceConnection)); +#endif m_pHidIoThread->setObjectName(QStringLiteral("HidIoThread ") + getName()); connect(m_pHidIoThread.get(), diff --git a/src/controllers/hid/hidcontroller.h b/src/controllers/hid/hidcontroller.h index e8a5f9b79f2d..b8805bf180ac 100644 --- a/src/controllers/hid/hidcontroller.h +++ b/src/controllers/hid/hidcontroller.h @@ -1,8 +1,11 @@ #pragma once +#include + #include "controllers/controller.h" #include "controllers/hid/hiddevice.h" #include "controllers/hid/hidiothread.h" +#include "controllers/hid/hidreportdescriptor.h" #include "controllers/hid/legacyhidcontrollermapping.h" /// HID controller backend @@ -70,6 +73,15 @@ class HidController final : public Controller { QString getUsageDescription() const { return m_deviceInfo.getUsageDescription(); } + + std::shared_ptr getReportDescriptor() const { + return m_reportDescriptor; + } + + HidIoThread* getHidIoThread() const { + return m_pHidIoThread.get(); + } + bool isMappable() const override { if (!m_pMapping) { return false; @@ -87,7 +99,10 @@ class HidController final : public Controller { // 0x0. bool sendBytes(const QByteArray& data) override; - const mixxx::hid::DeviceInfo m_deviceInfo; + mixxx::hid::DeviceInfo m_deviceInfo; + // These optional members are not set before opening the device + std::shared_ptr m_reportDescriptor; + std::optional m_deviceUsesReportIds; std::unique_ptr m_pHidIoThread; std::unique_ptr m_pMapping; diff --git a/src/controllers/hid/hiddevice.cpp b/src/controllers/hid/hiddevice.cpp index 82576f3aee56..8c88d6a8c2c4 100644 --- a/src/controllers/hid/hiddevice.cpp +++ b/src/controllers/hid/hiddevice.cpp @@ -7,6 +7,7 @@ #include "controllers/controllermappinginfo.h" #include "util/string.h" +#ifndef Q_OS_ANDROID namespace { constexpr std::size_t kDeviceInfoStringMaxLength = 512; @@ -27,11 +28,13 @@ PhysicalTransportProtocol hidapiBusType2PhysicalTransportProtocol(hid_bus_type b } } // namespace +#endif namespace mixxx { namespace hid { +#ifndef Q_OS_ANDROID DeviceInfo::DeviceInfo(const hid_device_info& device_info) : vendor_id(device_info.vendor_id), product_id(device_info.product_id), @@ -53,6 +56,50 @@ DeviceInfo::DeviceInfo(const hid_device_info& device_info) m_serialNumber(mixxx::convertWCStringToQString( m_serialNumberRaw.data(), m_serialNumberRaw.size())) { } +#else +DeviceInfo::DeviceInfo( + const QJniObject& usbDevice, const QJniObject& usbInterface) + : m_androidUsbDevice(usbDevice), + m_physicalTransportProtocol(PhysicalTransportProtocol::USB) { + vendor_id = static_cast(usbDevice.callMethod("getVendorId")); + product_id = static_cast(usbDevice.callMethod("getProductId")); + m_manufacturerString = usbDevice.callMethod("getManufacturerName").toString(); + m_productString = usbDevice.callMethod("getProductName").toString(); + m_serialNumber = usbDevice.callMethod("getSerialNumber").toString(); + + if (m_serialNumber.isEmpty()) { + // Android won't allow reading serial number if permission wasn't + // granted previously. Is this an issue? + m_serialNumber = "N/A"; + } + + m_usbInterfaceNumber = usbInterface.callMethod("getId"); +} +#endif + +const std::vector& DeviceInfo::fetchRawReportDescriptor(hid_device* pHidDevice) { + if (!pHidDevice) { + static const std::vector emptyDescriptor; + return emptyDescriptor; + } + if (!m_reportDescriptor.empty()) { + // + return m_reportDescriptor; + } + + uint8_t tempReportDescriptor[HID_API_MAX_REPORT_DESCRIPTOR_SIZE]; + int descriptorSize = hid_get_report_descriptor(pHidDevice, + tempReportDescriptor, + HID_API_MAX_REPORT_DESCRIPTOR_SIZE); + if (descriptorSize <= 0) { + static const std::vector emptyDescriptor; + return emptyDescriptor; + } + m_reportDescriptor = std::vector(tempReportDescriptor, + tempReportDescriptor + descriptorSize); + + return m_reportDescriptor; +} QString DeviceInfo::formatName() const { // We include the last 4 digits of the serial number and the @@ -122,11 +169,16 @@ bool DeviceInfo::matchProductInfo( } // Optionally check against m_usbInterfaceNumber / usage_page && usage - if (m_usbInterfaceNumber >= 0) { +#ifndef Q_OS_ANDROID + if (m_usbInterfaceNumber >= 0) +#endif + { if (m_usbInterfaceNumber != product.interface_number.toInt(&ok, 16) || !ok) { return false; } - } else { + } +#ifndef Q_OS_ANDROID + else { if (usage_page != product.usage_page.toInt(&ok, 16) || !ok) { return false; } @@ -134,6 +186,7 @@ bool DeviceInfo::matchProductInfo( return false; } } +#endif // Match found return true; } diff --git a/src/controllers/hid/hiddevice.h b/src/controllers/hid/hiddevice.h index a4a4d52c18d2..0baf869f9897 100644 --- a/src/controllers/hid/hiddevice.h +++ b/src/controllers/hid/hiddevice.h @@ -2,13 +2,20 @@ #include #include +#if defined(Q_OS_ANDROID) +#include +#endif +#include #include +#include #include "controllers/controller.h" #include "controllers/hid/hidusagetables.h" struct ProductInfo; struct hid_device_info; +struct hid_device_; +typedef struct hid_device_ hid_device; namespace mixxx { @@ -28,8 +35,13 @@ namespace hid { /// QString if needed. class DeviceInfo final { public: +#ifndef Q_OS_ANDROID explicit DeviceInfo( const hid_device_info& device_info); +#else + explicit DeviceInfo( + const QJniObject& usbDevice, const QJniObject& usbInterface); +#endif // The VID. uint16_t getVendorId() const { @@ -40,6 +52,7 @@ class DeviceInfo final { return product_id; } +#ifndef Q_OS_ANDROID /// The releaseNumberBCD returns the version of the USB specification to /// which the device conforms. The bcdUSB field contains a BCD version /// number in the format 0xJJMN: @@ -63,6 +76,14 @@ class DeviceInfo final { const wchar_t* serialNumberRaw() const { return m_serialNumberRaw.c_str(); } +#else + const QJniObject& androidUsbDevice() const { + return m_androidUsbDevice; + } + void updateSerialNumber(QString serialNumber) { + m_serialNumber = serialNumber; + } +#endif const QString& getVendorString() const { return m_manufacturerString; @@ -86,23 +107,50 @@ class DeviceInfo final { } uint16_t getUsagePage() const { +#ifndef Q_OS_ANDROID return usage_page; +#else + return 0; +#endif } uint16_t getUsage() const { +#ifndef Q_OS_ANDROID return usage; +#else + return 0; +#endif } QString getUsagePageDescription() const { +#ifdef Q_OS_ANDROID + return QStringLiteral("N/A"); +#else return mixxx::hid::HidUsageTables::getUsagePageDescription(usage_page); +#endif } QString getUsageDescription() const { +#ifdef Q_OS_ANDROID + return QStringLiteral("N/A"); +#else return mixxx::hid::HidUsageTables::getUsageDescription(usage_page, usage); +#endif } + // We need an opened hid_device here, + // but the lifetime of the data is as long as DeviceInfo exists, + // means the reportDescriptor data remains valid after closing the hid_device + const std::vector& fetchRawReportDescriptor(hid_device* pHidDevice); + bool isValid() const { - return !getProductString().isNull() && !getSerialNumber().isNull(); + return !getProductString().isNull() +#ifdef Q_OS_ANDROID + && m_androidUsbDevice.isValid(); +#else + && !getSerialNumber().isNull(); +#endif + ; } QString formatName() const; @@ -118,19 +166,27 @@ class DeviceInfo final { // members from hid_device_info unsigned short vendor_id; unsigned short product_id; +#ifndef Q_OS_ANDROID unsigned short release_number; unsigned short usage_page; unsigned short usage; +#else + QJniObject m_androidUsbDevice; +#endif PhysicalTransportProtocol m_physicalTransportProtocol; int m_usbInterfaceNumber; +#ifndef Q_OS_ANDROID std::string m_pathRaw; std::wstring m_serialNumberRaw; +#endif QString m_manufacturerString; QString m_productString; QString m_serialNumber; + + std::vector m_reportDescriptor; }; } // namespace hid diff --git a/src/controllers/hid/hidenumerator.cpp b/src/controllers/hid/hidenumerator.cpp index ee927e76be60..fcfbd2d9a647 100644 --- a/src/controllers/hid/hidenumerator.cpp +++ b/src/controllers/hid/hidenumerator.cpp @@ -1,6 +1,16 @@ #include "controllers/hid/hidenumerator.h" +#if defined(Q_OS_ANDROID) +#include +#include +#include +#include +#include + +#include +#else #include +#endif #include "controllers/hid/hidcontroller.h" #include "controllers/hid/hiddenylist.h" @@ -12,10 +22,12 @@ namespace mixxx { namespace hid { +#ifndef Q_OS_ANDROID constexpr unsigned short kGenericDesktopUsagePage = 0x01; constexpr unsigned short kGenericDesktopMouseUsage = 0x02; constexpr unsigned short kGenericDesktopKeyboardUsage = 0x06; +#endif // Apple has two two different vendor IDs which are used for different devices. constexpr unsigned short kAppleVendorId = 0x5ac; @@ -25,16 +37,25 @@ constexpr unsigned short kAppleIncVendorId = 0x004c; } // namespace mixxx -bool HidEnumerator::recognizeDevice(const hid_device_info& device_info) const { +namespace { +bool recognizeDevice(unsigned short vendor_id, + unsigned short product_id, + int interface_number, + unsigned short usage_page = 0, + unsigned short usage = 0) { +// On Android, usage_page and usage are only accessible when permission is +// granted to the device, so we don't use it for device detection. +#ifndef Q_OS_ANDROID // Skip mice and keyboards. Users can accidentally disable their mouse // and/or keyboard by enabling them as HID controllers in Mixxx. // https://github.com/mixxxdj/mixxx/issues/10498 if (!CmdlineArgs::Instance().getDeveloper() && - device_info.usage_page == mixxx::hid::kGenericDesktopUsagePage && - (device_info.usage == mixxx::hid::kGenericDesktopMouseUsage || - device_info.usage == mixxx::hid::kGenericDesktopKeyboardUsage)) { + usage_page == mixxx::hid::kGenericDesktopUsagePage && + (usage == mixxx::hid::kGenericDesktopMouseUsage || + usage == mixxx::hid::kGenericDesktopKeyboardUsage)) { return false; } +#endif // Apple includes a variety of HID devices in their computers, not all of which // match the filter above for keyboards and mice, for example "Magic Trackpad", @@ -42,8 +63,7 @@ bool HidEnumerator::recognizeDevice(const hid_device_info& device_info) const { // these devices in future computers and none of these devices are DJ controllers, // so skip all Apple HID devices rather than maintaining a list of specific devices // to skip. - if (device_info.vendor_id == mixxx::hid::kAppleVendorId - || device_info.vendor_id == mixxx::hid::kAppleIncVendorId) { + if (vendor_id == mixxx::hid::kAppleVendorId || vendor_id == mixxx::hid::kAppleIncVendorId) { return false; } @@ -51,29 +71,32 @@ bool HidEnumerator::recognizeDevice(const hid_device_info& device_info) const { for (const hid_denylist_t& denylisted : hid_denylisted) { // If vendor ids are specified and do not match, skip. if (denylisted.vendor_id != kAnyValue && - device_info.vendor_id != denylisted.vendor_id) { + vendor_id != denylisted.vendor_id) { continue; } // If product IDs are specified and do not match, skip. if (denylisted.product_id != kAnyValue && - device_info.product_id != denylisted.product_id) { + product_id != denylisted.product_id) { continue; } // Denylist entry based on interface number // If interface number is present and the interface numbers do not // match, skip. if (denylisted.interface_number != kInvalidInterfaceNumber && - device_info.interface_number != denylisted.interface_number) { + interface_number != denylisted.interface_number) { continue; } +#ifdef Q_OS_ANDROID + continue; +#endif // Denylist entry based on usage_page and usage (both required) if (denylisted.usage_page != kAnyValue && denylisted.usage != kAnyValue) { // If usage_page is different, skip. - if (device_info.usage_page != denylisted.usage_page) { + if (usage_page != denylisted.usage_page) { continue; } // If usage is different, skip. - if (device_info.usage != denylisted.usage) { + if (usage != denylisted.usage) { continue; } } @@ -81,6 +104,15 @@ bool HidEnumerator::recognizeDevice(const hid_device_info& device_info) const { } return true; } +} // namespace + +bool HidEnumerator::recognizeDevice(const hid_device_info& device_info) const { + return ::recognizeDevice(device_info.vendor_id, + device_info.product_id, + device_info.interface_number, + device_info.usage_page, + device_info.usage); +} HidEnumerator::~HidEnumerator() { qDebug() << "Deleting HID devices..."; @@ -93,6 +125,66 @@ HidEnumerator::~HidEnumerator() { QList HidEnumerator::queryDevices() { qInfo() << "Scanning USB HID devices"; +#ifdef __ANDROID__ + QJniObject context = QNativeInterface::QAndroidApplication::context(); + QJniObject USB_SERVICE = + QJniObject::getStaticObjectField( + "android/content/Context", + "USB_SERVICE", + "Ljava/lang/String;"); + auto usbManager = context.callObjectMethod("getSystemService", + "(Ljava/lang/String;)Ljava/lang/Object;", + USB_SERVICE.object()); + if (!usbManager.isValid()) { + qDebug() << "usbManager invalid"; + return {}; + } + + QJniObject deviceListObject = + usbManager.callMethod("getDeviceList", "()Ljava/util/HashMap;"); + deviceListObject = deviceListObject.callMethod("values", "()Ljava/util/Collection;"); + QJniArray deviceList = QJniArray( + deviceListObject.callMethod("toArray")); + __android_log_print(ANDROID_LOG_VERBOSE, + "mixxx", + "found %d USB devices for HID enumerator", + deviceList.size()); + + for (const auto& usbDevice : deviceList) { + for (jint ifaceIdx = 0; + ifaceIdx < usbDevice->callMethod("getInterfaceCount"); + ifaceIdx++) { + auto usbInterface = usbDevice->callMethod("getInterface", + "(I)Landroid/hardware/usb/UsbInterface;", + ifaceIdx); + if (usbInterface.callMethod("getInterfaceClass") == LIBUSB_CLASS_HID) { + auto device_info = mixxx::hid::DeviceInfo(usbDevice, usbInterface); + + if (!::recognizeDevice(device_info.getVendorId(), + device_info.getProductId(), + device_info.getUsbInterfaceNumber().value())) { + qInfo() + << "Excluding HID device" + << device_info; + continue; + } + + qInfo() << "Found HID device:" + << device_info; + + if (!device_info.isValid()) { + qWarning() << "HID device permissions problem or device error." + << "Your account needs write access to HID controllers."; + continue; + } + + HidController* newDevice = new HidController(std::move(device_info)); + m_devices.push_back(newDevice); + } + } + } +#else + QStringList enumeratedDevices; hid_device_info* device_info_list = hid_enumerate(0x0, 0x0); for (const auto* device_info = device_info_list; @@ -127,6 +219,7 @@ QList HidEnumerator::queryDevices() { m_devices.push_back(newDevice); } hid_free_enumeration(device_info_list); +#endif return m_devices; } diff --git a/src/controllers/hid/hidioglobaloutputreportfifo.h b/src/controllers/hid/hidioglobaloutputreportfifo.h index beffcc34c78d..399bcfbd592c 100644 --- a/src/controllers/hid/hidioglobaloutputreportfifo.h +++ b/src/controllers/hid/hidioglobaloutputreportfifo.h @@ -6,7 +6,7 @@ struct RuntimeLoggingCategory; class QMutex; - +struct hid_device_; typedef struct hid_device_ hid_device; namespace mixxx { diff --git a/src/controllers/hid/hidiothread.cpp b/src/controllers/hid/hidiothread.cpp index 7b0aff2b3aba..dd7fda383459 100644 --- a/src/controllers/hid/hidiothread.cpp +++ b/src/controllers/hid/hidiothread.cpp @@ -1,7 +1,13 @@ #include "controllers/hid/hidiothread.h" -#include +#include "util/assert.h" +#ifdef __ANDROID__ +#include +#include +#else +#include +#endif #include "moc_hidiothread.cpp" #include "util/runtimeloggingcategory.h" #include "util/string.h" @@ -27,11 +33,13 @@ QString loggingCategoryPrefix(const QString& deviceName) { } } // namespace -HidIoThread::HidIoThread( - hid_device* pHidDevice, const mixxx::hid::DeviceInfo& deviceInfo) +HidIoThread::HidIoThread(hid_device* pHidDevice, + const mixxx::hid::DeviceInfo& deviceInfo, + std::optional deviceUsesReportIds) : QThread(), m_deviceInfo(deviceInfo), - // Defining RuntimeLoggingCategories locally in this thread improves runtime performance significiantly + // Defining RuntimeLoggingCategories locally in this thread improves + // runtime performance significantly m_logBase(loggingCategoryPrefix(deviceInfo.formatName())), m_logInput(loggingCategoryPrefix(deviceInfo.formatName()) + QStringLiteral(".input")), @@ -41,6 +49,7 @@ HidIoThread::HidIoThread( m_lastPollSize(0), m_pollingBufferIndex(0), m_hidReadErrorLogged(false), + m_deviceUsesReportIds(deviceUsesReportIds), m_globalOutputReportFifo(), m_runLoopSemaphore(1) { // Initializing isn't strictly necessary but is good practice. @@ -53,6 +62,11 @@ HidIoThread::HidIoThread( HidIoThread::~HidIoThread() { hid_close(m_pHidDevice); +#ifdef Q_OS_ANDROID + if (m_androidConnection.isValid()) { + m_androidConnection.callMethod("close"); + } +#endif } void HidIoThread::run() { @@ -151,6 +165,22 @@ void HidIoThread::processInputReport(int bytesRead) { emit receive(QByteArray(reinterpret_cast(pCurrentBuffer), bytesRead), mixxx::Time::elapsed()); + + if (m_deviceUsesReportIds.has_value() && bytesRead > 0) { + if (m_deviceUsesReportIds.value()) { + // Extract the ReportId from the buffer + quint8 reportId = pCurrentBuffer[0]; + emit reportReceived(reportId, + QByteArray( + reinterpret_cast(pCurrentBuffer + 1), + bytesRead - 1)); + } else { + quint8 reportId = 0; + emit reportReceived(reportId, + QByteArray(reinterpret_cast(pCurrentBuffer), + bytesRead)); + } + } } QByteArray HidIoThread::getInputReport(quint8 reportID) { diff --git a/src/controllers/hid/hidiothread.h b/src/controllers/hid/hidiothread.h index f0cece04a144..a7d5ff95fc1a 100644 --- a/src/controllers/hid/hidiothread.h +++ b/src/controllers/hid/hidiothread.h @@ -24,7 +24,8 @@ class HidIoThread : public QThread { Q_OBJECT public: HidIoThread(hid_device* pDevice, - const mixxx::hid::DeviceInfo& deviceInfo); + const mixxx::hid::DeviceInfo& deviceInfo, + std::optional deviceUsesReportIds); ~HidIoThread() override; void run() override; @@ -49,9 +50,19 @@ class HidIoThread : public QThread { void sendFeatureReport(quint8 reportID, const QByteArray& reportData); QByteArray getFeatureReport(quint8 reportID); +#ifdef Q_OS_ANDROID + // On Android, we open a connection to the device in JNI. we must keep the + // object alive and referenced to prevent GC and file descriptor being + // closed + void setDeviceConnection(QJniObject&& connection) { + m_androidConnection = connection; + } +#endif + signals: /// Signals that a HID InputReport received by Interrupt triggered from HID device void receive(const QByteArray& data, mixxx::Duration timestamp); + void reportReceived(quint8 reportId, const QByteArray& data); private: bool sendNextCachedOutputReport(); @@ -81,6 +92,8 @@ class HidIoThread : public QThread { int m_pollingBufferIndex; bool m_hidReadErrorLogged; + std::optional m_deviceUsesReportIds; + /// Must be locked when a operation changes the size of the m_outputReports map, /// or when modify the m_outputReportIterator QMutex m_outputReportMapMutex; @@ -100,4 +113,7 @@ class HidIoThread : public QThread { /// Semaphore with capacity 1, which is left acquired, as long as the run loop of the thread runs QSemaphore m_runLoopSemaphore; +#ifdef Q_OS_ANDROID + QJniObject m_androidConnection; +#endif }; diff --git a/src/controllers/hid/hidreportdescriptor.cpp b/src/controllers/hid/hidreportdescriptor.cpp new file mode 100644 index 000000000000..ecd32f1c15e4 --- /dev/null +++ b/src/controllers/hid/hidreportdescriptor.cpp @@ -0,0 +1,546 @@ +#include "controllers/hid/hidreportdescriptor.h" + +#include +#include +#include + +#include "moc_hidreportdescriptor.cpp" +#include "util/assert.h" + +namespace hid::reportDescriptor { + +/// Extracts the value of the specified control in logical scale, +/// from the given report data +int32_t extractLogicalValue(const QByteArray& reportData, const Control& control) { + VERIFY_OR_DEBUG_ASSERT(control.m_bitSize > 0 && control.m_bitSize <= 32) { + return control.m_logicalMinimum; // Safe value in allowed range + } + + uint8_t numberOfBytesToCopy = ((control.m_bitPosition + control.m_bitSize - 1) / 8) + 1; + + int64_t value = 0; + std::memcpy(&value, reportData.data() + control.m_bytePosition, numberOfBytesToCopy); + + value >>= control.m_bitPosition; + + bool isSigned = control.m_logicalMinimum < 0; + // Mask out the bits that are not part of the control + if (isSigned) { + bool isNegative = value & (1ULL << (control.m_bitSize - 1)); + value &= (1ULL << (control.m_bitSize - 1)) - 1; + if (isNegative) { + value = ((1ULL << (control.m_bitSize - 1)) - value) * -1; + } + } else { + value &= (1ULL << control.m_bitSize) - 1; + } + + return value; +} + +/// Sets the bits in the report data of the specified control, +/// to the given value in logical scale +bool applyLogicalValue(QByteArray& reportData, const Control& control, int32_t controlValue) { + VERIFY_OR_DEBUG_ASSERT(control.m_bitSize > 0 && control.m_bitSize <= 32) { + return false; + } + + if (control.m_flags.no_null_null) { + // Nullable controls allow any possible value in the bitrange + if (control.m_logicalMinimum < 0) { + if (controlValue < -std::pow(2, control.m_bitSize - 1) || + controlValue > std::pow(2, control.m_bitSize - 1) - 1) { + return false; + } + } else { + if (controlValue < 0 || controlValue > std::pow(2, control.m_bitSize)) { + return false; + } + } + } else { + // Non-Nullable controls only allow values in the logical range + if (controlValue < control.m_logicalMinimum || controlValue > control.m_logicalMaximum) { + return false; + } + } + + uint64_t mask = ((1ULL << control.m_bitSize) - 1) << control.m_bitPosition; + uint64_t value = (static_cast(controlValue) << control.m_bitPosition) & mask; + + // Check if the value fits into the data (position + bitSize) + uint8_t lastByteToCopy = control.m_bytePosition + + (control.m_bitPosition + control.m_bitSize - 1) / 8; + + if (lastByteToCopy >= reportData.size()) { + return false; + } + + for (uint8_t byteIdx = control.m_bytePosition; byteIdx <= lastByteToCopy; ++byteIdx) { + // Clear the bits that are part of the control + reportData[byteIdx] &= ~static_cast(mask & 0xFF); + // Set the new value + reportData[byteIdx] |= static_cast(value & 0xFF); + mask >>= 8; + value >>= 8; + } + + return true; +} + +QString getScaledUnitString(uint32_t unit) { + struct UnitInfo { + const char* pPhysicalQuantity[5]; + }; + + // This table of physical units is derived from the unit item table + // in chapter 6.2.2.7 of HID class definition 1.11 + // These official unit symbols are not translateable + const UnitInfo unitInfos[] = { + {"", "cm", "rad", "″", "°"}, // length/angle + {"", "g", "g", "slug", "slug"}, // mass + {"", "s", "s", "s", "s"}, // time + {"", "K", "K", "°F", "°F"}, // temperature + {"", "A", "A", "A", "A"}, // current + {"", "cd", "cd", "cd", "cd"} // luminous intensity + }; + + int8_t exponents[] = {0, 1, 2, 3, 4, 5, 6, 7, -8, -7, -6, -5, -4, -3, -2, -1}; + + QString unitString; + + auto appendQuantity = [&](int shift, const UnitInfo& unitInfo) { + int8_t value = (unit >> shift) & 0xF; + if (value != 0) { + if (!unitString.isEmpty()) { + unitString += "*"; + } + unitString += unitInfo.pPhysicalQuantity[(unit & 0xF)]; + if (exponents[value] != 1) { + unitString += "^" + QString::number(exponents[value]); + } + } + }; + + for (int quantityIdx = 0; quantityIdx < 6; ++quantityIdx) { + appendQuantity(4 + quantityIdx * 4, unitInfos[quantityIdx]); + } + + return unitString; +} + +// Class for Controls + +Control::Control(const ControlFlags flags, + const uint32_t usage, + const int32_t logicalMinimum, + const int32_t logicalMaximum, + const int32_t physicalMinimum, + const int32_t physicalMaximum, + const int8_t unitExponent, + const uint32_t unit, + const uint16_t bytePosition, + const uint8_t bitPosition, + const uint8_t bitSize) + : m_flags(flags), + m_usage(usage), + m_logicalMinimum(logicalMinimum), + m_logicalMaximum(logicalMaximum), + m_physicalMinimum(physicalMinimum), + m_physicalMaximum(physicalMaximum), + m_unitExponent(unitExponent), + m_unit(unit), + m_bytePosition(bytePosition), + m_bitPosition(bitPosition), + m_bitSize(bitSize) { +} + +Report::Report(const HidReportType& reportType, const uint8_t& reportId) + : m_reportType(reportType), + m_reportId(reportId), + m_lastBytePosition(0), + m_lastBitPosition(0) { +} + +void Report::addControl(const Control& item) { + m_controls.push_back(item); +} + +void Report::increasePosition(unsigned int bitSize) { + // Calculate the new bit position + m_lastBitPosition += bitSize; + + // If the bit position exceeds 8 bits, adjust the byte position + m_lastBytePosition += m_lastBitPosition / 8; + m_lastBitPosition %= 8; +} + +// Class for Collections +void Collection::addReport(const Report& report) { + m_reports.push_back(report); +} + +std::optional> +Collection::getReport( + const HidReportType& reportType, const uint8_t& reportId) const { + for (const auto& report : m_reports) { + if (report.m_reportType == reportType && report.m_reportId == reportId) { + return report; + } + } + return std::nullopt; +} + +// HID Report Descriptor Parser +HidReportDescriptor::HidReportDescriptor(const std::vector& data) + : m_data(data), + m_pos(0), + m_deviceUsesReportIds(kNotSet), + m_collectionLevel(0) { +} + +std::pair HidReportDescriptor::readTag() { + uint8_t byte = m_data[m_pos++]; + + VERIFY_OR_DEBUG_ASSERT(byte != + static_cast(HidItemSize::LongItemKeyword)){ + // Long items are only reserved for future use, they can't be used + // according to HID class definition 1.11 + }; + + HidItemTag tag = static_cast( + byte & static_cast(HidItemTag::AllTagBitsMask)); + HidItemSize size = static_cast( + byte & static_cast(HidItemSize::AllSizeBitsMask)); + + return {tag, size}; +} + +uint32_t HidReportDescriptor::readPayload(HidItemSize payloadSize) { + uint32_t payload; + + switch (payloadSize) { + case HidItemSize::ZeroBytePayload: + return 0; + case HidItemSize::OneBytePayload: + VERIFY_OR_DEBUG_ASSERT(m_pos + 1 <= m_data.size()) { + return 0; + } + return m_data[m_pos++]; + case HidItemSize::TwoBytePayload: + VERIFY_OR_DEBUG_ASSERT(m_pos + 2 <= m_data.size()) { + return 0; + } + payload = m_data[m_pos++]; + payload |= m_data[m_pos++] << 8; + return payload; + case HidItemSize::FourBytePayload: + VERIFY_OR_DEBUG_ASSERT(m_pos + 4 <= m_data.size()) { + return 0; + } + payload = m_data[m_pos++]; + payload |= m_data[m_pos++] << 8; + payload |= m_data[m_pos++] << 16; + payload |= m_data[m_pos++] << 24; + return payload; + default: + DEBUG_ASSERT(true); + return 0; + } +} + +int32_t HidReportDescriptor::getSignedValue(uint32_t payload, HidItemSize payloadSize) { + switch (payloadSize) { + case HidItemSize::ZeroBytePayload: + return 0; + case HidItemSize::OneBytePayload: + if (payload & 0x80) { // Check if the sign bit is set + return static_cast(payload | 0xFFFFFF00); // Sign extend to 32 bits + } + return static_cast(payload); + case HidItemSize::TwoBytePayload: + if (payload & 0x8000) { // Check if the sign bit is set + return static_cast(payload | 0xFFFF0000); // Sign extend to 32 bits + } + return static_cast(payload); + case HidItemSize::FourBytePayload: + return static_cast(payload); // Already 32 bits, no need to sign extend + default: + DEBUG_ASSERT(true); + return 0; + } +} + +uint32_t HidReportDescriptor::getDecodedUsage( + uint16_t usagePage, uint32_t usage, HidItemSize usageSize) { + switch (usageSize) { + case HidItemSize::ZeroBytePayload: + return usagePage << 16; + case HidItemSize::OneBytePayload: + case HidItemSize::TwoBytePayload: + return (usagePage << 16) + usage; + case HidItemSize::FourBytePayload: + return usage; // Full 32bit usage superseds Usage Page + default: + DEBUG_ASSERT(true); + return usagePage << 16; + } +} + +HidReportType HidReportDescriptor::getReportType(HidItemTag tag) { + switch (tag) { + case HidItemTag::Input: + return HidReportType::Input; + case HidItemTag::Output: + return HidReportType::Output; + break; + case HidItemTag::Feature: + return HidReportType::Feature; + default: + DEBUG_ASSERT(true); + return HidReportType::Input; // Dummy value for error case + } +} + +Collection HidReportDescriptor::parse() { + Collection collection; // Top level collection + std::unique_ptr pCurrentReport = nullptr; // Use a unique_ptr for pCurrentReport + + // Global item values + GlobalItems globalItems; + + // Local item values + LocalItems localItems; + + while (m_pos < m_data.size()) { + auto [tag, size] = readTag(); + auto payload = readPayload(size); + + switch (tag) { + // Global Items + case HidItemTag::UsagePage: + globalItems.usagePage = payload; + break; + case HidItemTag::LogicalMinimum: + globalItems.logicalMinimum = getSignedValue(payload, size); + break; + case HidItemTag::LogicalMaximum: + globalItems.logicalMaximum = getSignedValue(payload, size); + break; + case HidItemTag::PhysicalMinimum: + globalItems.physicalMinimum = getSignedValue(payload, size); + break; + case HidItemTag::PhysicalMaximum: + globalItems.physicalMaximum = getSignedValue(payload, size); + break; + case HidItemTag::UnitExponent: + // HID class definition restricts the unit exponent range to -8 to +7 + globalItems.unitExponent = static_cast(payload & 0x0F); + if (globalItems.unitExponent >= 8) { + globalItems.unitExponent -= 16; + } + break; + case HidItemTag::Unit: + globalItems.unit = payload; + break; + case HidItemTag::ReportSize: + globalItems.reportSize = payload; + break; + case HidItemTag::ReportId: + globalItems.reportId = static_cast(payload); + break; + case HidItemTag::ReportCount: + globalItems.reportCount = payload; + break; + case HidItemTag::Push: + // Places a copy of the global item state table on the stack + globalItemsStack.push_back(globalItems); + break; + case HidItemTag::Pop: + // Replaces the item state table with the top structure from the stack + VERIFY_OR_DEBUG_ASSERT(!globalItemsStack.empty()) { + globalItems = globalItemsStack.back(); + globalItemsStack.pop_back(); + } + break; + + // Local Items + case HidItemTag::Usage: + localItems.Usage.push_back(getDecodedUsage(globalItems.usagePage, payload, size)); + break; + case HidItemTag::UsageMinimum: + localItems.UsageMinimum = getDecodedUsage(globalItems.usagePage, payload, size); + break; + case HidItemTag::UsageMaximum: + localItems.UsageMaximum = getDecodedUsage(globalItems.usagePage, payload, size); + break; + case HidItemTag::DesignatorIndex: + localItems.DesignatorIndex = payload; + break; + case HidItemTag::DesignatorMinimum: + localItems.DesignatorMinimum = payload; + break; + case HidItemTag::DesignatorMaximum: + localItems.DesignatorMaximum = payload; + break; + case HidItemTag::StringIndex: + localItems.StringIndex = payload; + break; + case HidItemTag::StringMinimum: + localItems.StringMinimum = payload; + break; + case HidItemTag::StringMaximum: + localItems.StringMaximum = payload; + break; + case HidItemTag::Delimiter: + localItems.Delimiter = payload; + break; + + // Main Items + case HidItemTag::Input: + case HidItemTag::Output: + case HidItemTag::Feature: { + if (pCurrentReport == nullptr) { + // First control of this device + if (globalItems.reportId == kNoReportId) { + m_deviceUsesReportIds = false; + } else { + m_deviceUsesReportIds = true; + } + pCurrentReport = std::make_unique(getReportType(tag), globalItems.reportId); + } else if (pCurrentReport->m_reportType != getReportType(tag) || + globalItems.reportId != pCurrentReport->m_reportId) { + // First control of a new report + collection.addReport(*pCurrentReport); + pCurrentReport = std::make_unique(getReportType(tag), globalItems.reportId); + } + + int32_t physicalMinimum; + int32_t physicalMaximum; + if (globalItems.physicalMinimum == 0 && globalItems.physicalMaximum == 0) { + // According remark in chapter 6.2.2.7 of HID class definition 1.11 + physicalMinimum = globalItems.logicalMinimum; + physicalMaximum = globalItems.logicalMaximum; + } else { + physicalMinimum = globalItems.physicalMinimum; + physicalMaximum = globalItems.physicalMaximum; + } + + auto flags = std::bit_cast(payload); + + if (flags.data_constant == 1) { + // Constant value padding - Usually for byte alignment + pCurrentReport->increasePosition(globalItems.reportSize * globalItems.reportCount); + } else if (flags.array_variable == 0) { + // Array (e.g. list of pressed keys of a computer keyboard) + // NOT IMPLEMENTED as not relevant for mapping wizard, + // but could be implemented by overloaded Control class + pCurrentReport->increasePosition(globalItems.reportSize * globalItems.reportCount); + } else { + // Normal variable control + uint32_t usage = 0; + unsigned int numOfControls = + (localItems.UsageMinimum != kNotSet && + localItems.UsageMaximum != kNotSet) + ? localItems.UsageMaximum - localItems.UsageMinimum + 1 + : globalItems.reportCount; + for (unsigned int controlIdx = 0; + controlIdx < numOfControls; + controlIdx++) { + if (localItems.UsageMinimum != kNotSet && localItems.UsageMaximum != kNotSet) { + if (controlIdx == 0) { + usage = localItems.UsageMinimum; + } else if (usage < localItems.UsageMaximum) { + usage++; + } + } else if (!localItems.Usage.empty()) { + // If there are less usages than reportCount, + // the last usage value is valid for the remaining + usage = localItems.Usage.front(); + localItems.Usage.erase(localItems.Usage.begin()); + } + + Control control(flags, + usage, + globalItems.logicalMinimum, + globalItems.logicalMaximum, + physicalMinimum, + physicalMaximum, + globalItems.unitExponent, + globalItems.unit, + pCurrentReport->getLastBytePosition(), + pCurrentReport->getLastBitPosition(), + globalItems.reportSize); + pCurrentReport->addControl(control); + pCurrentReport->increasePosition(globalItems.reportSize); + } + pCurrentReport->increasePosition( + (globalItems.reportCount - numOfControls) * + globalItems.reportSize); + } + + localItems = LocalItems(); + break; + } + + case HidItemTag::Collection: + m_collectionLevel++; + + // We only handle top-level-collections + // according to chapter 8.4 "Report Constraints" HID class definition 1.11 + if (m_collectionLevel == 1) { + DEBUG_ASSERT(payload == static_cast(CollectionType::Application)); + } + // Local items are only valid for the actual control definition, reset them + localItems = LocalItems(); + break; + case HidItemTag::EndCollection: + if (m_collectionLevel == 1) { + if (pCurrentReport) { + collection.addReport(*pCurrentReport); + pCurrentReport.reset(); + } + m_topLevelCollections.push_back(collection); + collection = Collection(); + } + if (m_collectionLevel > 0) { + m_collectionLevel--; + } + break; + + default: + DEBUG_ASSERT(true); + break; + } + } + + if (pCurrentReport) { + collection.addReport(*pCurrentReport); + } + + return collection; +} + +std::optional> +HidReportDescriptor::getReport( + const HidReportType& reportType, const uint8_t& reportId) const { + for (const auto& collection : m_topLevelCollections) { + auto report = collection.getReport(reportType, reportId); + if (report) { + return report; + } + } + return std::nullopt; +} + +std::vector> +HidReportDescriptor::getListOfReports() const { + std::vector> orderedList; + for (size_t i = 0; i < m_topLevelCollections.size(); ++i) { + for (const auto& report : m_topLevelCollections[i].getReports()) { + orderedList.emplace_back(i, report.m_reportType, report.m_reportId); + } + } + return orderedList; +} + +} // namespace hid::reportDescriptor diff --git a/src/controllers/hid/hidreportdescriptor.h b/src/controllers/hid/hidreportdescriptor.h new file mode 100644 index 000000000000..cd51e33adf10 --- /dev/null +++ b/src/controllers/hid/hidreportdescriptor.h @@ -0,0 +1,266 @@ +#pragma once + +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace hid::reportDescriptor { + +Q_NAMESPACE + +QString getScaledUnitString(std::uint32_t unit); + +constexpr int kNotSet = -1; +// Value used instead of the ReportID, if device don't have ReportIDs +constexpr int kNoReportId = 0x00; + +enum class HidReportType { + Input, + Output, + Feature +}; +Q_ENUM_NS(HidReportType) + +// clang-format off +// Enum class for HID Item Tags (incl. the two type bits) +enum class HidItemTag : std::uint8_t { + // "Main Items" according to chapter 6.2.2.4 of HID class definition 1.11 + Input = 0b1000'00'00, + Output = 0b1001'00'00, + Feature = 0b1011'00'00, + + Collection = 0b1010'00'00, + EndCollection = 0b1100'00'00, + + // "Global Items" according to chapter 6.2.2.7 of HID class definition 1.11 + UsagePage = 0b0000'01'00, + + LogicalMinimum = 0b0001'01'00, + LogicalMaximum = 0b0010'01'00, + PhysicalMinimum = 0b0011'01'00, + PhysicalMaximum = 0b0100'01'00, + + UnitExponent = 0b0101'01'00, + Unit = 0b0110'01'00, + + ReportSize = 0b0111'01'00, + ReportId = 0b1000'01'00, + ReportCount = 0b1001'01'00, + + Push = 0b1010'01'00, + Pop = 0b1011'01'00, + + // "Local Items" according to chapter 6.2.2.8 of HID class definition 1.11 + Usage = 0b0000'10'00, + UsageMinimum = 0b0001'10'00, + UsageMaximum = 0b0010'10'00, + + DesignatorIndex = 0b0011'10'00, + DesignatorMinimum = 0b0100'10'00, + DesignatorMaximum = 0b0101'10'00, + + StringIndex = 0b0111'10'00, + StringMinimum = 0b1000'10'00, + StringMaximum = 0b1001'10'00, + + Delimiter = 0b1010'10'00, + + + AllTagBitsMask = 0b1111'11'00 +}; + +// Enum class for HID Item Sizes +enum class HidItemSize : std::uint8_t { + // "Short Items" sizes according to chapter 6.2.2.2 of HID class definition 1.11 + ZeroBytePayload = 0b0000'00'00, + OneBytePayload = 0b0000'00'01, + TwoBytePayload = 0b0000'00'10, + FourBytePayload = 0b0000'00'11, + + + // Special value for "Long Items" according to chapter 6.2.2.3 of HID class definition 1.11 + LongItemKeyword = 0b1111'11'10, + + AllSizeBitsMask = 0b0000'00'11 +}; + +// Collection types according to chapter 6.2.2.6 of HID class definition 1.11 +enum class CollectionType : std::uint8_t { + Physical = 0x00, // e.g. group of axes + Application = 0x01, // e.g. mouse or keyboard + Logical = 0x02, // interrelated data + Report = 0x03, + NamedArray = 0x04, + UsageSwitch = 0x05, + UsageModifier = 0x06, + Reserved = 0x07, // range of 0x07-0x7F + VendorDefined = 0x80 // range of 0x80-0xFF +}; +// clang-format on + +struct ControlFlags { + std::uint32_t data_constant : 1; // Data (0) | Constant (1) + std::uint32_t array_variable : 1; // Array (0) | Variable (1) + std::uint32_t absolute_relative : 1; // Absolute (0) | Relative (1) + std::uint32_t no_wrap_wrap : 1; // No Wrap (0) | Wrap (1) + std::uint32_t linear_non_linear : 1; // Linear (0) | Non Linear (1) + std::uint32_t preferred_no_preferred : 1; // Preferred State (0) | No Preferred (1) + std::uint32_t no_null_null : 1; // No Null position (0) | Null state(1) + std::uint32_t non_volatile_volatile : 1; // Non Volatile (0) | Volatile (1) + std::uint32_t bit_field_buffered : 1; // Bit Field (0) | Buffered Bytes (1) + std::uint32_t reserved : 23; +}; + +// Class representing a control described in the HID report descriptor +class Control { + public: + Control(const ControlFlags flags, + const std::uint32_t usage, + const std::int32_t logicalMinimum, + const std::int32_t logicalMaximum, + const std::int32_t physicalMinimum, + const std::int32_t physicalMaximum, + const std::int8_t unitExponent, + const std::uint32_t unit, + const std::uint16_t bytePosition, // Position of the first byte in the report + const std::uint8_t bitPosition, // Position of first bit in first byte + const std::uint8_t bitSize); + + const ControlFlags m_flags; + + const std::uint32_t m_usage; + const std::int32_t m_logicalMinimum; + const std::int32_t m_logicalMaximum; + const std::int32_t m_physicalMinimum; + const std::int32_t m_physicalMaximum; + const std::int8_t m_unitExponent; + const std::uint32_t m_unit; + const std::uint16_t m_bytePosition; // Position of the first byte in the report + const std::uint8_t m_bitPosition; // Position of first bit in first byte + const std::uint8_t m_bitSize; + + private: +}; + +std::int32_t extractLogicalValue(const QByteArray& data, const Control& control); +bool applyLogicalValue(QByteArray& data, const Control& control, std::int32_t controlValue); + +// Class representing a report in the HID report descriptor +class Report { + public: + Report(const HidReportType& reportType, const std::uint8_t& reportId); + + void addControl(const Control& item); + void increasePosition(unsigned int bitSize); + std::uint16_t getLastBytePosition() const { + return m_lastBytePosition; + } + std::uint8_t getLastBitPosition() const { + return m_lastBitPosition; + } + + const std::vector& getControls() const { + return m_controls; + } + + const HidReportType m_reportType; + const std::uint8_t m_reportId; + std::uint16_t getReportSize() const { + return m_lastBytePosition; + } + + private: + std::vector m_controls; + std::uint16_t m_lastBytePosition; + std::uint8_t m_lastBitPosition; // Last bit position inside last byte +}; + +// Class representing a collection of HID items +class Collection { + public: + Collection() = default; + void addReport(const Report& report); + std::optional> getReport( + const HidReportType& reportType, + const std::uint8_t& reportId) const; + const std::vector& getReports() const { + return m_reports; + } + + private: + std::vector m_reports; +}; + +// Class for parsing HID report descriptors +class HidReportDescriptor { + public: + explicit HidReportDescriptor(const std::vector& data); + + bool isDeviceWithReportIds() const { + return m_deviceUsesReportIds; + } + + Collection parse(); + std::optional> getReport( + const HidReportType& reportType, + const std::uint8_t& reportId) const; + std::vector> getListOfReports() const; + + private: + // Define the struct for global items + struct GlobalItems { + std::int32_t logicalMinimum = 0; + std::int32_t logicalMaximum = 0; + std::int32_t physicalMinimum = 0; + std::int32_t physicalMaximum = 0; + std::uint32_t reportSize = 0; + std::uint32_t reportCount = 0; + std::uint32_t unit = 0; + std::int8_t unitExponent = 0; + std::uint8_t reportId = 0; + std::uint16_t usagePage = 0; + }; + + struct LocalItems { + std::vector Usage; + std::int64_t UsageMinimum = kNotSet; + std::int64_t UsageMaximum = kNotSet; + std::int64_t DesignatorIndex = kNotSet; + std::int64_t DesignatorMinimum = kNotSet; + std::int64_t DesignatorMaximum = kNotSet; + std::int64_t StringIndex = kNotSet; + std::int64_t StringMinimum = kNotSet; + std::int64_t StringMaximum = kNotSet; + std::int64_t Delimiter = kNotSet; + }; + + std::pair readTag(); + std::uint32_t readPayload(HidItemSize payloadSize); + + std::int32_t getSignedValue(std::uint32_t payload, HidItemSize payloadSize); + std::uint32_t getDecodedUsage(std::uint16_t usagePage, + std::uint32_t usage, + HidItemSize usageSize); + + HidReportType getReportType(HidItemTag tag); + + const std::vector& m_data; + std::size_t m_pos; + + bool m_deviceUsesReportIds; + + std::vector globalItemsStack; + + unsigned int m_collectionLevel; + std::vector m_topLevelCollections; +}; + +} // namespace hid::reportDescriptor + +Q_DECLARE_METATYPE(hid::reportDescriptor::Control); diff --git a/src/controllers/rendering/controllerrenderingengine.cpp b/src/controllers/rendering/controllerrenderingengine.cpp index 7cfce3cd37e1..0a1ecf79e54b 100644 --- a/src/controllers/rendering/controllerrenderingengine.cpp +++ b/src/controllers/rendering/controllerrenderingengine.cpp @@ -1,6 +1,6 @@ #include "controllers/rendering/controllerrenderingengine.h" -#include +#include #include #include #include @@ -12,18 +12,14 @@ #include #include #include -#include #include "controllers/controller.h" #include "controllers/controllerenginethreadcontrol.h" #include "controllers/scripting/legacy/controllerscriptenginelegacy.h" -#include "controllers/scripting/legacy/controllerscriptinterfacelegacy.h" #include "moc_controllerrenderingengine.cpp" -#include "qml/qmlwaveformoverview.h" #include "util/cmdlineargs.h" #include "util/logger.h" #include "util/thread_affinity.h" -#include "util/time.h" #include "util/timer.h" // Used in the renderFrame method to properly abort the rendering and terminate the engine. @@ -181,7 +177,15 @@ void ControllerRenderingEngine::setup(std::shared_ptr qmlEngine) { return; } QSurfaceFormat format; - format.setSamples(m_screenInfo.msaa); + // FIXME multi sampling appears to be unsupported when using offscreen + // rendering on Wayland QPA: + // warning [CtrlScreen_rightdeck] QWaylandGLContext::makeCurrent: + // eglError: 0x3009, this: 0x7ffd9c001770 warning [CtrlScreen_rightdeck] + // QRhiGles2: Failed to make context current. Expect bad things to happen. + // warning [CtrlScreen_rightdeck] Failed to create RHI (backend 2) + if (QGuiApplication::platformName() != QStringLiteral("wayland")) { + format.setSamples(m_screenInfo.msaa); + } format.setDepthBufferSize(16); format.setStencilBufferSize(8); diff --git a/src/controllers/scripting/controllerscriptenginebase.cpp b/src/controllers/scripting/controllerscriptenginebase.cpp index 075ef6f5a8a9..2137803be3e2 100644 --- a/src/controllers/scripting/controllerscriptenginebase.cpp +++ b/src/controllers/scripting/controllerscriptenginebase.cpp @@ -30,12 +30,17 @@ ControllerScriptEngineBase::ControllerScriptEngineBase( qRegisterMetaType("QMessageBox::StandardButton"); } -#ifdef MIXXX_USE_QML +void ControllerScriptEngineBase::registerPlayerManager( + std::shared_ptr pPlayerManager) { + ControllerScriptEngineBase::s_pPlayerManager = pPlayerManager; +} + void ControllerScriptEngineBase::registerTrackCollectionManager( std::shared_ptr pTrackCollectionManager) { s_pTrackCollectionManager = std::move(pTrackCollectionManager); } +#ifdef MIXXX_USE_QML void ControllerScriptEngineBase::handleQMLErrors(const QList& qmlErrors) { for (const QQmlError& error : std::as_const(qmlErrors)) { showQMLExceptionDialog(error, m_bErrorsAreFatal); @@ -116,6 +121,24 @@ void ControllerScriptEngineBase::reload() { initialize(); } +QObject* ControllerScriptEngineBase::getPlayer(const QString& group) { + VERIFY_OR_DEBUG_ASSERT(s_pPlayerManager != nullptr) { + qCritical() << "Uninitialized PlayerManager"; + return nullptr; + } + auto* const player = s_pPlayerManager->getPlayer(group); + if (!player) { + qWarning() << "PlayerManagerProxy failed to find player for group" << group; + return nullptr; + } + + // Don't set a parent here, so that the QML engine deletes the object when + // the corresponding JS object is garbage collected. + JavascriptPlayerProxy* pPlayerProxy = new JavascriptPlayerProxy(player, nullptr); + QJSEngine::setObjectOwnership(pPlayerProxy, QJSEngine::JavaScriptOwnership); + return pPlayerProxy; +} + bool ControllerScriptEngineBase::executeFunction( QJSValue* pFunctionObject, const QJSValueList& args) { // This function is called from outside the controller engine, so we can't diff --git a/src/controllers/scripting/controllerscriptenginebase.h b/src/controllers/scripting/controllerscriptenginebase.h index 2129184b641b..05bdaba7a92f 100644 --- a/src/controllers/scripting/controllerscriptenginebase.h +++ b/src/controllers/scripting/controllerscriptenginebase.h @@ -7,6 +7,8 @@ #include #include +#include "javascriptplayerproxy.h" +#include "mixer/playermanager.h" #include "util/runtimeloggingcategory.h" #ifdef MIXXX_USE_QML #include "controllers/controllerenginethreadcontrol.h" @@ -14,9 +16,7 @@ class Controller; class QJSEngine; -#ifdef MIXXX_USE_QML class TrackCollectionManager; -#endif /// ControllerScriptEngineBase manages the JavaScript engine for controller scripts. /// ControllerScriptModuleEngine implements the current system using JS modules. @@ -32,6 +32,8 @@ class ControllerScriptEngineBase : public QObject { bool executeFunction(QJSValue* pFunctionObject, const QJSValueList& arguments = {}); + QObject* getPlayer(const QString& group); + /// Shows a UI dialog notifying of a script evaluation error. /// Precondition: QJSValue.isError() == true void showScriptExceptionDialog(const QJSValue& evaluationResult, bool bFatal = false); @@ -53,10 +55,11 @@ class ControllerScriptEngineBase : public QObject { return m_bTesting; } -#ifdef MIXXX_USE_QML + static void registerPlayerManager(std::shared_ptr pPlayerManager); + static void registerTrackCollectionManager( std::shared_ptr pTrackCollectionManager); -#endif + signals: void beforeShutdown(); @@ -91,10 +94,11 @@ class ControllerScriptEngineBase : public QObject { #endif bool m_bTesting; -#ifdef MIXXX_USE_QML private: + static inline std::shared_ptr s_pPlayerManager; static inline std::shared_ptr s_pTrackCollectionManager; +#ifdef MIXXX_USE_QML protected: /// Pause the GUI main thread. Pause is required by rendering /// thread (https://doc.qt.io/qt-6/qquickrendercontrol.html#sync). This diff --git a/src/controllers/scripting/javascriptplayerproxy.cpp b/src/controllers/scripting/javascriptplayerproxy.cpp new file mode 100644 index 000000000000..7a81146d1500 --- /dev/null +++ b/src/controllers/scripting/javascriptplayerproxy.cpp @@ -0,0 +1,119 @@ +#include "javascriptplayerproxy.h" + +#include "moc_javascriptplayerproxy.cpp" + +JavascriptPlayerProxy::JavascriptPlayerProxy(BaseTrackPlayer* pTrackPlayer, QObject* parent) + : QObject(parent), + m_pTrackPlayer(pTrackPlayer) { + if (m_pTrackPlayer && m_pTrackPlayer->getLoadedTrack()) { + slotTrackLoaded(pTrackPlayer->getLoadedTrack()); + } + + connect(m_pTrackPlayer, + &BaseTrackPlayer::loadingTrack, + this, + &JavascriptPlayerProxy::slotLoadingTrack); + connect(m_pTrackPlayer, + &BaseTrackPlayer::newTrackLoaded, + this, + &JavascriptPlayerProxy::slotTrackLoaded); + connect(m_pTrackPlayer, + &BaseTrackPlayer::playerEmpty, + this, + [this]() { + disconnectTrack(); + emit trackUnloaded(); + }); +} + +void JavascriptPlayerProxy::slotTrackLoaded(TrackPointer pTrack) { + m_pCurrentTrack = pTrack; + if (pTrack == nullptr) { + emit trackUnloaded(); + return; + } + + connect(pTrack.get(), + &Track::artistChanged, + this, + &JavascriptPlayerProxy::artistChanged); + connect(pTrack.get(), + &Track::titleChanged, + this, + &JavascriptPlayerProxy::titleChanged); + connect(pTrack.get(), + &Track::albumChanged, + this, + &JavascriptPlayerProxy::albumChanged); + connect(pTrack.get(), + &Track::albumArtistChanged, + this, + &JavascriptPlayerProxy::albumArtistChanged); + connect(pTrack.get(), + &Track::genreChanged, + this, + &JavascriptPlayerProxy::genreChanged); + connect(pTrack.get(), + &Track::composerChanged, + this, + &JavascriptPlayerProxy::composerChanged); + connect(pTrack.get(), + &Track::groupingChanged, + this, + &JavascriptPlayerProxy::groupingChanged); + connect(pTrack.get(), + &Track::yearChanged, + this, + &JavascriptPlayerProxy::yearChanged); + connect(pTrack.get(), + &Track::trackNumberChanged, + this, + &JavascriptPlayerProxy::trackNumberChanged); + connect(pTrack.get(), + &Track::trackTotalChanged, + this, + &JavascriptPlayerProxy::trackTotalChanged); + + emit artistChanged(m_pCurrentTrack->getArtist()); + emit titleChanged(m_pCurrentTrack->getTitle()); + emit albumChanged(m_pCurrentTrack->getAlbum()); + emit albumArtistChanged(m_pCurrentTrack->getAlbumArtist()); + emit genreChanged(m_pCurrentTrack->getGenre()); + emit composerChanged(m_pCurrentTrack->getComposer()); + emit groupingChanged(m_pCurrentTrack->getGrouping()); + emit yearChanged(m_pCurrentTrack->getYear()); + emit trackNumberChanged(m_pCurrentTrack->getTrackNumber()); + emit trackTotalChanged(m_pCurrentTrack->getTrackTotal()); +} + +void JavascriptPlayerProxy::slotLoadingTrack(TrackPointer pNewTrack, TrackPointer pOldTrack) { + VERIFY_OR_DEBUG_ASSERT(pOldTrack == m_pCurrentTrack) { + qWarning() << "Javascript Player proxy was expected to contain " + << pOldTrack.get() << "as active track but got" + << m_pCurrentTrack.get(); + } + + if (pNewTrack == m_pCurrentTrack) { + return; + } + + disconnectTrack(); + m_pCurrentTrack = pNewTrack; +} + +void JavascriptPlayerProxy::disconnectTrack() { + if (m_pCurrentTrack != nullptr) { + m_pCurrentTrack->disconnect(this); + } +} + +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, artist, getArtist) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, title, getTitle) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, album, getAlbum) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, albumArtist, getAlbumArtist) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, genre, getGenre) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, composer, getComposer) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, grouping, getGrouping) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, year, getYear) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, trackNumber, getTrackNumber) +PROPERTY_IMPL_GETTER(JavascriptPlayerProxy, QString, trackTotal, getTrackTotal) diff --git a/src/controllers/scripting/javascriptplayerproxy.h b/src/controllers/scripting/javascriptplayerproxy.h new file mode 100644 index 000000000000..da2d04260d13 --- /dev/null +++ b/src/controllers/scripting/javascriptplayerproxy.h @@ -0,0 +1,62 @@ +#pragma once + +#include "mixer/basetrackplayer.h" +#include "track/track.h" + +#define PROPERTY_IMPL_GETTER(NAMESPACE, TYPE, NAME, GETTER) \ + TYPE NAMESPACE::GETTER() const { \ + const TrackPointer pTrack = m_pCurrentTrack; \ + if (pTrack == nullptr) { \ + return TYPE(); \ + } \ + return pTrack->GETTER(); \ + } + +class JavascriptPlayerProxy : public QObject { + Q_OBJECT + Q_PROPERTY(QString artist READ getArtist NOTIFY artistChanged) + Q_PROPERTY(QString title READ getTitle NOTIFY titleChanged) + Q_PROPERTY(QString album READ getAlbum NOTIFY albumChanged) + Q_PROPERTY(QString albumArtist READ getAlbumArtist NOTIFY albumArtistChanged) + Q_PROPERTY(QString genre READ getGenre STORED false NOTIFY genreChanged) + Q_PROPERTY(QString composer READ getComposer NOTIFY composerChanged) + Q_PROPERTY(QString grouping READ getGrouping NOTIFY groupingChanged) + Q_PROPERTY(QString year READ getYear NOTIFY yearChanged) + Q_PROPERTY(QString trackNumber READ getTrackNumber NOTIFY trackNumberChanged) + Q_PROPERTY(QString trackTotal READ getTrackTotal NOTIFY trackTotalChanged) + public: + explicit JavascriptPlayerProxy(BaseTrackPlayer* pTrackPlayer, QObject* parent); + + QString getTitle() const; + QString getArtist() const; + QString getAlbum() const; + QString getAlbumArtist() const; + QString getGenre() const; + QString getComposer() const; + QString getGrouping() const; + QString getYear() const; + QString getTrackNumber() const; + QString getTrackTotal() const; + + public slots: + void slotTrackLoaded(TrackPointer pTrack); + void slotLoadingTrack(TrackPointer pNewTrack, TrackPointer pOldTrack); + + signals: + void trackUnloaded(); + void albumChanged(QString newAlbum); + void titleChanged(QString newTitle); + void artistChanged(QString newArtist); + void albumArtistChanged(QString newAlbumArtist); + void genreChanged(QString newGenre); + void composerChanged(QString newComposer); + void groupingChanged(QString grouping); + void yearChanged(QString newYear); + void trackNumberChanged(QString newTrackNumber); + void trackTotalChanged(QString newTrackTotal); + + protected: + void disconnectTrack(); + QPointer m_pTrackPlayer; + TrackPointer m_pCurrentTrack; +}; diff --git a/src/controllers/scripting/legacy/controllerscriptenginelegacy.cpp b/src/controllers/scripting/legacy/controllerscriptenginelegacy.cpp index f36405696830..78b728a88e0c 100644 --- a/src/controllers/scripting/legacy/controllerscriptenginelegacy.cpp +++ b/src/controllers/scripting/legacy/controllerscriptenginelegacy.cpp @@ -1,5 +1,8 @@ #include "controllers/scripting/legacy/controllerscriptenginelegacy.h" +#include + +#include #include #ifdef MIXXX_USE_QML @@ -11,12 +14,9 @@ #include #endif -#include "control/controlobject.h" #include "controllers/controller.h" -#include "controllers/scripting/colormapperjsproxy.h" #include "controllers/scripting/legacy/controllerscriptinterfacelegacy.h" #include "errordialoghandler.h" -#include "mixer/playermanager.h" #include "moc_controllerscriptenginelegacy.cpp" #ifdef MIXXX_USE_QML #include "qml/qmlmixxxcontrollerscreen.h" @@ -54,6 +54,9 @@ ControllerScriptEngineLegacy::~ControllerScriptEngineLegacy() { } void ControllerScriptEngineLegacy::watchFilePath(const QString& path) { +#ifdef __ANDROID__ + return; +#endif if (m_fileWatcher.files().contains(path) || m_fileWatcher.directories().contains(path)) { qCDebug(m_logger) << "File" << path << "is already being watch for controller auto-reload"; return; @@ -358,7 +361,7 @@ bool ControllerScriptEngineLegacy::initialize() { watchFilePath(path); auto pQmlEngine = std::dynamic_pointer_cast(m_pJSEngine); pQmlEngine->addImportPath(path); - qCWarning(m_logger) << pQmlEngine->importPathList(); + qCDebug(m_logger) << "The QML import path is" << pQmlEngine->importPathList(); } } else if (!m_modules.isEmpty()) { qCWarning(m_logger) << "Controller mapping has QML library definitions but no " diff --git a/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.cpp b/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.cpp index 753dfe3e70a8..899e9988e914 100644 --- a/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.cpp +++ b/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.cpp @@ -136,6 +136,10 @@ QJSValue ControllerScriptInterfaceLegacy::getSetting(const QString& name) { } } +QObject* ControllerScriptInterfaceLegacy::getPlayer(const QString& group) { + return m_pScriptEngineLegacy->getPlayer(group); +} + double ControllerScriptInterfaceLegacy::getValue(const QString& group, const QString& name) { ControlObjectScript* coScript = getControlObjectScript(group, name); if (coScript == nullptr) { diff --git a/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.h b/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.h index 3585c3692df4..809d01cbd8e8 100644 --- a/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.h +++ b/src/controllers/scripting/legacy/controllerscriptinterfacelegacy.h @@ -56,6 +56,7 @@ class ControllerScriptInterfaceLegacy : public QObject { virtual ~ControllerScriptInterfaceLegacy(); Q_INVOKABLE QJSValue getSetting(const QString& name); + Q_INVOKABLE QObject* getPlayer(const QString& group); Q_INVOKABLE double getValue(const QString& group, const QString& name); Q_INVOKABLE void setValue(const QString& group, const QString& name, double newValue); Q_INVOKABLE double getParameter(const QString& group, const QString& name); diff --git a/src/coreservices.cpp b/src/coreservices.cpp index fd8bd8e44fe9..f81918969398 100644 --- a/src/coreservices.cpp +++ b/src/coreservices.cpp @@ -14,6 +14,7 @@ #include "control/controlindicatortimer.h" #include "controllers/controllermanager.h" #include "controllers/keyboard/keyboardeventfilter.h" +#include "controllers/scripting/controllerscriptenginebase.h" #include "database/mixxxdb.h" #include "effects/effectsmanager.h" #include "engine/enginemixer.h" @@ -40,15 +41,11 @@ #include #include -#include "controllers/scripting/controllerscriptenginebase.h" #include "qml/qmlconfigproxy.h" -#include "qml/qmlcontrolproxy.h" -#include "qml/qmldlgpreferencesproxy.h" -#include "qml/qmleffectslotproxy.h" #include "qml/qmleffectsmanagerproxy.h" #include "qml/qmllibraryproxy.h" #include "qml/qmlplayermanagerproxy.h" -#include "qml/qmlplayerproxy.h" +#include "qml/qmlsoundmanagerproxy.h" #endif #include "soundio/soundmanager.h" #include "sources/soundsourceproxy.h" @@ -67,9 +64,12 @@ #include "util/sandbox.h" #endif -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) && defined(__X11__) #include #endif +#if defined(Q_OS_ANDROID) +#include +#endif #if defined(Q_OS_LINUX) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0) #include @@ -122,7 +122,7 @@ Bool __xErrorHandler(Display* display, XErrorEvent* event, xError* error) { #endif -#if defined(Q_OS_LINUX) +#if defined(Q_OS_LINUX) && defined(__X11__) QLocale localeFromXkbSymbol(const QString& xkbLayout) { // This maps XKB layouts to locales of keyboard mappings that are shipped with Mixxx static const QMap xkbToLocaleMap = { @@ -272,7 +272,7 @@ QString getCurrentXkbLayoutName() { // to "ibus engine". QGuiApplication::inputMethod() does not work with GNOME and XFCE // https://bugreports.qt.io/browse/QTBUG-137302 inline QLocale inputLocale() { -#if defined(Q_OS_LINUX) +#if defined(Q_OS_LINUX) && defined(__X11__) QString layoutName = getCurrentXkbLayoutName(); if (!layoutName.isEmpty()) { qDebug() << "Keyboard Layout from XKB:" << layoutName; @@ -629,6 +629,44 @@ void CoreServices::initialize(QApplication* pApp) { if (!dir.exists()) { dir.mkpath("."); } +#elif defined(Q_OS_ANDROID) + // if(QOperatingSystemVersion::current() < + // QOperatingSystemVersion(QOperatingSystemVersion::Android, 11)) { + // qDebug() << "it is less then Android 11 - ALL FILES permission + // isn't possible!"; + // } + QString fd; + jboolean value = QJniObject::callStaticMethod( + "android/os/Environment", "isExternalStorageManager"); + if (value == false) { + qDebug() << "requesting ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION"; + QJniObject ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION = + QJniObject::getStaticObjectField( + "android/provider/Settings", + "ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION", + "Ljava/lang/String;"); + QJniObject intent("android/content/Intent", + "(Ljava/lang/String;)V", + ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION.object()); + QJniObject jniPath = QJniObject::fromString( + QStringLiteral("package:%1").arg(ANDROID_PACKAGE_NAME)); + QJniObject jniUri = + QJniObject::callStaticObjectMethod("android/net/Uri", + "parse", + "(Ljava/lang/String;)Landroid/net/Uri;", + jniPath.object()); + QJniObject jniResult = intent.callObjectMethod("setData", + "(Landroid/net/Uri;)Landroid/content/Intent;", + jniUri.object()); + QtAndroidPrivate::startActivity(intent, 0); + } else { + qDebug() << "Got ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION"; + } + fd = "/storage/emulated/0/Music/"; + QDir dir = fd; + if (!dir.exists()) { + dir.mkpath("."); + } #else // TODO(XXX) this needs to be smarter, we can't distinguish between an empty // path return value (not sure if this is normally possible, but it is @@ -726,6 +764,8 @@ void CoreServices::initialize(QApplication* pApp) { m_isInitialized = true; + ControllerScriptEngineBase::registerPlayerManager(getPlayerManager()); + #ifdef MIXXX_USE_QML initializeQMLSingletons(); } @@ -744,6 +784,7 @@ void CoreServices::initializeQMLSingletons() { mixxx::qml::QmlPlayerManagerProxy::registerPlayerManager(getPlayerManager()); mixxx::qml::QmlConfigProxy::registerUserSettings(getSettings()); mixxx::qml::QmlLibraryProxy::registerLibrary(getLibrary()); + mixxx::qml::QmlSoundManagerProxy::registerManager(getSoundManager()); ControllerScriptEngineBase::registerTrackCollectionManager(getTrackCollectionManager()); @@ -865,9 +906,11 @@ void CoreServices::finalize() { mixxx::qml::QmlPlayerManagerProxy::registerPlayerManager(nullptr); mixxx::qml::QmlConfigProxy::registerUserSettings(nullptr); mixxx::qml::QmlLibraryProxy::registerLibrary(nullptr); + mixxx::qml::QmlSoundManagerProxy::registerManager(nullptr); ControllerScriptEngineBase::registerTrackCollectionManager(nullptr); #endif + ControllerScriptEngineBase::registerPlayerManager(nullptr); // Stop all pending library operations qDebug() << t.elapsed(false).debugMillisWithUnit() << "stopping pending Library tasks"; diff --git a/src/effects/backends/builtin/autogaincontroleffect.cpp b/src/effects/backends/builtin/autogaincontroleffect.cpp new file mode 100644 index 000000000000..2ea42eef06dc --- /dev/null +++ b/src/effects/backends/builtin/autogaincontroleffect.cpp @@ -0,0 +1,242 @@ +#include "effects/backends/builtin/autogaincontroleffect.h" + +#include "util/math.h" + +namespace { +using namespace std::chrono_literals; +constexpr std::chrono::milliseconds kDefaultAttack = 1ms; +constexpr std::chrono::milliseconds kDefaultRelease = 500ms; +constexpr double kDefaultThresholdDB = -40; +constexpr double kDefaultTargetDB = -5; +constexpr double kDefaultGainDB = 20; +constexpr double kDefaultKneeDB = 10; + +double calculateBallistics(double paramMs, const mixxx::EngineParameters& engineParameters) { + return exp(-1000.0 / (paramMs * engineParameters.sampleRate())); +} +} // anonymous namespace + +// static +QString AutoGainControlEffect::getId() { + return "org.mixxx.effects.autogaincontrol"; +} + +// static +EffectManifestPointer AutoGainControlEffect::getManifest() { + auto pManifest = EffectManifestPointer::create(); + pManifest->setId(getId()); + pManifest->setName(QObject::tr("Auto Gain Control")); + pManifest->setShortName(QObject::tr("AGC")); + pManifest->setAuthor(QObject::tr("The Mixxx Team")); + pManifest->setVersion("1.0"); + pManifest->setDescription(QObject::tr( + "Auto Gain Control (AGC) automatically adjusts the gain of an " + "audio signal to maintain a consistent output level.")); + pManifest->setEffectRampsFromDry(true); + pManifest->setMetaknobDefault(0.0); + + EffectManifestParameterPointer threshold = pManifest->addParameter(); + threshold->setId("threshold"); + threshold->setName(QObject::tr("Threshold (dBFS)")); + threshold->setShortName(QObject::tr("Threshold")); + threshold->setDescription( + QObject::tr("The Threshold knob adjusts the level above which the " + "effect starts enhancing the input signal")); + threshold->setValueScaler(EffectManifestParameter::ValueScaler::Linear); + threshold->setUnitsHint(EffectManifestParameter::UnitsHint::Decibel); + threshold->setNeutralPointOnScale(0); + threshold->setRange(-70, kDefaultThresholdDB, 0); + + EffectManifestParameterPointer target = pManifest->addParameter(); + target->setId("target"); + target->setName(QObject::tr("Target (dBFS)")); + target->setShortName(QObject::tr("Target")); + target->setDescription( + QObject::tr("The Target knob adjusts the desired target level of the output signal")); + target->setValueScaler(EffectManifestParameter::ValueScaler::Linear); + target->setUnitsHint(EffectManifestParameter::UnitsHint::Decibel); + target->setNeutralPointOnScale(0); + target->setRange(-20, kDefaultTargetDB, 10); + + EffectManifestParameterPointer gain = pManifest->addParameter(); + gain->setId("gain"); + gain->setName(QObject::tr("Gain (dB)")); + gain->setShortName(QObject::tr("Gain")); + gain->setDescription( + QObject::tr("The Gain knob adjusts the maximum amount of gain that " + "the effect will apply")); + gain->setValueScaler(EffectManifestParameter::ValueScaler::Linear); + gain->setUnitsHint(EffectManifestParameter::UnitsHint::Decibel); + gain->setRange(1, kDefaultGainDB, 40); + + EffectManifestParameterPointer knee = pManifest->addParameter(); + knee->setId("knee"); + knee->setName(QObject::tr("Knee (dB)")); + knee->setShortName(QObject::tr("Knee")); + knee->setDescription(QObject::tr( + "The Knee knob defines the range around the Threshold where gain " + "changes are applied gradually,\nensuring smooth transitions and " + "avoiding abrupt level shifts.")); + knee->setValueScaler(EffectManifestParameter::ValueScaler::Linear); + knee->setUnitsHint(EffectManifestParameter::UnitsHint::Coefficient); + knee->setNeutralPointOnScale(0); + knee->setRange(0.0, kDefaultKneeDB, 24); + + EffectManifestParameterPointer attack = pManifest->addParameter(); + attack->setId("attack"); + attack->setName(QObject::tr("Attack (ms)")); + attack->setShortName(QObject::tr("Attack")); + attack->setDescription(QObject::tr( + "The Attack knob sets the time that determines how fast the " + "auto gain \nwill set in once the signal exceeds the threshold")); + attack->setValueScaler(EffectManifestParameter::ValueScaler::Logarithmic); + attack->setUnitsHint(EffectManifestParameter::UnitsHint::Millisecond); + attack->setRange(0, kDefaultAttack.count(), 250); + + EffectManifestParameterPointer release = pManifest->addParameter(); + release->setId("release"); + release->setName(QObject::tr("Release (ms)")); + release->setShortName(QObject::tr("Release")); + release->setDescription( + QObject::tr("The Release knob sets the time that determines how " + "fast the auto gain will recover from the gain\n" + "adjustment once the signal falls under the threshold. " + "Depending on the input signal, short release times\n" + "may introduce a 'pumping' effect and/or distortion.")); + release->setValueScaler(EffectManifestParameter::ValueScaler::Integral); + release->setUnitsHint(EffectManifestParameter::UnitsHint::Millisecond); + release->setRange(0, kDefaultRelease.count(), 1500); + + return pManifest; +} + +void AutoGainControlGroupState::clear(const mixxx::EngineParameters& engineParameters) { + state = CSAMPLE_ONE; + attackCoeff = calculateBallistics(kDefaultAttack.count(), engineParameters); + releaseCoeff = calculateBallistics(kDefaultRelease.count(), engineParameters); + + previousAttackParamMs = kDefaultAttack.count(); + previousReleaseParamMs = kDefaultRelease.count(); + previousSampleRate = engineParameters.sampleRate(); +} + +void AutoGainControlGroupState::calculateCoeffsIfChanged( + const mixxx::EngineParameters& engineParameters, + double attackParamMs, + double releaseParamMs) { + if (engineParameters.sampleRate() != previousSampleRate) { + attackCoeff = calculateBallistics(attackParamMs, engineParameters); + previousAttackParamMs = attackParamMs; + + releaseCoeff = calculateBallistics(releaseParamMs, engineParameters); + previousReleaseParamMs = releaseParamMs; + + previousSampleRate = engineParameters.sampleRate(); + } else { + if (attackParamMs != previousAttackParamMs) { + attackCoeff = calculateBallistics(attackParamMs, engineParameters); + previousAttackParamMs = attackParamMs; + } + + if (releaseParamMs != previousReleaseParamMs) { + releaseCoeff = calculateBallistics(releaseParamMs, engineParameters); + previousReleaseParamMs = releaseParamMs; + } + } +} + +void AutoGainControlEffect::loadEngineEffectParameters( + const QMap& parameters) { + m_pThreshold = parameters.value("threshold"); + m_pTarget = parameters.value("target"); + m_pGain = parameters.value("gain"); + m_pKnee = parameters.value("knee"); + m_pAttack = parameters.value("attack"); + m_pRelease = parameters.value("release"); +} + +void AutoGainControlEffect::processChannel( + AutoGainControlGroupState* pState, + const CSAMPLE* pInput, + CSAMPLE* pOutput, + const mixxx::EngineParameters& engineParameters, + const EffectEnableState enableState, + const GroupFeatureState& groupFeatures) { + Q_UNUSED(groupFeatures); + + if (enableState == EffectEnableState::Enabling) { + pState->clear(engineParameters); + } else { + pState->calculateCoeffsIfChanged(engineParameters, m_pAttack->value(), m_pRelease->value()); + } + + applyAutoGainControl(pState, engineParameters, pInput, pOutput); +} + +void AutoGainControlEffect::applyAutoGainControl(AutoGainControlGroupState* pState, + const mixxx::EngineParameters& engineParameters, + const CSAMPLE* pInput, + CSAMPLE* pOutput) { + // Get user-defined parameters + double thresholdDB = m_pThreshold->value(); + double targetLevelDB = m_pTarget->value(); + double maxGainDB = m_pGain->value(); + double kneeDB = m_pKnee->value(); + + // Define the upper and lower boundaries of the knee region + double upperKneeDB = thresholdDB + 0.5 * kneeDB; + double lowerKneeDB = thresholdDB - 0.5 * kneeDB; + + // Initialize the envelope state + double state = pState->state; + + SINT numSamples = engineParameters.samplesPerBuffer(); + int channelCount = engineParameters.channelCount(); + for (SINT i = 0; i < numSamples; i += channelCount) { + // Detect peak level across stereo channels + CSAMPLE maxSample = std::max(fabs(pInput[i]), fabs(pInput[i + 1])); + + // If the input is silent, output silence + if (maxSample == CSAMPLE_ZERO) { + pOutput[i] = CSAMPLE_ZERO; + pOutput[i + 1] = CSAMPLE_ZERO; + continue; + } + + // Smooth the level detector using attack/release envelope + if (maxSample > state) { + state = pState->attackCoeff * state + (1 - pState->attackCoeff) * maxSample; + } else { + state = pState->releaseCoeff * state + (1 - pState->releaseCoeff) * maxSample; + } + + // Convert current signal level to decibels + double inputLevelDB = ratio2db(state); + + // Determine the appropriate gain based on the input level + double desiredGainDB; + if (inputLevelDB > upperKneeDB) { + // Above the knee range: apply full gain reduction + desiredGainDB = targetLevelDB - inputLevelDB; + } else if (inputLevelDB < lowerKneeDB) { + // Below the knee range: no gain applied + desiredGainDB = 0.0; + } else { + // Within the knee: interpolate gain smoothly + double kneePosition = (inputLevelDB - lowerKneeDB) / kneeDB; + desiredGainDB = (targetLevelDB - upperKneeDB) * kneePosition; + } + + // Limit the gain to the maximum allowed value + desiredGainDB = std::min(desiredGainDB, maxGainDB); + + // Convert gain from decibels to linear amplitude ratio + CSAMPLE_GAIN gain = static_cast(db2ratio(desiredGainDB)); + + pOutput[i] = pInput[i] * gain; + pOutput[i + 1] = pInput[i + 1] * gain; + } + + // Store the envelope state for the next buffer + pState->state = state; +} diff --git a/src/effects/backends/builtin/autogaincontroleffect.h b/src/effects/backends/builtin/autogaincontroleffect.h new file mode 100644 index 000000000000..f00ea90d32f8 --- /dev/null +++ b/src/effects/backends/builtin/autogaincontroleffect.h @@ -0,0 +1,70 @@ +#pragma once + +#include "effects/backends/effectprocessor.h" +#include "engine/effects/engineeffect.h" +#include "engine/effects/engineeffectparameter.h" +#include "util/class.h" +#include "util/defs.h" +#include "util/sample.h" +#include "util/types.h" + +class AutoGainControlGroupState : public EffectState { + public: + AutoGainControlGroupState(const mixxx::EngineParameters& engineParameters) + : EffectState(engineParameters) { + clear(engineParameters); + } + + void clear(const mixxx::EngineParameters& engineParameters); + + void calculateCoeffsIfChanged( + const mixxx::EngineParameters& engineParameters, + double attackParamMs, + double releaseParamMs); + + double state; + double attackCoeff; + double releaseCoeff; + + double previousAttackParamMs; + double previousReleaseParamMs; + mixxx::audio::SampleRate previousSampleRate; +}; + +class AutoGainControlEffect : public EffectProcessorImpl { + public: + AutoGainControlEffect() = default; + + static QString getId(); + static EffectManifestPointer getManifest(); + + void loadEngineEffectParameters( + const QMap& parameters) override; + + void processChannel( + AutoGainControlGroupState* pState, + const CSAMPLE* pInput, + CSAMPLE* pOutput, + const mixxx::EngineParameters& engineParameters, + const EffectEnableState enableState, + const GroupFeatureState& groupFeatures) override; + + private: + QString debugString() const { + return getId(); + } + + EngineEffectParameterPointer m_pThreshold; + EngineEffectParameterPointer m_pTarget; + EngineEffectParameterPointer m_pGain; + EngineEffectParameterPointer m_pKnee; + EngineEffectParameterPointer m_pAttack; + EngineEffectParameterPointer m_pRelease; + + DISALLOW_COPY_AND_ASSIGN(AutoGainControlEffect); + + void applyAutoGainControl(AutoGainControlGroupState* pState, + const mixxx::EngineParameters& engineParameters, + const CSAMPLE* pInput, + CSAMPLE* pOutput); +}; diff --git a/src/effects/backends/builtin/builtinbackend.cpp b/src/effects/backends/builtin/builtinbackend.cpp index b4b71425301a..908440f78132 100644 --- a/src/effects/backends/builtin/builtinbackend.cpp +++ b/src/effects/backends/builtin/builtinbackend.cpp @@ -16,6 +16,7 @@ #ifndef __MACAPPSTORE__ #include "effects/backends/builtin/reverbeffect.h" #endif +#include "effects/backends/builtin/autogaincontroleffect.h" #include "effects/backends/builtin/autopaneffect.h" #include "effects/backends/builtin/compressoreffect.h" #include "effects/backends/builtin/distortioneffect.h" @@ -64,6 +65,7 @@ BuiltInBackend::BuiltInBackend() { registerEffect(); registerEffect(); registerEffect(); + registerEffect(); } std::unique_ptr BuiltInBackend::createProcessor( diff --git a/src/engine/controls/cuecontrol.cpp b/src/engine/controls/cuecontrol.cpp index c625d7cbe7fc..955b23c6aa1e 100644 --- a/src/engine/controls/cuecontrol.cpp +++ b/src/engine/controls/cuecontrol.cpp @@ -7,7 +7,9 @@ #include "mixer/playermanager.h" #include "moc_cuecontrol.cpp" #include "preferences/colorpalettesettings.h" +#include "track/cueinfo.h" #include "track/track.h" +#include "util/assert.h" #include "util/color/predefinedcolorpalettes.h" #include "util/defs.h" #include "vinylcontrol/defs_vinylcontrol.h" @@ -76,6 +78,16 @@ void appendCueHint(gsl::not_null pHintList, const double playPos, H appendCueHint(pHintList, frame, type); } +bool isValidJumpCue(HotcueControl* pControl, + HotcueControl::Status desiredStatus = HotcueControl::Status::Active) { + DEBUG_ASSERT(pControl != nullptr); + return pControl->getCue() != nullptr && + pControl->getCue()->getType() == mixxx::CueType::Jump && + pControl->getStatus() == desiredStatus && + pControl->getPosition().isValid() && + pControl->getEndPosition().isValid(); +} + } // namespace CueControl::CueControl(const QString& group, @@ -139,6 +151,73 @@ CueControl::~CueControl() { qDeleteAll(m_hotcueControls); } +mixxx::audio::FramePos CueControl::nextTrigger(bool reverse, + mixxx::audio::FramePos currentPosition, + mixxx::audio::FramePos* pTargetPosition, + mixxx::audio::FrameDiff_t lookAheadFrames) { + VERIFY_OR_DEBUG_ASSERT(pTargetPosition) { + return mixxx::audio::kInvalidFramePos; + } + *pTargetPosition = mixxx::audio::kInvalidFramePos; + mixxx::audio::FramePos triggerPosition = mixxx::audio::kInvalidFramePos; + HotcueControl* pNextJump = nullptr; + // Find the first saved cue that is next to be played (either first after + // the play position, or first before in playing in reverse) + for (const auto& pControl : std::as_const(m_hotcueControls)) { + if (!isValidJumpCue(pControl)) { + continue; + } + + if (!reverse) { + // Saved jumps store the position to jump from as their end position + if (pControl->getEndPosition() >= currentPosition && + (!triggerPosition.isValid() || pControl->getEndPosition() < triggerPosition)) { + triggerPosition = quantizeCuePoint(pControl->getEndPosition()); + *pTargetPosition = quantizeCuePoint(pControl->getPosition()); + pNextJump = pControl; + } + } else { + // Saved jumps store the position to jump from as their end + // position, but here we want to take the jump backward + if (pControl->getPosition() <= currentPosition && + (!triggerPosition.isValid() || pControl->getPosition() > triggerPosition)) { + triggerPosition = quantizeCuePoint(pControl->getPosition()); + *pTargetPosition = quantizeCuePoint(pControl->getEndPosition()); + pNextJump = pControl; + } + } + } + + if (pNextJump != nullptr && + pNextJump->getPosition() < pNextJump->getEndPosition() && + currentPosition + lookAheadFrames > pNextJump->getEndPosition()) { + // If the saved jump is backward, we reset the Active status after the jump + // to prevent jumping again like a loop + pNextJump->setStatus(HotcueControl::Status::Set); + } + return triggerPosition; +} + +void CueControl::notifySeek(mixxx::audio::FramePos position) { + // Iterate over all the hotcues to find saved jump. If we sought inside the + // jump range, ensure the jump is disabled to prevent double seek + for (const auto& pControl : std::as_const(m_hotcueControls)) { + if (!isValidJumpCue(pControl)) { + continue; + } + const auto isBackwardJump = pControl->getPosition() > pControl->getEndPosition(); + if (!isBackwardJump && position < pControl->getPosition() && + position >= pControl->getEndPosition()) { + // is in the range of a forward jump + pControl->setStatus(HotcueControl::Status::Set); + } else if (isBackwardJump && position >= pControl->getPosition() && + position < pControl->getEndPosition()) { + // is in the range of a backward jump + pControl->setStatus(HotcueControl::Status::Set); + } + } +} + void CueControl::createControls() { m_pCueSet = std::make_unique(ConfigKey(m_group, "cue_set")); m_pCueSet->setButtonMode(mixxx::control::ButtonMode::Trigger); @@ -672,6 +751,7 @@ void CueControl::loadCuesFromTrack() { pOutroCue = pCue; break; case mixxx::CueType::HotCue: + case mixxx::CueType::Jump: case mixxx::CueType::Loop: { if (pCue->getHotCue() == Cue::kNoHotCue) { continue; @@ -709,7 +789,6 @@ void CueControl::loadCuesFromTrack() { break; } case mixxx::CueType::Beat: - case mixxx::CueType::Jump: case mixxx::CueType::Invalid: default: break; @@ -974,6 +1053,13 @@ void CueControl::hotcueSet(HotcueControl* pControl, double value, HotcueSetMode } else { color = colorFromConfig(ConfigKey("[Controls]", "LoopDefaultColorIndex")); } + } else if (cueType == mixxx::CueType::Jump) { + ConfigKey autoJumpColorsKey("[Controls]", "auto_jump_colors"); + if (getConfig()->getValue(autoJumpColorsKey, false)) { + color = m_colorPaletteSettings.getHotcueColorPalette().colorForHotcueIndex(hotcueIndex); + } else { + color = colorFromConfig(ConfigKey("[Controls]", "jump_default_color_index")); + } } else { ConfigKey autoHotcueColorsKey("[Controls]", "auto_hotcue_colors"); if (getConfig()->getValue(autoHotcueColorsKey, false)) { @@ -1165,6 +1251,21 @@ void CueControl::hotcueActivate(HotcueControl* pControl, double value, HotcueSet setLoop(pos.startPosition, pos.endPosition, !loopActive); } break; + case mixxx::CueType::Jump: + // If the play position is after the jump departure (cue + // end), triggering the hotcue will make it behave like a + // normal hotcue + if (getEngineBuffer() != nullptr && + getEngineBuffer()->getPlayPos() > + pCue->getEndPosition()) { + hotcueGoto(pControl, value); + } else if (pControl->getStatus() != + HotcueControl::Status::Active) { + pControl->setStatus(HotcueControl::Status::Active); + } else { + pControl->setStatus(HotcueControl::Status::Set); + } + break; default: DEBUG_ASSERT(!"Invalid CueType!"); } @@ -1336,6 +1437,9 @@ void CueControl::hintReader(gsl::not_null pHintList) { // constructor and getPosition()->get() is a ControlObject for (const auto& pControl : std::as_const(m_hotcueControls)) { appendCueHint(pHintList, pControl->getPosition(), Hint::Type::HotCue); + if (isValidJumpCue(pControl, HotcueControl::Status::Set)) { + appendCueHint(pHintList, pControl->getEndPosition(), Hint::Type::HotCue); + } } appendCueHint(pHintList, m_n60dBSoundStartPosition.getValue(), Hint::Type::FirstSound); diff --git a/src/engine/controls/cuecontrol.h b/src/engine/controls/cuecontrol.h index ea1cdf4944d8..0c2eb27ac33a 100644 --- a/src/engine/controls/cuecontrol.h +++ b/src/engine/controls/cuecontrol.h @@ -167,6 +167,7 @@ class HotcueControl : public QObject { std::unique_ptr m_hotcueEndPosition; std::unique_ptr m_pHotcueStatus; std::unique_ptr m_hotcueType; + std::unique_ptr m_hotcueDirection; std::unique_ptr m_hotcueColor; // Hotcue button controls std::unique_ptr m_hotcueSet; @@ -195,6 +196,15 @@ class CueControl : public EngineControl { UserSettingsPointer pConfig); ~CueControl() override; + void notifySeek(mixxx::audio::FramePos position) override; + + /// nextTrigger returns the sample at which the engine will be triggered to + /// take a jump. This is only used for active saved jumps. + virtual mixxx::audio::FramePos nextTrigger(bool reverse, + mixxx::audio::FramePos currentPosition, + mixxx::audio::FramePos* pTargetPosition, + mixxx::audio::FrameDiff_t lookAheadFrames); + void hintReader(gsl::not_null pHintList) override; bool updateIndicatorsAndModifyPlay(bool newPlay, bool oldPlay, bool playPossible); void updateIndicators(); @@ -295,6 +305,10 @@ class CueControl : public EngineControl { int getHotcueFocusIndex() const; mixxx::RgbColor colorFromConfig(const ConfigKey& configKey); + void jumpTo(mixxx::audio::FramePos currentPosition, + mixxx::audio::FramePos source, + mixxx::audio::FramePos target); + UserSettingsPointer m_pConfig; ColorPaletteSettings m_colorPaletteSettings; QAtomicInt m_currentlyPreviewingIndex; @@ -368,6 +382,7 @@ class CueControl : public EngineControl { std::unique_ptr m_pSortHotcuesByPosCompress; QAtomicPointer m_pCurrentSavedLoopControl; + QAtomicPointer m_pCurrentSavedJumpControl; // Tells us which controls map to which hotcue QMap m_controlMap; diff --git a/src/engine/controls/loopingcontrol.cpp b/src/engine/controls/loopingcontrol.cpp index cb1c7436e3c4..f5a099790c70 100644 --- a/src/engine/controls/loopingcontrol.cpp +++ b/src/engine/controls/loopingcontrol.cpp @@ -1309,6 +1309,15 @@ void LoopingControl::slotBeatLoopDeactivate(BeatLoopingControl* pBeatLoopControl void LoopingControl::slotBeatLoopDeactivateRoll(BeatLoopingControl* pBeatLoopControl) { pBeatLoopControl->deactivate(); + + if (!m_bLoopRollActive) { + // beatloop_activate was pressed while rolling and slotBeatLoopToggle() + // did already reset roll status (m_activeLoopRolls, m_bLoopRollActive) + // and EngineBuffer quit slip mode (but didn't seek). + // So nothing to do here, just leave the adopted loop active. + return; + } + const double size = pBeatLoopControl->getSize(); // clang-tidy wants auto to be auto* because QStack inherits from QVector // and QVector::iterator is a pointer type in Qt5, but QStack inherits @@ -1325,18 +1334,15 @@ void LoopingControl::slotBeatLoopDeactivateRoll(BeatLoopingControl* pBeatLoopCon // Make sure slip mode is not turned off if it was turned on // by something that was not a rolling beatloop. - if (m_bLoopRollActive && m_activeLoopRolls.empty()) { + if (m_activeLoopRolls.empty()) { setLoopingEnabled(false); m_pSlipEnabled->set(0); m_bLoopRollActive = false; - } - - // Return to the previous beatlooproll if necessary. - // Else previous regular beatloop if no rolling loops are active. - if (!m_activeLoopRolls.empty()) { - slotBeatLoop(m_activeLoopRolls.top(), m_bLoopRollActive, true); - } else { restoreLoopInfo(); + } else { + // Return to the previous beatlooproll if necessary. + // Else previous regular beatloop if no rolling loops are active. + slotBeatLoop(m_activeLoopRolls.top(), m_bLoopRollActive, true); } } @@ -1694,14 +1700,25 @@ void LoopingControl::slotBeatLoopSizeChangeRequest(double beats) { } void LoopingControl::slotBeatLoopToggle(double pressed) { - if (pressed > 0) { - if (m_bLoopingEnabled) { + if (pressed <= 0) { + return; + } + + if (m_bLoopingEnabled) { + // If we're in a rolling loop, quit slip mode and adopt it as regular loop. + // Use case is to have a looproll button pressed, then press loop_activate + // and nothing should happen when releasing the looproll button. + if (m_bLoopRollActive) { + m_bLoopRollActive = false; + m_activeLoopRolls.clear(); + getEngineBuffer()->slipQuitAndAdopt(); + } else { // Deactivate the loop if we're already looping setLoopingEnabled(false); - } else { - // Create a loop at current position - slotBeatLoop(m_pCOBeatLoopSize->get()); } + } else { + // Create a loop at current position + slotBeatLoop(m_pCOBeatLoopSize->get()); } } @@ -1723,6 +1740,14 @@ void LoopingControl::slotBeatLoopRollActivate(double pressed) { m_bLoopRollActive = true; } } else { + if (!m_bLoopRollActive) { + // beatloop_activate was pressed while rolling and slotBeatLoopToggle() + // did already reset roll status (m_activeLoopRolls, m_bLoopRollActive) + // and EngineBuffer quit slip mode (but didn't seek). + // So nothing to do here, just leave the adopted loop active. + return; + } + setLoopingEnabled(false); // Make sure slip mode is not turned off if it was turned on // by something that was not a rolling beatloop. diff --git a/src/engine/enginebuffer.cpp b/src/engine/enginebuffer.cpp index 4b46c0dc4c3c..cb4f2ae4a1c1 100644 --- a/src/engine/enginebuffer.cpp +++ b/src/engine/enginebuffer.cpp @@ -92,6 +92,7 @@ EngineBuffer::EngineBuffer(const QString& group, m_iSeekPhaseQueued(0), m_iEnableSyncQueued(SYNC_REQUEST_NONE), m_iSyncModeQueued(static_cast(SyncMode::Invalid)), + m_slipQuitAndAdopt(0), m_bPlayAfterLoading(false), m_channelCount(mixxx::kEngineChannelOutputCount), m_pCrossfadeBuffer(SampleUtil::alloc( @@ -265,7 +266,8 @@ EngineBuffer::EngineBuffer(const QString& group, Qt::DirectConnection); m_pReadAheadManager = new ReadAheadManager(m_pReader, - m_pLoopingControl); + m_pLoopingControl, + m_pCueControl); m_pReadAheadManager->addRateControl(m_pRateControl); m_pKeylockEngine = new ControlProxy(kAppGroup, QStringLiteral("keylock_engine"), this); @@ -884,6 +886,11 @@ void EngineBuffer::slotKeylockEngineChanged(double dIndex) { } } +void EngineBuffer::slipQuitAndAdopt() { + m_slipQuitAndAdopt.storeRelease(1); + m_pSlipButton->set(0); +} + void EngineBuffer::processTrackLocked( CSAMPLE* pOutput, const std::size_t bufferSize, mixxx::audio::SampleRate sampleRate) { ScopedTimer t(QStringLiteral("EngineBuffer::process_pauselock")); @@ -1277,8 +1284,12 @@ void EngineBuffer::processSlip(std::size_t bufferSize) { m_slipPos = m_playPos; m_dSlipRate = m_rate_old; } else { - // TODO(owen) assuming that looping will get canceled properly - seekExact(m_slipPos.toNearestFrameBoundary()); + // If m_slipQuitAndAdopt is 1 we've already quit slip mode + // but we don't seek in that case. + if (m_slipQuitAndAdopt.fetchAndStoreAcquire(0) == 0) { + // TODO(owen) assuming that looping will get canceled properly + seekExact(m_slipPos.toNearestFrameBoundary()); + } m_slipPos = mixxx::audio::kStartFramePos; } } diff --git a/src/engine/enginebuffer.h b/src/engine/enginebuffer.h index 74b6c4155e79..65bd095bc134 100644 --- a/src/engine/enginebuffer.h +++ b/src/engine/enginebuffer.h @@ -90,6 +90,7 @@ class EngineBuffer : public EngineObject { RubberBandFiner = 2, #endif }; + Q_ENUM(KeylockEngine); // intended for iteration over the KeylockEngine enum constexpr static std::initializer_list kKeylockEngines = { @@ -115,6 +116,9 @@ class EngineBuffer : public EngineObject { mixxx::audio::ChannelCount getChannelCount() const { return m_channelCount; } + mixxx::audio::FramePos getPlayPos() const { + return m_playPos; + } bool getScratching() const; bool isReverse() const; /// Returns current bpm value (not thread-safe) @@ -240,6 +244,8 @@ class EngineBuffer : public EngineObject { void verifyPlay(); + void slipQuitAndAdopt(); + public slots: void slotControlPlayRequest(double); void slotControlPlayFromStart(double); @@ -471,6 +477,7 @@ class EngineBuffer : public EngineObject { ControlValueAtomic m_queuedSeek; bool m_previousBufferSeek = false; + QAtomicInt m_slipQuitAndAdopt; /// Indicates that no seek is queued static constexpr QueuedSeek kNoQueuedSeek = {mixxx::audio::kInvalidFramePos, SEEK_NONE}; /// indicates a clone seek on a bosition from another deck diff --git a/src/engine/readaheadmanager.cpp b/src/engine/readaheadmanager.cpp index 7a9a6b7c4c40..0838f6b036c5 100644 --- a/src/engine/readaheadmanager.cpp +++ b/src/engine/readaheadmanager.cpp @@ -1,6 +1,8 @@ #include "engine/readaheadmanager.h" +#include "audio/frame.h" #include "engine/cachingreader/cachingreader.h" +#include "engine/controls/cuecontrol.h" #include "engine/controls/loopingcontrol.h" #include "engine/controls/ratecontrol.h" #include "util/defs.h" @@ -8,6 +10,7 @@ ReadAheadManager::ReadAheadManager() : m_pLoopingControl(nullptr), + m_pCueControl(nullptr), m_pRateControl(nullptr), m_currentPosition(0), m_pReader(nullptr), @@ -18,8 +21,10 @@ ReadAheadManager::ReadAheadManager() } ReadAheadManager::ReadAheadManager(CachingReader* pReader, - LoopingControl* pLoopingControl) + LoopingControl* pLoopingControl, + CueControl* pCueControl) : m_pLoopingControl(pLoopingControl), + m_pCueControl(pCueControl), m_pRateControl(nullptr), m_currentPosition(0), m_pReader(pReader), @@ -27,6 +32,7 @@ ReadAheadManager::ReadAheadManager(CachingReader* pReader, m_cacheMissCount(0), m_cacheMissExpected(false) { DEBUG_ASSERT(m_pLoopingControl != nullptr); + DEBUG_ASSERT(m_pCueControl != nullptr); DEBUG_ASSERT(m_pReader != nullptr); } @@ -56,27 +62,73 @@ SINT ReadAheadManager::getNextSamples(double dRate, m_currentPosition, channelCount), &targetPosition); const double loop_trigger = loopTriggerPosition.toSamplePosMaybeInvalid(channelCount); - const double target = targetPosition.toSamplePosMaybeInvalid(channelCount); + double target = targetPosition.toSamplePosMaybeInvalid(channelCount); - SINT preloop_samples = 0; - double samplesToLoopTrigger = 0.0; + SINT preseek_samples = 0; + double samplesToSeekTrigger = 0.0; bool reachedTrigger = false; + // By default, we are reading as many sampler as requested SINT samples_from_reader = requested_samples; if (loop_trigger != kNoTrigger) { - samplesToLoopTrigger = in_reverse ? - m_currentPosition - loop_trigger : - loop_trigger - m_currentPosition; - if (samplesToLoopTrigger >= 0.0) { + samplesToSeekTrigger = in_reverse ? m_currentPosition - loop_trigger + : loop_trigger - m_currentPosition; + if (samplesToSeekTrigger >= 0.0) { // We can only read whole frames from the reader. // Use ceil here, to be sure to reach the loop trigger. - preloop_samples = SampleUtil::ceilPlayPosToFrameStart( - samplesToLoopTrigger, channelCount); + preseek_samples = SampleUtil::ceilPlayPosToFrameStart( + samplesToSeekTrigger, channelCount); // clamp requested samples from the caller to the loop trigger point - if (preloop_samples <= requested_samples) { + if (preseek_samples <= requested_samples) { reachedTrigger = true; - samples_from_reader = preloop_samples; + samples_from_reader = preseek_samples; + } + } + } + + mixxx::audio::FramePos jumpTargetPosition; + // A saved jump cue will only limit the amount we can read in one shot. + const mixxx::audio::FramePos jumpTriggerPosition = + m_pCueControl->nextTrigger(in_reverse, + mixxx::audio::FramePos::fromSamplePosMaybeInvalid( + m_currentPosition, channelCount), + &jumpTargetPosition, + static_cast(requested_samples / channelCount)); + double jump_trigger = jumpTriggerPosition.toSamplePosMaybeInvalid(channelCount); + + // If there is both a loop and saved jump that are armed, and they both + // cancel each other (Loop from A -> B, jump from A -> B), we no-op the jump + // to prevent an infinite silent play loop + if (jump_trigger != kNoTrigger && loop_trigger != kNoTrigger && + jumpTriggerPosition == targetPosition && + loopTriggerPosition == jumpTargetPosition) { + jump_trigger = kNoTrigger; + } + + SINT prejump_samples = 0; + double samplesToJumpTrigger = 0.0; + + if (jump_trigger != kNoTrigger) { + samplesToJumpTrigger = in_reverse ? m_currentPosition - jump_trigger + : jump_trigger - m_currentPosition; + if (samplesToJumpTrigger >= 0.0) { + // We can only read whole frames from the reader. + // Use ceil here, to be sure to reach the jump trigger. + prejump_samples = SampleUtil::ceilPlayPosToFrameStart( + samplesToJumpTrigger, channelCount); + // clamp requested samples from the caller to the jump trigger point + if (prejump_samples <= requested_samples) { + reachedTrigger = true; + // A loop end may be before the jump. If the jump is first, this + // should be our new target + if (loop_trigger == kNoTrigger || prejump_samples < preseek_samples) { + samples_from_reader = prejump_samples; + preseek_samples = prejump_samples; + samplesToSeekTrigger = samplesToJumpTrigger; + target = jumpTargetPosition.toSamplePosMaybeInvalid(channelCount); + targetPosition = jumpTargetPosition; + } } } } @@ -129,15 +181,18 @@ SINT ReadAheadManager::getNextSamples(double dRate, if (reachedTrigger) { DEBUG_ASSERT(target != kNoTrigger); if (m_pRateControl) { - m_pRateControl->notifyWrapAround(loopTriggerPosition, targetPosition); + m_pRateControl->notifyWrapAround(loopTriggerPosition.isValid() + ? loopTriggerPosition + : jumpTriggerPosition, + targetPosition); } // TODO probably also useful for hotcue_X_indicator in CueControl::updateIndicators() // Jump to other end of loop or track. m_currentPosition = target; - if (preloop_samples > 0) { + if (preseek_samples > 0) { // we are up to one frame ahead of the loop trigger - double overshoot = preloop_samples - samplesToLoopTrigger; + double overshoot = preseek_samples - samplesToSeekTrigger; // start the loop later accordingly to be sure the loop length is as desired // e.g. exactly one bar. m_currentPosition += overshoot; @@ -153,32 +208,32 @@ SINT ReadAheadManager::getNextSamples(double dRate, // Average preloop_samples = 2.2 } - // start reading before the loop start point, to crossfade these samples + // start reading before the loop start point or the saved jump, to crossfade these samples // with the samples we need to the loop end - int loop_read_position = SampleUtil::roundPlayPosToFrameStart( + int seek_read_position = SampleUtil::roundPlayPosToFrameStart( m_currentPosition + - (in_reverse ? preloop_samples : -preloop_samples), + (in_reverse ? preseek_samples : -preseek_samples), channelCount); int crossFadeStart = 0; int crossFadeSamples = samples_from_reader; - if (loop_read_position < 0) { + if (seek_read_position < 0) { // we start in the pre-role without suitable samples for crossfading - crossFadeStart = -loop_read_position; + crossFadeStart = -seek_read_position; crossFadeSamples -= crossFadeStart; } else { int trackSamples = static_cast( m_pLoopingControl->getTrackFrame().toSamplePos( channelCount)); - if (loop_read_position > trackSamples) { + if (seek_read_position > trackSamples) { // looping in reverse overlapping post-roll without samples - crossFadeStart = loop_read_position - trackSamples; + crossFadeStart = seek_read_position - trackSamples; crossFadeSamples -= crossFadeStart; } } if (crossFadeSamples > 0) { - const auto readResult = m_pReader->read(loop_read_position + + const auto readResult = m_pReader->read(seek_read_position + (in_reverse ? crossFadeStart : -crossFadeStart), crossFadeSamples, in_reverse, diff --git a/src/engine/readaheadmanager.h b/src/engine/readaheadmanager.h index 265a9b94044c..36db44263116 100644 --- a/src/engine/readaheadmanager.h +++ b/src/engine/readaheadmanager.h @@ -9,6 +9,7 @@ #include "util/types.h" class LoopingControl; +class CueControl; class RateControl; /// ReadAheadManager is a tool for keeping track of the engine's current position @@ -23,7 +24,9 @@ class RateControl; class ReadAheadManager { public: ReadAheadManager(); // Only for testing: ReadAheadManagerMock - ReadAheadManager(CachingReader* pReader, LoopingControl* pLoopingControl); + ReadAheadManager(CachingReader* reader, + LoopingControl* pLoopingControl, + CueControl* pCueControl); virtual ~ReadAheadManager(); /// Call this method to fill buffer with requested_samples out of the @@ -122,6 +125,7 @@ class ReadAheadManager { double virtualPlaypositionEndNonInclusive); LoopingControl* m_pLoopingControl; + CueControl* m_pCueControl; RateControl* m_pRateControl; std::list m_readAheadLog; double m_currentPosition; // In absolute samples diff --git a/src/engine/sidechain/enginerecord.cpp b/src/engine/sidechain/enginerecord.cpp index a60e982258ba..5eac865eb0fa 100644 --- a/src/engine/sidechain/enginerecord.cpp +++ b/src/engine/sidechain/enginerecord.cpp @@ -18,7 +18,8 @@ EngineRecord::EngineRecord(UserSettingsPointer pConfig) m_recordedDuration(0), m_iMetaDataLife(0), m_cueTrack(0), - m_bCueIsEnabled(false) { + m_bCueIsEnabled(false), + m_bCueUsesFileAnnotation(false) { m_pRecReady = new ControlProxy(RECORDING_PREF_KEY, "status", this); m_sampleRate = mixxx::audio::SampleRate::fromDouble(m_sampleRateControl.get()); } @@ -35,7 +36,10 @@ int EngineRecord::updateFromPreferences() { m_baAuthor = m_pConfig->getValueString(ConfigKey(RECORDING_PREF_KEY, "Author")); m_baAlbum = m_pConfig->getValueString(ConfigKey(RECORDING_PREF_KEY, "Album")); m_cueFileName = m_pConfig->getValueString(ConfigKey(RECORDING_PREF_KEY, "CuePath")); - m_bCueIsEnabled = m_pConfig->getValueString(ConfigKey(RECORDING_PREF_KEY, "CueEnabled")).toInt(); + m_bCueIsEnabled = m_pConfig->getValue( + ConfigKey(RECORDING_PREF_KEY, QStringLiteral("CueEnabled"))); + m_bCueUsesFileAnnotation = m_pConfig->getValue( + ConfigKey(RECORDING_PREF_KEY, QStringLiteral("cue_file_annotation_enabled"))); m_sampleRate = mixxx::audio::SampleRate::fromDouble(m_sampleRateControl.get()); // Delete m_pEncoder if it has been initialized (with maybe) different bitrate. @@ -239,16 +243,22 @@ void EngineRecord::writeCueLine() { ((m_frames / (m_sampleRate / 75))) % 75); - m_cueFile.write(QString(" TRACK %1 AUDIO\n") - .arg((double)m_cueTrack, 2, 'f', 0, '0') - .toUtf8()); + m_cueFile.write(QStringLiteral(" TRACK %1 AUDIO\n") + .arg((double)m_cueTrack, 2, 'f', 0, '0') + .toUtf8()); - m_cueFile.write(QString(" TITLE \"%1\"\n") - .arg(m_pCurrentTrack->getTitle()) - .toUtf8()); - m_cueFile.write(QString(" PERFORMER \"%1\"\n") - .arg(m_pCurrentTrack->getArtist()) - .toUtf8()); + m_cueFile.write(QStringLiteral(" TITLE \"%1\"\n") + .arg(m_pCurrentTrack->getTitle()) + .toUtf8()); + m_cueFile.write(QStringLiteral(" PERFORMER \"%1\"\n") + .arg(m_pCurrentTrack->getArtist()) + .toUtf8()); + + if (m_bCueUsesFileAnnotation) { + m_cueFile.write(QStringLiteral(" FILE \"%1\"\n") + .arg(m_pCurrentTrack->getLocation()) + .toUtf8()); + } // Woefully inaccurate (at the seconds level anyways). // We'd need a signal fired state tracker diff --git a/src/engine/sidechain/enginerecord.h b/src/engine/sidechain/enginerecord.h index 53e110cd854f..2c0e8b6c903e 100644 --- a/src/engine/sidechain/enginerecord.h +++ b/src/engine/sidechain/enginerecord.h @@ -85,4 +85,5 @@ class EngineRecord : public QObject, public EncoderCallback, public SideChainWor QString m_cueFileName; quint64 m_cueTrack; bool m_bCueIsEnabled; + bool m_bCueUsesFileAnnotation; }; diff --git a/src/engine/sidechain/shoutconnection.cpp b/src/engine/sidechain/shoutconnection.cpp index 167e4915fcf4..5cce4521a38c 100644 --- a/src/engine/sidechain/shoutconnection.cpp +++ b/src/engine/sidechain/shoutconnection.cpp @@ -1,6 +1,5 @@ #include "engine/sidechain/shoutconnection.h" -#include #include #include @@ -35,9 +34,6 @@ constexpr int kMaxNetworkCache = 491520; // 10 s mp3 @ 192 kbit/s // http://wiki.shoutcast.com/wiki/SHOUTcast_DNAS_Server_2 constexpr int kMaxShoutFailures = 3; -const QRegularExpression kArtistOrTitleRegex(QStringLiteral("\\$artist|\\$title")); -const QRegularExpression kArtistRegex(QStringLiteral("\\$artist")); - const mixxx::Logger kLogger("ShoutConnection"); } // namespace @@ -816,9 +812,7 @@ void ShoutConnection::updateMetaData() { // metadata being enabled, we want dynamic metadata changes if (!m_custom_metadata && (m_format_is_mp3 || m_format_is_aac || m_ogg_dynamic_update)) { if (m_pMetaData != nullptr) { - QString artist = m_pMetaData->getArtist(); - QString title = m_pMetaData->getTitle(); // shoutcast uses only "song" as field for "artist - title". // icecast2 supports separate fields for "artist" and "title", @@ -831,41 +825,24 @@ void ShoutConnection::updateMetaData() { // Also I do not know about icecast1. To be safe, i stick to the // old way for those use cases. if (!m_format_is_mp3 && m_protocol_is_icecast2) { - setFunctionCode(9); - insertMetaData("artist", encodeString(artist).constData()); - insertMetaData("title", encodeString(title).constData()); - } else { - // we are going to take the metadata format and replace all - // the references to $title and $artist by doing a single - // pass over the string - int replaceIndex = 0; - - // Make a copy so we don't overwrite the references only - // once per streaming session. - QString metadataFinal = m_metadataFormat; - do { - // find the next occurrence - replaceIndex = metadataFinal.indexOf( - kArtistOrTitleRegex, - replaceIndex); - - if (replaceIndex != -1) { - if (metadataFinal.indexOf( - kArtistRegex, replaceIndex) == replaceIndex) { - metadataFinal.replace(replaceIndex, 7, artist); - // skip to the end of the replacement - replaceIndex += artist.length(); - } else { - metadataFinal.replace(replaceIndex, 6, title); - replaceIndex += title.length(); - } - } - } while (replaceIndex != -1); - - QByteArray baSong = encodeString(metadataFinal); - setFunctionCode(10); - insertMetaData("song", baSong.constData()); + setFunctionCode(9); + insertMetaData("artist", encodeString(artist).constData()); } + + // Make a copy so we don't overwrite the references only + // once per streaming session. + QString metadataFinal = m_metadataFormat; + + metadataFinal.replace("$artist", artist); + metadataFinal.replace("$title", m_pMetaData->getTitle()); + metadataFinal.replace("$year", m_pMetaData->getYear()); + metadataFinal.replace("$album", m_pMetaData->getAlbum()); + metadataFinal.replace("$genre", m_pMetaData->getGenre()); + metadataFinal.replace("$bpm", QString::number(m_pMetaData->getBpm())); + + QByteArray baSong = encodeString(metadataFinal); + setFunctionCode(10); + insertMetaData("song", baSong.constData()); setFunctionCode(11); int ret = shout_set_metadata(m_pShout, m_pShoutMetaData); if (ret != SHOUTERR_SUCCESS) { diff --git a/src/library/autodj/autodjfeature.cpp b/src/library/autodj/autodjfeature.cpp index a004dfa7f44c..03d745ef5490 100644 --- a/src/library/autodj/autodjfeature.cpp +++ b/src/library/autodj/autodjfeature.cpp @@ -22,12 +22,6 @@ #include "widget/wlibrary.h" #include "widget/wlibrarysidebar.h" -namespace { - -const QString kViewName = QStringLiteral("Auto DJ"); - -} // namespace - namespace { constexpr int kMaxRetrieveAttempts = 3; @@ -55,6 +49,7 @@ AutoDJFeature::AutoDJFeature(Library* pLibrary, m_pAutoDJProcessor(nullptr), m_pSidebarModel(make_parented(this)), m_pAutoDJView(nullptr), + m_viewName(Library::kAutoDJViewName), m_autoDjCratesDao(m_iAutoDJPlaylistId, pLibrary->trackCollectionManager(), m_pConfig) { qRegisterMetaType("AutoDJState"); m_pAutoDJProcessor = new AutoDJProcessor(this, @@ -152,7 +147,7 @@ void AutoDJFeature::bindLibraryWidget( m_pLibrary, m_pAutoDJProcessor, keyboard); - libraryWidget->registerView(kViewName, m_pAutoDJView); + libraryWidget->registerView(m_viewName, m_pAutoDJView); connect(m_pAutoDJView, &DlgAutoDJ::loadTrack, this, @@ -196,7 +191,7 @@ TreeItemModel* AutoDJFeature::sidebarModel() const { void AutoDJFeature::activate() { //qDebug() << "AutoDJFeature::activate()"; - emit switchToView(kViewName); + emit switchToView(m_viewName); emit disableSearch(); emit enableCoverArtDisplay(true); } diff --git a/src/library/autodj/autodjfeature.h b/src/library/autodj/autodjfeature.h index f17f44785039..53edd691426b 100644 --- a/src/library/autodj/autodjfeature.h +++ b/src/library/autodj/autodjfeature.h @@ -65,6 +65,7 @@ class AutoDJFeature : public LibraryFeature { AutoDJProcessor* m_pAutoDJProcessor; parented_ptr m_pSidebarModel; DlgAutoDJ* m_pAutoDJView; + const QString m_viewName; // Initialize the list of crates loaded into the auto-DJ queue. void constructCrateChildModel(); diff --git a/src/library/browse/browsetablemodel.cpp b/src/library/browse/browsetablemodel.cpp index dfd259448205..06b98574e78d 100644 --- a/src/library/browse/browsetablemodel.cpp +++ b/src/library/browse/browsetablemodel.cpp @@ -219,7 +219,9 @@ TrackPointer BrowseTableModel::getTrack(const QModelIndex& index) const { } TrackPointer BrowseTableModel::getTrackByRef(const TrackRef& trackRef) const { - if (m_pRecordingManager->getRecordingLocation() == trackRef.getLocation()) { + if (m_pRecordingManager && + m_pRecordingManager->getRecordingLocation() == + trackRef.getLocation()) { QMessageBox::critical(nullptr, tr("Mixxx Library"), tr("Could not load the following file because it is in use by " diff --git a/src/library/dao/playlistdao.cpp b/src/library/dao/playlistdao.cpp index c5270cc8422c..e86180a7e12f 100644 --- a/src/library/dao/playlistdao.cpp +++ b/src/library/dao/playlistdao.cpp @@ -1128,6 +1128,45 @@ int PlaylistDAO::tracksInPlaylist(const int playlistId) const { return count; } +void PlaylistDAO::orderTracksByCurrPos(const int playlistId, + QList>& newOrder) { + if (newOrder.isEmpty() || + playlistId == kInvalidPlaylistId || + isPlaylistLocked(playlistId) || + newOrder.size() != tracksInPlaylist(playlistId)) { + return; + } + + ScopedTransaction transaction(m_database); + QSqlQuery query(m_database); + query.prepare(QStringLiteral( + "UPDATE PlaylistTracks " + "SET position=:new_pos " + "WHERE position=:old_pos AND " + "track_id=:track_id AND " + "playlist_id=:pl_id")); + int newPos = 1; + for (auto [trackId, oldPos] : newOrder) { + VERIFY_OR_DEBUG_ASSERT(trackId.isValid()) { + return; + } + query.bindValue(":new_pos", newPos++); + query.bindValue(":old_pos", oldPos); + query.bindValue(":track_id", trackId.toVariant()); + query.bindValue(":pl_id", playlistId); + if (!query.exec()) { + // We temporarily have duplicate positions, so abort the entire operation + // to not leave the playlist with an invalid state. + LOG_FAILED_QUERY(query); + return; + } + } + + transaction.commit(); + + emit tracksMoved(QSet{playlistId}); +} + void PlaylistDAO::moveTrack(const int playlistId, const int oldPosition, const int newPosition) { ScopedTransaction transaction(m_database); QSqlQuery query(m_database); diff --git a/src/library/dao/playlistdao.h b/src/library/dao/playlistdao.h index f963cb03a806..9d95a80d5cbe 100644 --- a/src/library/dao/playlistdao.h +++ b/src/library/dao/playlistdao.h @@ -111,6 +111,10 @@ class PlaylistDAO : public QObject, public virtual DAO { bool copyPlaylistTracks(const int sourcePlaylistID, const int targetPlaylistID); // Returns the number of tracks in the given playlist. int tracksInPlaylist(const int playlistId) const; + // This receives a track list that represents the current order (sorted by BPM for example) + // and adopts this order for `position` in the playlist. + // Returns true on success. + void orderTracksByCurrPos(const int playlistId, QList>& newOrder); // moved Track to a new position void moveTrack(const int playlistId, const int oldPosition, const int newPosition); diff --git a/src/library/dlgtrackinfo.cpp b/src/library/dlgtrackinfo.cpp index 96389d5a7305..c1ddc55b983f 100644 --- a/src/library/dlgtrackinfo.cpp +++ b/src/library/dlgtrackinfo.cpp @@ -394,6 +394,13 @@ void DlgTrackInfo::replaceTrackRecord( mixxx::localDateTimeFromUtc( m_trackRecord.getDateAdded()))); + QFileInfo info(trackLocation); + if (info.exists() && info.isFile()) { + int size = info.size(); + QString sizeStr = QLocale().formattedDataSize(size); + txtFileSize->setText(sizeStr); + } + updateTrackMetadataFields(); } diff --git a/src/library/dlgtrackinfo.ui b/src/library/dlgtrackinfo.ui index 63f6f25524a4..959885d783ab 100644 --- a/src/library/dlgtrackinfo.ui +++ b/src/library/dlgtrackinfo.ui @@ -564,14 +564,14 @@ - + - Date added: + ReplayGain: - + 75 @@ -609,14 +609,38 @@ - + - ReplayGain: + Date added: - + + + + 75 + true + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + + Filesize: + + + + + 75 diff --git a/src/library/library.cpp b/src/library/library.cpp index e8161bf9dc62..cf86c4132186 100644 --- a/src/library/library.cpp +++ b/src/library/library.cpp @@ -51,7 +51,9 @@ using namespace mixxx::library::prefs; // This is the name which we use to register the WTrackTableView with the // WLibrary -const QString Library::m_sTrackViewName = QString("WTrackTableView"); +const QString Library::m_sTrackViewName = QStringLiteral("WTrackTableView"); + +const QString Library::kAutoDJViewName = QStringLiteral("Auto DJ"); // The default row height of the library. const int Library::kDefaultRowHeightPx = 20; @@ -70,15 +72,10 @@ Library::Library( m_pSidebarModel(make_parented(this)), m_pLibraryControl(make_parented(this)), m_pLibraryWidget(nullptr), - m_pMixxxLibraryFeature(nullptr), - m_pPlaylistFeature(nullptr), - m_pCrateFeature(nullptr), - m_pAnalysisFeature(nullptr) { + m_pKeyNotation(std::make_unique( + mixxx::library::prefs::kKeyNotationConfigKey)) { qRegisterMetaType("LibraryRemovalType"); - m_pKeyNotation.reset( - new ControlObject(mixxx::library::prefs::kKeyNotationConfigKey)); - connect(m_pTrackCollectionManager, &TrackCollectionManager::libraryScanFinished, this, @@ -86,7 +83,7 @@ Library::Library( // TODO(rryan) -- turn this construction / adding of features into a static // method or something -- CreateDefaultLibrary - m_pMixxxLibraryFeature = new MixxxLibraryFeature( + m_pMixxxLibraryFeature = make_parented( this, m_pConfig); addFeature(m_pMixxxLibraryFeature); @@ -98,9 +95,10 @@ Library::Library( Qt::DirectConnection /* signal-to-signal */); #endif - addFeature(new AutoDJFeature(this, m_pConfig, pPlayerManager)); + m_pAutoDJFeature = make_parented(this, m_pConfig, pPlayerManager); + addFeature(m_pAutoDJFeature); - m_pPlaylistFeature = new PlaylistFeature(this, UserSettingsPointer(m_pConfig)); + m_pPlaylistFeature = make_parented(this, UserSettingsPointer(m_pConfig)); addFeature(m_pPlaylistFeature); #ifdef __ENGINEPRIME__ connect(m_pPlaylistFeature, @@ -115,7 +113,7 @@ Library::Library( Qt::DirectConnection); #endif - m_pCrateFeature = new CrateFeature(this, m_pConfig); + m_pCrateFeature = make_parented(this, m_pConfig); addFeature(m_pCrateFeature); #ifdef __ENGINEPRIME__ connect(m_pCrateFeature, @@ -130,7 +128,7 @@ Library::Library( Qt::DirectConnection); #endif - m_pBrowseFeature = new BrowseFeature( + m_pBrowseFeature = make_parented( this, m_pConfig, pRecordingManager); connect(m_pBrowseFeature, &BrowseFeature::scanLibrary, @@ -150,7 +148,7 @@ Library::Library( addFeature(new SetlogFeature(this, UserSettingsPointer(m_pConfig))); - m_pAnalysisFeature = new AnalysisFeature(this, m_pConfig); + m_pAnalysisFeature = make_parented(this, m_pConfig); connect(m_pPlaylistFeature, &PlaylistFeature::analyzeTracks, m_pAnalysisFeature, @@ -745,13 +743,34 @@ void Library::setEditMetadataSelectedClick(bool enabled) { emit setSelectedClick(enabled); } +void Library::slotSearchInCurrentView() { + m_pLibraryControl->setLibraryFocus(FocusWidget::Searchbar, Qt::ShortcutFocusReason); +} + +void Library::slotSearchInAllTracks() { + searchTracksInCollection(); +} + +void Library::searchTracksInCollection() { + VERIFY_OR_DEBUG_ASSERT(m_pMixxxLibraryFeature) { + return; + } + m_pMixxxLibraryFeature->selectAndActivate(); + m_pLibraryControl->setLibraryFocus(FocusWidget::Searchbar, Qt::ShortcutFocusReason); +} + void Library::searchTracksInCollection(const QString& query) { VERIFY_OR_DEBUG_ASSERT(m_pMixxxLibraryFeature) { return; } m_pMixxxLibraryFeature->searchAndActivate(query); - emit switchToView(m_sTrackViewName); - m_pSidebarModel->activateDefaultSelection(); +} + +void Library::showAutoDJ() { + m_pAutoDJFeature->activate(); + emit switchToView(kAutoDJViewName); + // Select it but don't scroll there + m_pSidebarModel->slotFeatureSelect(m_pAutoDJFeature, QModelIndex(), false); } #ifdef __ENGINEPRIME__ diff --git a/src/library/library.h b/src/library/library.h index 2598498da97a..5ca62117992f 100644 --- a/src/library/library.h +++ b/src/library/library.h @@ -16,6 +16,7 @@ #include "util/parented_ptr.h" class AnalysisFeature; +class AutoDJFeature; class BrowseFeature; class ControlObject; class CrateFeature; @@ -98,9 +99,16 @@ class Library: public QObject { void setRowHeight(int rowHeight); void setEditMetadataSelectedClick(bool enable); + /// Switches to the internal track collection view + /// and focuses the search box. + void searchTracksInCollection(); + /// Triggers a new search in the internal track collection /// and shows the results by switching the view. void searchTracksInCollection(const QString& query); + void showAutoDJ(); + + static const QString kAutoDJViewName; bool requestAddDir(const QString& directory); bool requestRemoveDir(const QString& directory, LibraryRemovalType removalType); @@ -126,6 +134,8 @@ class Library: public QObject { void slotRefreshLibraryModels(); void slotCreatePlaylist(); void slotCreateCrate(); + void slotSearchInCurrentView(); + void slotSearchInAllTracks(); void onSkinLoadFinished(); void slotSaveCurrentViewState() const; void slotRestoreCurrentViewState() const; @@ -184,15 +194,15 @@ class Library: public QObject { QList m_features; const static QString m_sTrackViewName; - const static QString m_sAutoDJViewName; WLibrary* m_pLibraryWidget; - MixxxLibraryFeature* m_pMixxxLibraryFeature; - PlaylistFeature* m_pPlaylistFeature; - CrateFeature* m_pCrateFeature; - AnalysisFeature* m_pAnalysisFeature; - BrowseFeature* m_pBrowseFeature; + parented_ptr m_pMixxxLibraryFeature; + parented_ptr m_pAutoDJFeature; + parented_ptr m_pPlaylistFeature; + parented_ptr m_pCrateFeature; + parented_ptr m_pBrowseFeature; + parented_ptr m_pAnalysisFeature; QFont m_trackTableFont; int m_iTrackTableRowHeight; bool m_editMetadataSelectedClick; - QScopedPointer m_pKeyNotation; + std::unique_ptr m_pKeyNotation; }; diff --git a/src/library/librarycontrol.cpp b/src/library/librarycontrol.cpp index 6f0f9d70e95d..8fa7b60cae3b 100644 --- a/src/library/librarycontrol.cpp +++ b/src/library/librarycontrol.cpp @@ -956,15 +956,11 @@ FocusWidget LibraryControl::getFocusedWidget() { } } -void LibraryControl::setLibraryFocus(FocusWidget newFocusWidget) { - if (!QApplication::focusWindow()) { - qInfo() << "No Mixxx window, popup or menu has focus." - << "Don't attempt to focus a specific widget."; - return; - } - - // ignore no-op - if (newFocusWidget == m_focusedWidget) { +void LibraryControl::setLibraryFocus(FocusWidget newFocusWidget, Qt::FocusReason focusReason) { + // The search box wants to do special handling when the Ctrl+f is used + // while it is already focused. Non-shortcut cases should still be a + // no-op when a control is already focused. + if (newFocusWidget == m_focusedWidget && focusReason != Qt::ShortcutFocusReason) { return; } @@ -973,13 +969,13 @@ void LibraryControl::setLibraryFocus(FocusWidget newFocusWidget) { VERIFY_OR_DEBUG_ASSERT(m_pSearchbox) { return; } - m_pSearchbox->setFocus(); + m_pSearchbox->setFocus(focusReason); return; case FocusWidget::Sidebar: VERIFY_OR_DEBUG_ASSERT(m_pSidebarWidget) { return; } - m_pSidebarWidget->setFocus(); + m_pSidebarWidget->setFocus(focusReason); return; case FocusWidget::TracksTable: VERIFY_OR_DEBUG_ASSERT(m_pLibraryWidget) { diff --git a/src/library/librarycontrol.h b/src/library/librarycontrol.h index 2511cb0db3a6..ecf6e1370bc9 100644 --- a/src/library/librarycontrol.h +++ b/src/library/librarycontrol.h @@ -58,8 +58,9 @@ class LibraryControl : public QObject { void bindLibraryWidget(WLibrary* pLibrary, KeyboardEventFilter* pKeyboard); void bindSidebarWidget(WLibrarySidebar* pLibrarySidebar); void bindSearchboxWidget(WSearchLineEdit* pSearchbox); - // Give the keyboard focus to one of the library widgets - void setLibraryFocus(FocusWidget newFocusWidget); + /// Give the keyboard focus to one of the library widgets + void setLibraryFocus(FocusWidget newFocusWidget, + Qt::FocusReason focusReason = Qt::OtherFocusReason); FocusWidget getFocusedWidget(); signals: diff --git a/src/library/libraryfeature.cpp b/src/library/libraryfeature.cpp index 51ad6ae3fac6..7c88fbf93bdc 100644 --- a/src/library/libraryfeature.cpp +++ b/src/library/libraryfeature.cpp @@ -32,6 +32,17 @@ LibraryFeature::LibraryFeature( } } +void LibraryFeature::selectAndActivate(const QModelIndex& index) { + if (index.isValid()) { + emit featureSelect(this, index); + activateChild(index); + } else { + // calling featureSelect with invalid index will select the root item + emit featureSelect(this, QModelIndex()); + activate(); + } +} + QStringList LibraryFeature::getPlaylistFiles(QFileDialog::FileMode mode) const { QString lastPlaylistDirectory = m_pConfig->getValue( ConfigKey("[Library]", "LastImportExportPlaylistDirectory"), diff --git a/src/library/libraryfeature.h b/src/library/libraryfeature.h index 9a91e748ddda..cfef22ea0569 100644 --- a/src/library/libraryfeature.h +++ b/src/library/libraryfeature.h @@ -106,6 +106,10 @@ class LibraryFeature : public QObject { const UserSettingsPointer m_pConfig; public slots: + /// Pretend that the user has clicked on a tree item belonging + /// to this LibraryFeature by updating both the library view + /// and the sidebar selection. + void selectAndActivate(const QModelIndex& index = QModelIndex()); // called when you single click on the root item virtual void activate() = 0; // called when you single click on a child item, e.g., a concrete playlist or crate @@ -161,7 +165,7 @@ class LibraryFeature : public QObject { // emit this signal if the foreign music collection has been imported/parsed. void featureLoadingFinished(LibraryFeature*s); // emit this signal to select pFeature - void featureSelect(LibraryFeature* pFeature, const QModelIndex& index); + void featureSelect(LibraryFeature* pFeature, const QModelIndex& index, bool scrollTo = true); // emit this signal to enable/disable the cover art widget void enableCoverArtDisplay(bool); void trackSelected(TrackPointer pTrack); diff --git a/src/library/librarytablemodel.cpp b/src/library/librarytablemodel.cpp index 4c8746801c0b..1613dd127899 100644 --- a/src/library/librarytablemodel.cpp +++ b/src/library/librarytablemodel.cpp @@ -102,3 +102,8 @@ TrackModel::Capabilities LibraryTableModel::getCapabilities() const { Capability::Properties | Capability::Sorting; } + +void LibraryTableModel::select() { + BaseSqlTableModel::select(); + emit updateTrackCount(); +} diff --git a/src/library/librarytablemodel.h b/src/library/librarytablemodel.h index b5a6c359cbad..299e4f42de06 100644 --- a/src/library/librarytablemodel.h +++ b/src/library/librarytablemodel.h @@ -16,4 +16,9 @@ class LibraryTableModel : public BaseSqlTableModel { // number of successful additions. int addTracks(const QModelIndex& index, const QList& locations) final; TrackModel::Capabilities getCapabilities() const final; + + void select() override; + + signals: + void updateTrackCount(); }; diff --git a/src/library/mixxxlibraryfeature.cpp b/src/library/mixxxlibraryfeature.cpp index 27e6972155ff..3bca6c2b6a6c 100644 --- a/src/library/mixxxlibraryfeature.cpp +++ b/src/library/mixxxlibraryfeature.cpp @@ -32,7 +32,8 @@ MixxxLibraryFeature::MixxxLibraryFeature(Library* pLibrary, m_pLibraryTableModel(nullptr), m_pSidebarModel(make_parented(this)), m_pMissingView(nullptr), - m_pHiddenView(nullptr) { + m_pHiddenView(nullptr), + m_trackCount{0} { QString idColumn = LIBRARYTABLE_ID; QStringList columns = { LIBRARYTABLE_ID, @@ -115,6 +116,11 @@ MixxxLibraryFeature::MixxxLibraryFeature(Library* pLibrary, pLibrary->trackCollectionManager(), "mixxx.db.model.library"); + connect(m_pLibraryTableModel, + &LibraryTableModel::updateTrackCount, + this, + &MixxxLibraryFeature::slotUpdateTrackCount); + std::unique_ptr pRootItem = TreeItem::newRoot(this); pRootItem->appendChild(kMissingTitle); pRootItem->appendChild(kHiddenTitle); @@ -150,7 +156,8 @@ void MixxxLibraryFeature::bindLibraryWidget(WLibrary* pLibraryWidget, } QVariant MixxxLibraryFeature::title() { - return tr("Tracks"); + const QString title = tr("Tracks") + QStringLiteral(" (%1)").arg(m_trackCount); + return title; } TreeItemModel* MixxxLibraryFeature::sidebarModel() const { @@ -174,7 +181,7 @@ void MixxxLibraryFeature::searchAndActivate(const QString& query) { return; } m_pLibraryTableModel->search(query); - activate(); + selectAndActivate(); } #ifdef __ENGINEPRIME__ @@ -184,6 +191,14 @@ void MixxxLibraryFeature::bindSidebarWidget(WLibrarySidebar* pSidebarWidget) { } #endif +void MixxxLibraryFeature::slotUpdateTrackCount() { + m_trackCount = m_pLibraryTableModel->rowCount(); + + // Force updating the Tracks sidebar item. + // `select` must be false as we don't want to select again + emit featureIsLoading(this, false); +} + void MixxxLibraryFeature::activate() { //qDebug() << "MixxxLibraryFeature::activate()"; emit saveModelState(); diff --git a/src/library/mixxxlibraryfeature.h b/src/library/mixxxlibraryfeature.h index 50eb06258a7c..69f4da83fefe 100644 --- a/src/library/mixxxlibraryfeature.h +++ b/src/library/mixxxlibraryfeature.h @@ -50,6 +50,7 @@ class MixxxLibraryFeature final : public LibraryFeature { public slots: void activate() override; void activateChild(const QModelIndex& index) override; + void slotUpdateTrackCount(); #ifdef __ENGINEPRIME__ void onRightClick(const QPoint& globalPos) override; #endif @@ -74,6 +75,8 @@ class MixxxLibraryFeature final : public LibraryFeature { DlgMissing* m_pMissingView; DlgHidden* m_pHiddenView; + int m_trackCount; + #ifdef __ENGINEPRIME__ parented_ptr m_pExportLibraryAction; diff --git a/src/library/playlisttablemodel.cpp b/src/library/playlisttablemodel.cpp index 82390359174d..ffdc7b49147c 100644 --- a/src/library/playlisttablemodel.cpp +++ b/src/library/playlisttablemodel.cpp @@ -319,7 +319,7 @@ void PlaylistTableModel::shuffleTracks(const QModelIndexList& shuffle, const QMo int numOfTracks = rowCount(); if (shuffle.count() > 1) { // if there is more then one track selected, shuffle selection only - foreach (QModelIndex shuffleIndex, shuffle) { + for (const QModelIndex& shuffleIndex : std::as_const(shuffle)) { int oldPosition = shuffleIndex.sibling(shuffleIndex.row(), positionColumn).data().toInt(); if (oldPosition != excludePos) { positions.append(oldPosition); @@ -343,6 +343,23 @@ void PlaylistTableModel::shuffleTracks(const QModelIndexList& shuffle, const QMo m_pTrackCollectionManager->internalCollection()->getPlaylistDAO().shuffleTracks(m_iPlaylistId, positions, allIds); } +void PlaylistTableModel::orderTracksByCurrPos() { + QList> idPosList; + int numOfTracks = rowCount(); + idPosList.reserve(numOfTracks); + const int positionColumn = fieldIndex(ColumnCache::COLUMN_PLAYLISTTRACKSTABLE_POSITION); + const int idColumn = fieldIndex(ColumnCache::COLUMN_LIBRARYTABLE_ID); + // Set up list of all IDs + for (int i = 0; i < numOfTracks; i++) { + TrackId trackId(index(i, idColumn).data()); + int oldPosition = index(i, positionColumn).data().toInt(); + idPosList.append(std::make_pair(trackId, oldPosition)); + } + m_pTrackCollectionManager->internalCollection() + ->getPlaylistDAO() + .orderTracksByCurrPos(m_iPlaylistId, idPosList); +} + const QList PlaylistTableModel::getSelectedPositions(const QModelIndexList& indices) const { if (indices.isEmpty()) { return {}; diff --git a/src/library/playlisttablemodel.h b/src/library/playlisttablemodel.h index cbdc930f6459..d8b98b5fa022 100644 --- a/src/library/playlisttablemodel.h +++ b/src/library/playlisttablemodel.h @@ -21,7 +21,9 @@ class PlaylistTableModel final : public TrackSetTableModel { bool appendTrack(TrackId trackId); void moveTrack(const QModelIndex& sourceIndex, const QModelIndex& destIndex) override; void removeTrack(const QModelIndex& index); - void shuffleTracks(const QModelIndexList& shuffle, const QModelIndex& exclude); + void shuffleTracks(const QModelIndexList& shuffle = QModelIndexList(), + const QModelIndex& exclude = QModelIndex()); + void orderTracksByCurrPos(); bool isColumnInternal(int column) final; bool isColumnHiddenByDefault(int column) final; diff --git a/src/library/sidebarmodel.cpp b/src/library/sidebarmodel.cpp index 2a43430a6913..d12e4b6d5d71 100644 --- a/src/library/sidebarmodel.cpp +++ b/src/library/sidebarmodel.cpp @@ -96,7 +96,7 @@ void SidebarModel::setDefaultSelection(unsigned int index) { void SidebarModel::activateDefaultSelection() { if (m_iDefaultSelectedIndex < static_cast(m_sFeatures.size())) { - emit selectIndex(getDefaultSelection()); + emit selectIndex(getDefaultSelection(), true /* scrollTo */); // Selecting an index does not activate it. m_sFeatures[m_iDefaultSelectedIndex]->activate(); } @@ -593,7 +593,9 @@ void SidebarModel::featureRenamed(LibraryFeature* pFeature) { } } -void SidebarModel::slotFeatureSelect(LibraryFeature* pFeature, const QModelIndex& featureIndex) { +void SidebarModel::slotFeatureSelect(LibraryFeature* pFeature, + const QModelIndex& featureIndex, + bool scrollTo) { QModelIndex ind; if (featureIndex.isValid()) { TreeItem* pTreeItem = static_cast(featureIndex.internalPointer()); @@ -606,5 +608,5 @@ void SidebarModel::slotFeatureSelect(LibraryFeature* pFeature, const QModelIndex } } } - emit selectIndex(ind); + emit selectIndex(ind, scrollTo); } diff --git a/src/library/sidebarmodel.h b/src/library/sidebarmodel.h index 60bd28c3029c..f5a36d2c50ae 100644 --- a/src/library/sidebarmodel.h +++ b/src/library/sidebarmodel.h @@ -56,7 +56,9 @@ class SidebarModel : public QAbstractItemModel { void rightClicked(const QPoint& globalPos, const QModelIndex& index); void renameItem(const QModelIndex& index); void deleteItem(const QModelIndex& index); - void slotFeatureSelect(LibraryFeature* pFeature, const QModelIndex& index = QModelIndex()); + void slotFeatureSelect(LibraryFeature* pFeature, + const QModelIndex& index = QModelIndex(), + bool scrollTo = true); // Slots for every single QAbstractItemModel signal // void slotColumnsAboutToBeInserted(const QModelIndex& parent, int start, int end); @@ -79,16 +81,18 @@ class SidebarModel : public QAbstractItemModel { void slotFeatureLoadingFinished(LibraryFeature*); signals: - void selectIndex(const QModelIndex& index); + void selectIndex(const QModelIndex& index, bool scrollTo); private slots: void slotPressedUntilClickedTimeout(); + protected: + QList m_sFeatures; + private: QModelIndex translateSourceIndex(const QModelIndex& parent); QModelIndex translateIndex(const QModelIndex& index, const QAbstractItemModel* model); void featureRenamed(LibraryFeature*); - QList m_sFeatures; unsigned int m_iDefaultSelectedIndex; /** Index of the item in the sidebar model to select at startup. */ QTimer* const m_pressedUntilClickedTimer; diff --git a/src/library/trackset/playlistfeature.cpp b/src/library/trackset/playlistfeature.cpp index c21dc2b88260..1173f7152d58 100644 --- a/src/library/trackset/playlistfeature.cpp +++ b/src/library/trackset/playlistfeature.cpp @@ -39,6 +39,12 @@ PlaylistFeature::PlaylistFeature(Library* pLibrary, UserSettingsPointer pConfig) this, &PlaylistFeature::slotShufflePlaylist); + m_pOrderByCurrentPosAction = make_parented(tr("Adopt current order"), this); + connect(m_pOrderByCurrentPosAction, + &QAction::triggered, + this, + &PlaylistFeature::slotOrderTracksByCurrentPosition); + m_pUnlockPlaylistsAction = make_parented(tr("Unlock all playlists"), this); connect(m_pUnlockPlaylistsAction, @@ -81,6 +87,8 @@ void PlaylistFeature::onRightClickChild( int playlistId = playlistIdFromIndex(index); bool locked = m_playlistDao.isPlaylistLocked(playlistId); + m_pShufflePlaylistAction->setEnabled(!locked); + m_pOrderByCurrentPosAction->setEnabled(!locked && isChildIndexSelectedInSidebar(index)); m_pDeletePlaylistAction->setEnabled(!locked); m_pRenamePlaylistAction->setEnabled(!locked); m_pShufflePlaylistAction->setEnabled(!locked); @@ -94,6 +102,7 @@ void PlaylistFeature::onRightClickChild( // TODO If playlist is selected and has more than one track selected // show "Shuffle selected tracks", else show "Shuffle playlist"? menu.addAction(m_pShufflePlaylistAction); + menu.addAction(m_pOrderByCurrentPosAction); menu.addSeparator(); menu.addAction(m_pRenamePlaylistAction); menu.addAction(m_pDuplicatePlaylistAction); @@ -230,9 +239,9 @@ void PlaylistFeature::slotShufflePlaylist() { // Shuffle all tracks // If the playlist is loaded/visible shuffle only selected tracks - QModelIndexList selection; if (isChildIndexSelectedInSidebar(m_lastRightClickedIndex) && m_pPlaylistTableModel->getPlaylist() == playlistId) { + QModelIndexList selection; if (m_pLibraryWidget) { WTrackTableView* view = dynamic_cast( m_pLibraryWidget->getActiveView()); @@ -240,7 +249,7 @@ void PlaylistFeature::slotShufflePlaylist() { selection = view->selectionModel()->selectedIndexes(); } } - m_pPlaylistTableModel->shuffleTracks(selection, QModelIndex()); + m_pPlaylistTableModel->shuffleTracks(selection); } else { // Create a temp model so we don't need to select the playlist // in the persistent model in order to shuffle it @@ -255,8 +264,27 @@ void PlaylistFeature::slotShufflePlaylist() { Qt::AscendingOrder); pPlaylistTableModel->select(); - pPlaylistTableModel->shuffleTracks(selection, QModelIndex()); + pPlaylistTableModel->shuffleTracks(); + } +} + +void PlaylistFeature::slotOrderTracksByCurrentPosition() { + int playlistId = playlistIdFromIndex(m_lastRightClickedIndex); + if (playlistId == kInvalidPlaylistId) { + return; + } + + if (m_playlistDao.isPlaylistLocked(playlistId)) { + qDebug() << "Can't adopt current sorting for locked playlist" << playlistId + << m_playlistDao.getPlaylistName(playlistId); + return; + } + // Note(ronso0) I propose to proceed only if the playlist is selected and loaded. + // without playlist content visible we don't have a preview. + if (!isChildIndexSelectedInSidebar(m_lastRightClickedIndex)) { + return; } + m_pPlaylistTableModel->orderTracksByCurrPos(); } void PlaylistFeature::slotUnlockAllPlaylists() { @@ -374,8 +402,7 @@ void PlaylistFeature::slotPlaylistTableChanged(int playlistId) { // Else (root item was selected or for some reason no index could be created) // there's nothing to do: either no child was selected earlier, or the root // was selected and will remain selected after the child model was rebuilt. - activateChild(newIndex); - emit featureSelect(this, newIndex); + selectAndActivate(newIndex); } } diff --git a/src/library/trackset/playlistfeature.h b/src/library/trackset/playlistfeature.h index 132dab1898c3..14d57097b17d 100644 --- a/src/library/trackset/playlistfeature.h +++ b/src/library/trackset/playlistfeature.h @@ -37,6 +37,7 @@ class PlaylistFeature : public BasePlaylistFeature { void slotPlaylistContentOrLockChanged(const QSet& playlistIds) override; void slotPlaylistTableRenamed(int playlistId, const QString& newName) override; void slotShufflePlaylist(); + void slotOrderTracksByCurrentPosition(); void slotUnlockAllPlaylists(); void slotDeleteAllUnlockedPlaylists(); @@ -49,6 +50,7 @@ class PlaylistFeature : public BasePlaylistFeature { QString getRootViewHtml() const override; parented_ptr m_pShufflePlaylistAction; + parented_ptr m_pOrderByCurrentPosAction; parented_ptr m_pUnlockPlaylistsAction; parented_ptr m_pDeleteAllUnlockedPlaylistsAction; }; diff --git a/src/library/trackset/setlogfeature.cpp b/src/library/trackset/setlogfeature.cpp index 093ff3703eb3..1f3582ad8f63 100644 --- a/src/library/trackset/setlogfeature.cpp +++ b/src/library/trackset/setlogfeature.cpp @@ -712,13 +712,8 @@ void SetlogFeature::slotPlaylistTableChanged(int playlistId) { newIndex = m_pSidebarModel->index(selectedYearIndexRow - 1, 0); } } - if (newIndex.isValid()) { - emit featureSelect(this, newIndex); - activateChild(newIndex); - } else if (rootWasSelected) { - // calling featureSelect with invalid index will select the root item - emit featureSelect(this, newIndex); - activate(); // to reload the new current playlist + if (newIndex.isValid() || rootWasSelected) { + selectAndActivate(newIndex); } } diff --git a/src/library/treeitemmodel.h b/src/library/treeitemmodel.h index 3972e3889cf4..142d635e2822 100644 --- a/src/library/treeitemmodel.h +++ b/src/library/treeitemmodel.h @@ -13,7 +13,7 @@ class TreeItemModel : public QAbstractItemModel { static const int kDataRole = Qt::UserRole; static const int kBoldRole = Qt::UserRole + 1; - explicit TreeItemModel(QObject *parent = 0); + explicit TreeItemModel(QObject* parent = nullptr); ~TreeItemModel() override; QVariant data(const QModelIndex &index, int role) const override; diff --git a/src/main.cpp b/src/main.cpp index acb15b80e57f..f7741c98882f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -62,6 +62,11 @@ int runMixxx(MixxxApplication* pApp, const CmdlineArgs& args) { int exitCode; #ifdef MIXXX_USE_QML if (args.isQml()) { + // This is a workaround to support Qt 6.4.2, currently shipped on + // Ubuntu 24.04 See + // https://github.com/mixxxdj/mixxx/pull/14514#issuecomment-2770811094 + // for further details + qputenv("QT_QUICK_TABLEVIEW_COMPAT_VERSION", "6.4"); mixxx::qml::QmlApplication qmlApplication(pApp, args); exitCode = pApp->exec(); } else @@ -93,6 +98,11 @@ int runMixxx(MixxxApplication* pApp, const CmdlineArgs& args) { pCoreServices->initialize(pApp); + if (pCoreServices->getSettings()->getValue( + ConfigKey("[Config]", "did_run_with_unstable"), false)) { + qInfo() << "User previously ran the unstable version on this profile"; + } + #ifdef MIXXX_USE_QOPENGL // Will call initialize when the initial wglwidget's // qopenglwindow has been exposed diff --git a/src/mixxxmainwindow.cpp b/src/mixxxmainwindow.cpp index 21a31fd1c151..84fb4c245d6a 100644 --- a/src/mixxxmainwindow.cpp +++ b/src/mixxxmainwindow.cpp @@ -11,7 +11,7 @@ #include #endif -#ifdef __LINUX__ +#if defined(__LINUX__) && !defined(__ANDROID__) #include #include #endif @@ -446,6 +446,12 @@ void MixxxMainWindow::initialize() { if (CmdlineArgs::Instance().getStartAutoDJ()) { qDebug("Enabling Auto DJ from CLI flag."); ControlObject::set(ConfigKey("[AutoDJ]", "enabled"), 1.0); + // Switch to Auto DJ feature + auto* pLibrary = m_pCoreServices->getLibrary().get(); + // Note: auto-scroll is disabled but that doesn't really matter here + // because the sidebar is still in its initial state (top feature visible, + // AutoDj is second from the top by default, all features collapsed). + pLibrary->showAutoDJ(); } } @@ -960,6 +966,16 @@ void MixxxMainWindow::connectMenuBar() { } if (m_pCoreServices->getLibrary()) { + connect(m_pMenuBar, + &WMainMenuBar::searchInCurrentView, + m_pCoreServices->getLibrary().get(), + &Library::slotSearchInCurrentView, + Qt::UniqueConnection); + connect(m_pMenuBar, + &WMainMenuBar::searchInAllTracks, + m_pCoreServices->getLibrary().get(), + &Library::slotSearchInAllTracks, + Qt::UniqueConnection); connect(m_pMenuBar, &WMainMenuBar::createCrate, m_pCoreServices->getLibrary().get(), @@ -970,6 +986,11 @@ void MixxxMainWindow::connectMenuBar() { m_pCoreServices->getLibrary().get(), &Library::slotCreatePlaylist, Qt::UniqueConnection); + connect(m_pMenuBar, + &WMainMenuBar::showAutoDJ, + m_pCoreServices->getLibrary().get(), + &Library::showAutoDJ, + Qt::UniqueConnection); } #ifdef __ENGINEPRIME__ @@ -1385,28 +1406,38 @@ void MixxxMainWindow::tryParseAndSetDefaultStyleSheet() { /// Catch ToolTip and WindowStateChange events bool MixxxMainWindow::eventFilter(QObject* obj, QEvent* event) { - // Always show tooltips if Ctrl is held down - if (event->type() == QEvent::ToolTip && - !QApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) { + if (event->type() == QEvent::ToolTip) { + // Always show tooltips if Ctrl is held down + if (QApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) { + return QMainWindow::eventFilter(obj, event); + } + // Always show tooltips for cue type buttons in the Cue menu + if (QLatin1String(obj->metaObject()->className()) == "CueMenuPushButton") { + return QMainWindow::eventFilter(obj, event); + } + // Always show tooltips in Preferences QWidget* activeWindow = QApplication::activeWindow(); if (activeWindow && - QLatin1String(activeWindow->metaObject()->className()) != + QLatin1String(activeWindow->metaObject()->className()) == "DlgPreferences") { - // return true for no tool tips - switch (m_toolTipsCfg) { - case mixxx::preferences::Tooltips::OnlyInLibrary: - if (dynamic_cast(obj) != nullptr) { - return true; - } - break; - case mixxx::preferences::Tooltips::On: - break; - case mixxx::preferences::Tooltips::Off: - return true; - default: - DEBUG_ASSERT(!"m_toolTipsCfg value unknown"); + return QMainWindow::eventFilter(obj, event); + } + + // For all other we follow the tooltip sett8ing. + // Return true for no tool tips + switch (m_toolTipsCfg) { + case mixxx::preferences::Tooltips::OnlyInLibrary: + if (dynamic_cast(obj) != nullptr) { return true; } + break; + case mixxx::preferences::Tooltips::On: + break; + case mixxx::preferences::Tooltips::Off: + return true; + default: + DEBUG_ASSERT(!"m_toolTipsCfg value unknown"); + return true; } } else if (event->type() == QEvent::WindowStateChange) { #ifndef __APPLE__ diff --git a/src/preferences/colorpalettesettings.h b/src/preferences/colorpalettesettings.h index c0e9725e02ca..716111a6e27f 100644 --- a/src/preferences/colorpalettesettings.h +++ b/src/preferences/colorpalettesettings.h @@ -29,7 +29,7 @@ class ColorPaletteSettings { void removePalette(const QString& name); QSet getColorPaletteNames() const; - DEFINE_PREFERENCE_HELPERS(KeyColorsEnabled, bool, "[Config]", "KeyColorsEnabled", true); + DEFINE_PREFERENCE_HELPERS(KeyColorsEnabled, bool, "[Config]", "key_colors_enabled", true); private: UserSettingsPointer m_pConfig; diff --git a/src/preferences/configobject.cpp b/src/preferences/configobject.cpp index 81709fada49b..e3758e3726e6 100644 --- a/src/preferences/configobject.cpp +++ b/src/preferences/configobject.cpp @@ -65,7 +65,7 @@ QString computeResourcePathImpl() { "'--resource-path '."); } } -#if defined(__UNIX__) +#if defined(__UNIX__) && !defined(__ANDROID__) else if (mixxxDir.cd(QStringLiteral("../share/mixxx"))) { qResourcePath = mixxxDir.absolutePath(); } @@ -75,6 +75,11 @@ QString computeResourcePathImpl() { else { qResourcePath = QCoreApplication::applicationDirPath(); } +#elif defined(__ANDROID__) + // On Android, use the QRC. + else { + qResourcePath = "assets:/"; + } #elif defined(Q_OS_IOS) // On iOS the bundle contains the resources directly. else { diff --git a/src/preferences/dialog/dlgprefbroadcastdlg.ui b/src/preferences/dialog/dlgprefbroadcastdlg.ui index 077e47258308..1b8f55099d44 100644 --- a/src/preferences/dialog/dlgprefbroadcastdlg.ui +++ b/src/preferences/dialog/dlgprefbroadcastdlg.ui @@ -376,6 +376,9 @@ + + Available fields: $artist, $title, $year, $album, $genre, $bpm + $artist - $title diff --git a/src/preferences/dialog/dlgprefcolors.cpp b/src/preferences/dialog/dlgprefcolors.cpp index 219092ef9239..884ae308958e 100644 --- a/src/preferences/dialog/dlgprefcolors.cpp +++ b/src/preferences/dialog/dlgprefcolors.cpp @@ -17,12 +17,15 @@ namespace { constexpr int kHotcueDefaultColorIndex = -1; constexpr int kLoopDefaultColorIndex = -1; +constexpr int kJumpDefaultColorIndex = -1; constexpr QSize kPalettePreviewSize = QSize(108, 16); const ConfigKey kAutoHotcueColorsConfigKey("[Controls]", "auto_hotcue_colors"); const ConfigKey kAutoLoopColorsConfigKey("[Controls]", "auto_loop_colors"); +const ConfigKey kAutoJumpColorsConfigKey("[Controls]", "auto_jump_colors"); const ConfigKey kHotcueDefaultColorIndexConfigKey("[Controls]", "HotcueDefaultColorIndex"); const ConfigKey kLoopDefaultColorIndexConfigKey("[Controls]", "LoopDefaultColorIndex"); const ConfigKey kKeyColorsEnabledConfigKey("[Config]", "key_colors_enabled"); +const ConfigKey kJumpDefaultColorIndexConfigKey("[Controls]", "jump_default_color_index"); } // anonymous namespace @@ -120,6 +123,7 @@ void DlgPrefColors::slotUpdate() { paletteIcon); } } + updateKeyColorsCombobox(); const QSet colorPaletteNames = m_colorPaletteSettings.getColorPaletteNames(); for (const auto& paletteName : colorPaletteNames) { @@ -184,6 +188,24 @@ void DlgPrefColors::slotUpdate() { comboBoxLoopDefaultColor->setCurrentIndex( loopDefaultColorIndex + 1); } + + bool autoJumpColors = m_pConfig->getValue(kAutoJumpColorsConfigKey, false); + if (autoJumpColors) { + comboBoxJumpDefaultColor->setCurrentIndex(0); + } else { + int jumpDefaultColorIndex = m_pConfig->getValue( + kJumpDefaultColorIndexConfigKey, kJumpDefaultColorIndex); + if (jumpDefaultColorIndex < 0 || + jumpDefaultColorIndex >= hotcuePalette.size()) { + jumpDefaultColorIndex = + hotcuePalette.size() - 3; // default to third last color + if (jumpDefaultColorIndex < 0) { + jumpDefaultColorIndex = 0; + } + } + comboBoxJumpDefaultColor->setCurrentIndex( + jumpDefaultColorIndex + 1); + } } // Set the default values for all the widgets @@ -206,6 +228,9 @@ void DlgPrefColors::slotResetToDefaults() { comboBoxLoopDefaultColor->setCurrentIndex( mixxx::PredefinedColorPalettes::kDefaultTrackColorPalette.size() - 1); checkboxKeyColorsEnabled->setChecked(BaseTrackTableModel::kKeyColorsEnabledDefault); + updateKeyColorsCombobox(); + comboBoxJumpDefaultColor->setCurrentIndex( + mixxx::PredefinedColorPalettes::kDefaultTrackColorPalette.size() - 2); } // Apply and save any changes made in the dialog @@ -275,6 +300,15 @@ void DlgPrefColors::slotApply() { } m_pConfig->setValue(kKeyColorsEnabledConfigKey, checkboxKeyColorsEnabled->checkState()); + int jumpColorIndex = comboBoxJumpDefaultColor->currentIndex(); + + if (jumpColorIndex > 0) { + m_pConfig->setValue(kAutoJumpColorsConfigKey, false); + m_pConfig->setValue(kJumpDefaultColorIndexConfigKey, jumpColorIndex - 1); + } else { + m_pConfig->setValue(kAutoJumpColorsConfigKey, true); + m_pConfig->setValue(kJumpDefaultColorIndexConfigKey, -1); + } } void DlgPrefColors::slotReplaceCueColorClicked() { @@ -357,6 +391,9 @@ void DlgPrefColors::slotHotcuePaletteIndexChanged(int paletteIndex) { int defaultLoopColor = comboBoxLoopDefaultColor->currentIndex(); comboBoxLoopDefaultColor->clear(); + int defaultJumpColor = comboBoxJumpDefaultColor->currentIndex(); + comboBoxJumpDefaultColor->clear(); + QIcon paletteIcon = drawHotcueColorByPaletteIcon(paletteName); comboBoxHotcueDefaultColor->addItem(tr("By hotcue number"), -1); @@ -365,6 +402,9 @@ void DlgPrefColors::slotHotcuePaletteIndexChanged(int paletteIndex) { comboBoxLoopDefaultColor->addItem(tr("By hotcue number"), -1); comboBoxLoopDefaultColor->setItemIcon(0, paletteIcon); + comboBoxJumpDefaultColor->addItem(tr("By hotcue number"), -1); + comboBoxJumpDefaultColor->setItemIcon(0, paletteIcon); + QPixmap pixmap(16, 16); for (int i = 0; i < palette.size(); ++i) { QColor color = mixxx::RgbColor::toQColor(palette.at(i)); @@ -378,6 +418,9 @@ void DlgPrefColors::slotHotcuePaletteIndexChanged(int paletteIndex) { comboBoxLoopDefaultColor->addItem(item, i); comboBoxLoopDefaultColor->setItemIcon(i + 1, icon); + + comboBoxJumpDefaultColor->addItem(item, i); + comboBoxJumpDefaultColor->setItemIcon(i + 1, icon); } if (comboBoxHotcueDefaultColor->count() > defaultHotcueColor) { @@ -393,6 +436,13 @@ void DlgPrefColors::slotHotcuePaletteIndexChanged(int paletteIndex) { comboBoxLoopDefaultColor->setCurrentIndex( comboBoxLoopDefaultColor->count() - 1); } + + if (comboBoxJumpDefaultColor->count() > defaultJumpColor) { + comboBoxJumpDefaultColor->setCurrentIndex(defaultJumpColor); + } else { + comboBoxJumpDefaultColor->setCurrentIndex( + comboBoxJumpDefaultColor->count() - 1); + } } void DlgPrefColors::slotKeyPaletteIndexChanged(int paletteIndex) { @@ -420,7 +470,13 @@ void DlgPrefColors::slotKeyColorsEnabled(int i) { m_bKeyColorsEnabled = static_cast(i); #endif BaseTrackTableModel::setKeyColorsEnabled(m_bKeyColorsEnabled); - m_pConfig->setValue(kKeyColorsEnabledConfigKey, checkboxKeyColorsEnabled->checkState()); + + updateKeyColorsCombobox(); + m_pConfig->setValue(kKeyColorsEnabledConfigKey, m_bKeyColorsEnabled); +} + +void DlgPrefColors::updateKeyColorsCombobox() { + comboBoxKeyColors->setEnabled(checkboxKeyColorsEnabled->isChecked()); } void DlgPrefColors::openColorPaletteEditor( @@ -453,18 +509,28 @@ void DlgPrefColors::trackPaletteUpdated(const QString& trackColors) { QString hotcueColors = comboBoxHotcueColors->currentData().toString(); int defaultHotcueColor = comboBoxHotcueDefaultColor->currentIndex(); int defaultLoopColor = comboBoxLoopDefaultColor->currentIndex(); + int defaultJumpColor = comboBoxJumpDefaultColor->currentIndex(); slotUpdate(); - restoreComboBoxes(hotcueColors, trackColors, defaultHotcueColor, defaultLoopColor); + restoreComboBoxes(hotcueColors, + trackColors, + defaultHotcueColor, + defaultLoopColor, + defaultJumpColor); } void DlgPrefColors::hotcuePaletteUpdated(const QString& hotcueColors) { QString trackColors = comboBoxTrackColors->currentData().toString(); int defaultHotcueColor = comboBoxHotcueDefaultColor->currentIndex(); int defaultLoopColor = comboBoxLoopDefaultColor->currentIndex(); + int defaultJumpColor = comboBoxJumpDefaultColor->currentIndex(); slotUpdate(); - restoreComboBoxes(hotcueColors, trackColors, defaultHotcueColor, defaultLoopColor); + restoreComboBoxes(hotcueColors, + trackColors, + defaultHotcueColor, + defaultLoopColor, + defaultJumpColor); } void DlgPrefColors::palettesUpdated() { @@ -472,16 +538,22 @@ void DlgPrefColors::palettesUpdated() { QString trackColors = comboBoxTrackColors->currentData().toString(); int defaultHotcueColor = comboBoxHotcueDefaultColor->currentIndex(); int defaultLoopColor = comboBoxLoopDefaultColor->currentIndex(); + int defaultJumpColor = comboBoxJumpDefaultColor->currentIndex(); slotUpdate(); - restoreComboBoxes(hotcueColors, trackColors, defaultHotcueColor, defaultLoopColor); + restoreComboBoxes(hotcueColors, + trackColors, + defaultHotcueColor, + defaultLoopColor, + defaultJumpColor); } void DlgPrefColors::restoreComboBoxes( const QString& hotcueColors, const QString& trackColors, int defaultHotcueColor, - int defaultLoopColor) { + int defaultLoopColor, + int defaultJumpColor) { comboBoxHotcueColors->setCurrentText(QCoreApplication::translate( "PredefinedColorPalettes", qPrintable(hotcueColors))); comboBoxTrackColors->setCurrentText(QCoreApplication::translate( @@ -498,4 +570,10 @@ void DlgPrefColors::restoreComboBoxes( comboBoxLoopDefaultColor->setCurrentIndex( comboBoxLoopDefaultColor->count() - 1); } + if (comboBoxJumpDefaultColor->count() > defaultJumpColor) { + comboBoxJumpDefaultColor->setCurrentIndex(defaultJumpColor); + } else { + comboBoxJumpDefaultColor->setCurrentIndex( + comboBoxJumpDefaultColor->count() - 2); + } } diff --git a/src/preferences/dialog/dlgprefcolors.h b/src/preferences/dialog/dlgprefcolors.h index c309fb0f5ed3..8cdf7fe6dd90 100644 --- a/src/preferences/dialog/dlgprefcolors.h +++ b/src/preferences/dialog/dlgprefcolors.h @@ -56,7 +56,9 @@ class DlgPrefColors : public DlgPreferencePage, public Ui::DlgPrefColorsDlg { const QString& hotcueColors, const QString& trackColors, int defaultHotcueColor, - int defaultLoopColor); + int defaultLoopColor, + int defaultJumpColor); + void updateKeyColorsCombobox(); const UserSettingsPointer m_pConfig; ColorPaletteSettings m_colorPaletteSettings; diff --git a/src/preferences/dialog/dlgprefcolorsdlg.ui b/src/preferences/dialog/dlgprefcolorsdlg.ui index 3feafd467156..8f7a65f00a08 100644 --- a/src/preferences/dialog/dlgprefcolorsdlg.ui +++ b/src/preferences/dialog/dlgprefcolorsdlg.ui @@ -100,7 +100,18 @@ - + + + + Jump default color + + + + + + + + When key colors are enabled, Mixxx will display a color hint @@ -112,14 +123,14 @@ associated with each key. - + Key palette - + @@ -130,7 +141,7 @@ associated with each key. - + Qt::Vertical @@ -153,6 +164,7 @@ associated with each key. comboBoxHotcueColors pushButtonEditHotcuePalette comboBoxHotcueDefaultColor + comboBoxJumpDefaultColor pushButtonReplaceCueColor checkboxKeyColorsEnabled diff --git a/src/preferences/dialog/dlgprefinterface.cpp b/src/preferences/dialog/dlgprefinterface.cpp index 7cdc67e86a19..1151817285fc 100644 --- a/src/preferences/dialog/dlgprefinterface.cpp +++ b/src/preferences/dialog/dlgprefinterface.cpp @@ -36,6 +36,7 @@ const QString kResizableSkinKey = QStringLiteral("ResizableSkin"); const QString kLocaleKey = QStringLiteral("Locale"); const QString kTooltipsKey = QStringLiteral("Tooltips"); const QString kMultiSamplingKey = QStringLiteral("multi_sampling"); +const QString kForceHardwareAccelerationKey = QStringLiteral("force_hardware_acceleration"); const QString kHideMenuBarKey = QStringLiteral("hide_menubar"); // TODO move these to a common *_defs.h file, some are also used by e.g. MixxxMainWindow @@ -139,20 +140,7 @@ DlgPrefInterface::DlgPrefInterface( tr("The minimum size of the selected skin is bigger than your " "screen resolution.")); - ComboBoxSkinconf->clear(); - skinPreviewLabel->setText(""); - skinDescriptionText->setText(""); - skinDescriptionText->hide(); - - const QList skins = m_pSkinLoader->getSkins(); - int index = 0; - for (const SkinPointer& pSkin : skins) { - ComboBoxSkinconf->insertItem(index, pSkin->name()); - m_skins.insert(pSkin->name(), pSkin); - index++; - } - - ComboBoxSkinconf->setCurrentIndex(index); + slotUpdateSkins(); // schemes must be updated here to populate the drop-down box and set m_colorScheme slotUpdateSchemes(); slotSetSkinPreview(); @@ -206,6 +194,9 @@ DlgPrefInterface::DlgPrefInterface( m_multiSampling = m_pConfig->getValue( ConfigKey(kPreferencesGroup, kMultiSamplingKey), mixxx::preferences::MultiSamplingMode::Four); + m_forceHardwareAcceleration = m_pConfig->getValue( + ConfigKey(kPreferencesGroup, kForceHardwareAccelerationKey), + false); int multiSamplingIndex = multiSamplingComboBox->findData( QVariant::fromValue((m_multiSampling))); if (multiSamplingIndex != -1) { @@ -215,14 +206,17 @@ DlgPrefInterface::DlgPrefInterface( m_pConfig->setValue(ConfigKey(kPreferencesGroup, kMultiSamplingKey), mixxx::preferences::MultiSamplingMode::Disabled); } + checkBoxForceHardwareAcceleration->setChecked(m_forceHardwareAcceleration); } else #endif { #ifdef MIXXX_USE_QML m_multiSampling = mixxx::preferences::MultiSamplingMode::Disabled; + m_forceHardwareAcceleration = false; #endif multiSamplingLabel->hide(); multiSamplingComboBox->hide(); + checkBoxForceHardwareAcceleration->hide(); } // Tooltip configuration @@ -251,6 +245,58 @@ QScreen* DlgPrefInterface::getScreen() const { return pScreen; } +void DlgPrefInterface::slotUpdateSkins() { + if (!m_pSkinLoader) { + return; + } + + ComboBoxSkinconf->blockSignals(true); + ComboBoxSkinconf->clear(); + m_skins.clear(); + skinPreviewLabel->setText(""); + skinDescriptionText->setText(""); + skinDescriptionText->hide(); + + // Check the text color of the palette for whether to use dark or light icons + QDir iconsPath; + if (!Color::isDimColor(palette().text().color())) { + iconsPath.setPath(":/images/preferences/light/"); + } else { + iconsPath.setPath(":/images/preferences/dark/"); + } + + // Set the user skin icon. + QIcon userSkinIcon(iconsPath.filePath("ic_custom.svg")); + + const QList userSkins = m_pSkinLoader->getUserSkins(); + int index = 0; + for (const SkinPointer& pSkin : userSkins) { + ComboBoxSkinconf->insertItem(index, userSkinIcon, pSkin->name()); + m_skins.insert(pSkin->name(), pSkin); + index++; + } + + // If there are user skins, we add a separator and the + // built-in skins also get an icon. + QIcon systemSkinIcon; + if (ComboBoxSkinconf->count() > 0) { + ComboBoxSkinconf->insertSeparator(index); + systemSkinIcon = QIcon(iconsPath.filePath("ic_mixxx_symbolic.svg")); + index++; + } + + const QList systemSkins = m_pSkinLoader->getSystemSkins(); + for (const SkinPointer& pSkin : systemSkins) { + ComboBoxSkinconf->insertItem( + index, systemSkinIcon, pSkin->name()); + m_skins.insert(pSkin->name(), pSkin); + index++; + } + + ComboBoxSkinconf->setCurrentIndex(index); + ComboBoxSkinconf->blockSignals(false); +} + void DlgPrefInterface::slotUpdateSchemes() { if (!m_pSkinLoader) { return; @@ -296,6 +342,8 @@ void DlgPrefInterface::slotUpdateSchemes() { void DlgPrefInterface::slotUpdate() { if (m_pSkinLoader) { + slotUpdateSkins(); + const SkinPointer pSkinOnUpdate = m_pSkinLoader->getConfiguredSkin(); if (pSkinOnUpdate != nullptr && pSkinOnUpdate->isValid()) { m_skinNameOnUpdate = pSkinOnUpdate->name(); @@ -358,6 +406,8 @@ void DlgPrefInterface::slotResetToDefaults() { multiSamplingComboBox->setCurrentIndex( multiSamplingComboBox->findData(QVariant::fromValue( mixxx::preferences::MultiSamplingMode::Four))); // 4x MSAA + checkBoxForceHardwareAcceleration->setChecked( + false); #endif #ifdef Q_OS_IOS @@ -489,11 +539,20 @@ void DlgPrefInterface::slotApply() { .value(); m_pConfig->setValue( ConfigKey(kPreferencesGroup, kMultiSamplingKey), multiSampling); + bool forceHardwareAcceleration = checkBoxForceHardwareAcceleration->isChecked(); + if (m_pConfig->exists( + ConfigKey(kPreferencesGroup, kForceHardwareAccelerationKey)) || + forceHardwareAcceleration) { + m_pConfig->setValue( + ConfigKey(kPreferencesGroup, kForceHardwareAccelerationKey), + forceHardwareAcceleration); + } #endif if (locale != m_localeOnUpdate || scaleFactor != m_dScaleFactor #ifdef MIXXX_USE_QML - || multiSampling != m_multiSampling + || multiSampling != m_multiSampling || + forceHardwareAcceleration != m_forceHardwareAcceleration #endif ) { notifyRebootNecessary(); @@ -502,6 +561,7 @@ void DlgPrefInterface::slotApply() { m_dScaleFactor = scaleFactor; #ifdef MIXXX_USE_QML m_multiSampling = multiSampling; + m_forceHardwareAcceleration = forceHardwareAcceleration; #endif } diff --git a/src/preferences/dialog/dlgprefinterface.h b/src/preferences/dialog/dlgprefinterface.h index b2c7fcb0d6c5..13e3d02fca92 100644 --- a/src/preferences/dialog/dlgprefinterface.h +++ b/src/preferences/dialog/dlgprefinterface.h @@ -40,6 +40,7 @@ class DlgPrefInterface : public DlgPreferencePage, public Ui::DlgPrefControlsDlg void slotSetScheme(int); void slotSetSkinDescription(); void slotSetSkinPreview(); + void slotUpdateSkins(); void slotUpdateSchemes(); signals: @@ -70,6 +71,7 @@ class DlgPrefInterface : public DlgPreferencePage, public Ui::DlgPrefControlsDlg QString m_colorSchemeOnUpdate; QString m_localeOnUpdate; mixxx::preferences::MultiSamplingMode m_multiSampling; + bool m_forceHardwareAcceleration; mixxx::preferences::Tooltips m_tooltipMode; double m_dScaleFactor; double m_minScaleFactor; diff --git a/src/preferences/dialog/dlgprefinterfacedlg.ui b/src/preferences/dialog/dlgprefinterfacedlg.ui index 2b7def9894f4..21fb27b4aa90 100644 --- a/src/preferences/dialog/dlgprefinterfacedlg.ui +++ b/src/preferences/dialog/dlgprefinterfacedlg.ui @@ -287,16 +287,26 @@ - + Multi-Sampling - + + + + + Force 3D acceleration + + + If checked, Mixxx will always assume 3D acceleration is available. This may lead to pour performance if only CP-backed rendering is available.. + + + @@ -327,6 +337,7 @@ radioButtonTooltipsLibrary radioButtonTooltipsLibraryAndSkin multiSamplingComboBox + checkBoxForceHardwareAcceleration diff --git a/src/preferences/dialog/dlgprefrecord.cpp b/src/preferences/dialog/dlgprefrecord.cpp index 0ae6b19be8e7..02885df84315 100644 --- a/src/preferences/dialog/dlgprefrecord.cpp +++ b/src/preferences/dialog/dlgprefrecord.cpp @@ -12,6 +12,7 @@ namespace { constexpr bool kDefaultCueEnabled = true; +constexpr bool kDefaultCueFileAnnotationEnabled = false; } // anonymous namespace DlgPrefRecord::DlgPrefRecord(QWidget* parent, UserSettingsPointer pConfig) @@ -76,6 +77,10 @@ DlgPrefRecord::DlgPrefRecord(QWidget* parent, UserSettingsPointer pConfig) CheckBoxRecordCueFile->setChecked(m_pConfig->getValue( ConfigKey(RECORDING_PREF_KEY, "CueEnabled"), kDefaultCueEnabled)); + CheckBoxUseCueFileAnnotation->setChecked(m_pConfig->getValue( + ConfigKey(RECORDING_PREF_KEY, "cue_file_annotation_enabled"), + kDefaultCueFileAnnotationEnabled)); + // Setting split comboBoxSplitting->addItem(SPLIT_650MB); comboBoxSplitting->addItem(SPLIT_700MB); @@ -119,6 +124,15 @@ DlgPrefRecord::DlgPrefRecord(QWidget* parent, UserSettingsPointer pConfig) &QAbstractSlider::sliderReleased, this, &DlgPrefRecord::slotSliderCompression); + + connect(CheckBoxRecordCueFile, +#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0) + &QCheckBox::checkStateChanged, +#else + &QCheckBox::stateChanged, +#endif + this, + &DlgPrefRecord::slotToggleCueEnabled); } DlgPrefRecord::~DlgPrefRecord() { @@ -144,6 +158,7 @@ void DlgPrefRecord::slotApply() { saveMetaData(); saveEncoding(); saveUseCueFile(); + saveUseCueFileAnnotation(); saveSplitSize(); } @@ -175,10 +190,12 @@ void DlgPrefRecord::slotUpdate() { loadMetaData(); - // Setting miscellaneous + // Setting miscellaneous CheckBoxRecordCueFile->setChecked(m_pConfig->getValue( ConfigKey(RECORDING_PREF_KEY, "CueEnabled"), kDefaultCueEnabled)); + slotToggleCueEnabled(); + QString fileSizeStr = m_pConfig->getValueString(ConfigKey(RECORDING_PREF_KEY, "FileSize")); int index = comboBoxSplitting->findText(fileSizeStr); if (index >= 0) { @@ -201,7 +218,12 @@ void DlgPrefRecord::slotResetToDefaults() { // 4GB splitting is the default comboBoxSplitting->setCurrentIndex(4); + + // Sets 'Create a CUE file' checkbox value CheckBoxRecordCueFile->setChecked(kDefaultCueEnabled); + + // Sets 'Enable File Annotation in CUE file' checkbox value + CheckBoxUseCueFileAnnotation->setChecked(kDefaultCueFileAnnotationEnabled); } void DlgPrefRecord::slotBrowseRecordingsDir() { @@ -429,11 +451,23 @@ void DlgPrefRecord::saveEncoding() { } } +// Set 'Enable File Annotation in CUE file' checkbox value depending on 'Create +// a CUE file' checkbox value +void DlgPrefRecord::slotToggleCueEnabled() { + CheckBoxUseCueFileAnnotation->setEnabled(CheckBoxRecordCueFile + ->isChecked()); +} + void DlgPrefRecord::saveUseCueFile() { m_pConfig->set(ConfigKey(RECORDING_PREF_KEY, "CueEnabled"), ConfigValue(CheckBoxRecordCueFile->isChecked())); } +void DlgPrefRecord::saveUseCueFileAnnotation() { + m_pConfig->set(ConfigKey(RECORDING_PREF_KEY, "cue_file_annotation_enabled"), + ConfigValue(CheckBoxUseCueFileAnnotation->isChecked())); +} + void DlgPrefRecord::saveSplitSize() { m_pConfig->set(ConfigKey(RECORDING_PREF_KEY, "FileSize"), ConfigValue(comboBoxSplitting->currentText())); diff --git a/src/preferences/dialog/dlgprefrecord.h b/src/preferences/dialog/dlgprefrecord.h index 17c47a1ea573..19d287c43c12 100644 --- a/src/preferences/dialog/dlgprefrecord.h +++ b/src/preferences/dialog/dlgprefrecord.h @@ -32,6 +32,9 @@ class DlgPrefRecord : public DlgPreferencePage, public Ui::DlgPrefRecordDlg { void slotSliderCompression(); void slotGroupChanged(); + private slots: + void slotToggleCueEnabled(); + signals: void apply(const QString &); @@ -44,6 +47,7 @@ class DlgPrefRecord : public DlgPreferencePage, public Ui::DlgPrefRecordDlg { void saveMetaData(); void saveEncoding(); void saveUseCueFile(); + void saveUseCueFileAnnotation(); void saveSplitSize(); // Pointer to config object diff --git a/src/preferences/dialog/dlgprefrecorddlg.ui b/src/preferences/dialog/dlgprefrecorddlg.ui index 01a3808af0d9..cffe8673c217 100644 --- a/src/preferences/dialog/dlgprefrecorddlg.ui +++ b/src/preferences/dialog/dlgprefrecorddlg.ui @@ -119,6 +119,20 @@ + + + + + This will include the filepath for each track in the CUE file. +This option makes the CUE file less portable and can reveal personal +information from filepaths (i.e. username) + + + Enable File Annotation in CUE file + + + + @@ -386,6 +400,7 @@ PushButtonBrowseRecordings comboBoxSplitting CheckBoxRecordCueFile + CheckBoxUseCueFileAnnotation SliderCompression SliderQuality LineEditTitle diff --git a/src/preferences/dialog/dlgprefvinyl.cpp b/src/preferences/dialog/dlgprefvinyl.cpp index ef5c7433b1ce..d58da02ca935 100644 --- a/src/preferences/dialog/dlgprefvinyl.cpp +++ b/src/preferences/dialog/dlgprefvinyl.cpp @@ -43,6 +43,9 @@ DlgPrefVinyl::DlgPrefVinyl( box->addItem(MIXXX_VINYL_SERATOCD); box->addItem(MIXXX_VINYL_TRAKTORSCRATCHSIDEA); box->addItem(MIXXX_VINYL_TRAKTORSCRATCHSIDEB); + box->addItem(MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA); + box->addItem(MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB); + box->addItem(MIXXX_VINYL_TRAKTORSCRATCHMK2CD); box->addItem(MIXXX_VINYL_MIXVIBESDVS); box->addItem(MIXXX_VINYL_MIXVIBES7INCH); box->addItem(MIXXX_VINYL_PIONEERA); @@ -247,6 +250,12 @@ int DlgPrefVinyl::getDefaultLeadIn(const QString& vinyl_type) const { return MIXXX_VINYL_TRAKTORSCRATCHSIDEA_LEADIN; } else if (vinyl_type == MIXXX_VINYL_TRAKTORSCRATCHSIDEB) { return MIXXX_VINYL_TRAKTORSCRATCHSIDEB_LEADIN; + } else if (vinyl_type == MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA) { + return MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA_LEADIN; + } else if (vinyl_type == MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB) { + return MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB_LEADIN; + } else if (vinyl_type == MIXXX_VINYL_TRAKTORSCRATCHMK2CD) { + return MIXXX_VINYL_TRAKTORSCRATCHMK2CD_LEADIN; } else if (vinyl_type == MIXXX_VINYL_MIXVIBESDVS) { return MIXXX_VINYL_MIXVIBESDVS_LEADIN; } else if (vinyl_type == MIXXX_VINYL_MIXVIBES7INCH) { diff --git a/src/preferences/dialog/dlgprefwaveform.cpp b/src/preferences/dialog/dlgprefwaveform.cpp index e04c76baecbd..7c10af0e66ad 100644 --- a/src/preferences/dialog/dlgprefwaveform.cpp +++ b/src/preferences/dialog/dlgprefwaveform.cpp @@ -250,10 +250,10 @@ DlgPrefWaveform::~DlgPrefWaveform() { } void DlgPrefWaveform::slotSetWaveformOptions( - allshader::WaveformRendererSignalBase::Option option, bool enabled) { - allshader::WaveformRendererSignalBase::Options currentOption = m_pConfig->getValue( + WaveformRendererSignalBase::Option option, bool enabled) { + WaveformRendererSignalBase::Options currentOption = m_pConfig->getValue( kWaveformOptionsKey, - allshader::WaveformRendererSignalBase::Option::None); + WaveformRendererSignalBase::Option::None); m_pConfig->setValue(ConfigKey("[Waveform]", "waveform_options"), enabled ? currentOption | option @@ -293,9 +293,9 @@ void DlgPrefWaveform::slotUpdate() { bool useWaveform = factory->getType() != WaveformWidgetType::Empty; useWaveformCheckBox->setChecked(useWaveform); - allshader::WaveformRendererSignalBase::Options currentOptions = m_pConfig->getValue( + WaveformRendererSignalBase::Options currentOptions = m_pConfig->getValue( kWaveformOptionsKey, - allshader::WaveformRendererSignalBase::Option::None); + WaveformRendererSignalBase::Option::None); WaveformWidgetBackend backend = m_pConfig->getValue( kHardwareAccelerationKey, factory->preferredBackend()); @@ -384,11 +384,11 @@ void DlgPrefWaveform::slotResetToDefaults() { updateWaveformAcceleration(WaveformWidgetFactory::defaultType(), defaultBackend); updateWaveformTypeOptions(true, defaultBackend, - allshader::WaveformRendererSignalBase::Option::None); + WaveformRendererSignalBase::Option::None); // Restore waveform backend and option setting instantly m_pConfig->setValue(kWaveformOptionsKey, - allshader::WaveformRendererSignalBase::Option::None); + WaveformRendererSignalBase::Option::None); m_pConfig->setValue(kHardwareAccelerationKey, defaultBackend); factory->setWidgetTypeFromHandle( factory->findHandleIndexFromType( @@ -472,9 +472,9 @@ void DlgPrefWaveform::slotSetWaveformType(int index) { // Now set the new type factory->setWidgetTypeFromHandle(factory->findHandleIndexFromType(type)); - allshader::WaveformRendererSignalBase::Options currentOptions = m_pConfig->getValue( + WaveformRendererSignalBase::Options currentOptions = m_pConfig->getValue( kWaveformOptionsKey, - allshader::WaveformRendererSignalBase::Option::None); + WaveformRendererSignalBase::Option::None); updateWaveformTypeOptions(true, backend, currentOptions); updateEnableUntilMark(); updateStemOptionsEnabled(); @@ -509,9 +509,9 @@ void DlgPrefWaveform::slotSetWaveformAcceleration(bool checked) { auto type = static_cast(waveformTypeComboBox->currentData().toInt()); auto* factory = WaveformWidgetFactory::instance(); factory->setWidgetTypeFromHandle(factory->findHandleIndexFromType(type), true); - allshader::WaveformRendererSignalBase::Options currentOptions = m_pConfig->getValue( + WaveformRendererSignalBase::Options currentOptions = m_pConfig->getValue( kWaveformOptionsKey, - allshader::WaveformRendererSignalBase::Option::None); + WaveformRendererSignalBase::Option::None); updateWaveformTypeOptions(true, backend, currentOptions); updateEnableUntilMark(); updateStemOptionsEnabled(); @@ -547,14 +547,14 @@ void DlgPrefWaveform::updateWaveformAcceleration( void DlgPrefWaveform::updateWaveformTypeOptions(bool useWaveform, WaveformWidgetBackend backend, - allshader::WaveformRendererSignalBase::Options currentOptions) { + WaveformRendererSignalBase::Options currentOptions) { splitLeftRightCheckBox->blockSignals(true); highDetailCheckBox->blockSignals(true); #ifdef MIXXX_USE_QOPENGL WaveformWidgetFactory* factory = WaveformWidgetFactory::instance(); - allshader::WaveformRendererSignalBase::Options supportedOption = - allshader::WaveformRendererSignalBase::Option::None; + WaveformRendererSignalBase::Options supportedOption = + WaveformRendererSignalBase::Option::None; auto type = static_cast(waveformTypeComboBox->currentData().toInt()); int handleIdx = factory->findHandleIndexFromType(type); @@ -565,15 +565,15 @@ void DlgPrefWaveform::updateWaveformTypeOptions(bool useWaveform, splitLeftRightCheckBox->setEnabled(useWaveform && supportedOption & - allshader::WaveformRendererSignalBase::Option::SplitStereoSignal); + WaveformRendererSignalBase::Option::SplitStereoSignal); highDetailCheckBox->setEnabled(useWaveform && supportedOption & - allshader::WaveformRendererSignalBase::Option::HighDetail); + WaveformRendererSignalBase::Option::HighDetail); splitLeftRightCheckBox->setChecked(splitLeftRightCheckBox->isEnabled() && currentOptions & - allshader::WaveformRendererSignalBase::Option::SplitStereoSignal); + WaveformRendererSignalBase::Option::SplitStereoSignal); highDetailCheckBox->setChecked(highDetailCheckBox->isEnabled() && - currentOptions & allshader::WaveformRendererSignalBase::Option::HighDetail); + currentOptions & WaveformRendererSignalBase::Option::HighDetail); #else splitLeftRightCheckBox->setVisible(false); highDetailCheckBox->setVisible(false); diff --git a/src/preferences/dialog/dlgprefwaveform.h b/src/preferences/dialog/dlgprefwaveform.h index f5d3545f0cfa..c15d47b77228 100644 --- a/src/preferences/dialog/dlgprefwaveform.h +++ b/src/preferences/dialog/dlgprefwaveform.h @@ -35,14 +35,14 @@ class DlgPrefWaveform : public DlgPreferencePage, public Ui::DlgPrefWaveformDlg void slotSetWaveformEnabled(bool checked); void slotSetWaveformAcceleration(bool checked); #ifdef MIXXX_USE_QOPENGL - void slotSetWaveformOptions(allshader::WaveformRendererSignalBase::Option option, bool enabled); + void slotSetWaveformOptions(WaveformRendererSignalBase::Option option, bool enabled); void slotSetWaveformOptionSplitStereoSignal(bool checked) { - slotSetWaveformOptions(allshader::WaveformRendererSignalBase::Option:: + slotSetWaveformOptions(WaveformRendererSignalBase::Option:: SplitStereoSignal, checked); } void slotSetWaveformOptionHighDetail(bool checked) { - slotSetWaveformOptions(allshader::WaveformRendererSignalBase::Option::HighDetail, checked); + slotSetWaveformOptions(WaveformRendererSignalBase::Option::HighDetail, checked); } #endif void slotSetDefaultZoom(int index); @@ -75,7 +75,7 @@ class DlgPrefWaveform : public DlgPreferencePage, public Ui::DlgPrefWaveformDlg void updateEnableUntilMark(); void updateWaveformTypeOptions(bool useWaveform, WaveformWidgetBackend backend, - allshader::WaveformRendererSignalBase::Options currentOption); + WaveformRendererSignalBase::Options currentOption); void updateWaveformAcceleration( WaveformWidgetType::Type type, WaveformWidgetBackend backend); void updateWaveformGeneralOptionsEnabled(); diff --git a/src/preferences/upgrade.cpp b/src/preferences/upgrade.cpp index 1d7704a6da47..5b7724338a93 100644 --- a/src/preferences/upgrade.cpp +++ b/src/preferences/upgrade.cpp @@ -37,7 +37,7 @@ namespace { // mapping to proactively move users to the new all-shader waveform types std::tuple + WaveformRendererSignalBase::Options> upgradeToAllShaders(int unsafeWaveformType, int unsafeWaveformBackend, int unsafeWaveformOption) { @@ -45,10 +45,10 @@ upgradeToAllShaders(int unsafeWaveformType, using WWT = WaveformWidgetType; if (static_cast(WaveformWidgetBackend::AllShader) == unsafeWaveformBackend) { - allshader::WaveformRendererSignalBase::Options waveformOption = - static_cast( + WaveformRendererSignalBase::Options waveformOption = + static_cast( unsafeWaveformOption) & - allshader::WaveformRendererSignalBase::Option::AllOptionsCombined; + WaveformRendererSignalBase::Option::AllOptionsCombined; switch (unsafeWaveformType) { case WWT::Simple: case WWT::Filtered: @@ -67,8 +67,8 @@ upgradeToAllShaders(int unsafeWaveformType, } // Reset the options - allshader::WaveformRendererSignalBase::Options waveformOption = - allshader::WaveformRendererSignalBase::Option::None; + WaveformRendererSignalBase::Options waveformOption = + WaveformRendererSignalBase::Option::None; WaveformWidgetType::Type waveformType = static_cast(unsafeWaveformType); WaveformWidgetBackend waveformBackend = WaveformWidgetBackend::AllShader; @@ -97,7 +97,7 @@ upgradeToAllShaders(int unsafeWaveformType, // Filtered waveforms case WWT::Filtered: // GLSLFilteredWaveform case 22: // AllShaderTexturedFiltered - waveformOption = allshader::WaveformRendererSignalBase::Option::HighDetail; + waveformOption = WaveformRendererSignalBase::Option::HighDetail; [[fallthrough]]; case 2: // SoftwareWaveform case 4: // QtWaveform @@ -116,7 +116,7 @@ upgradeToAllShaders(int unsafeWaveformType, // Stacked waveform case 24: // AllShaderTexturedStacked case WWT::Stacked: // GLSLRGBStackedWaveform - waveformOption = allshader::WaveformRendererSignalBase::Option::HighDetail; + waveformOption = WaveformRendererSignalBase::Option::HighDetail; [[fallthrough]]; case 26: // AllShaderRGBStackedWaveform waveformType = WaveformWidgetType::Stacked; @@ -127,8 +127,8 @@ upgradeToAllShaders(int unsafeWaveformType, case 23: // AllShaderTexturedRGB case 12: // GLSLRGBWaveform waveformOption = unsafeWaveformType == 18 - ? allshader::WaveformRendererSignalBase::Option::SplitStereoSignal - : allshader::WaveformRendererSignalBase::Option::HighDetail; + ? WaveformRendererSignalBase::Option::SplitStereoSignal + : WaveformRendererSignalBase::Option::HighDetail; [[fallthrough]]; default: waveformType = WaveformWidgetFactory::defaultType(); @@ -357,9 +357,20 @@ UserSettingsPointer Upgrade::versionUpgrade(const QString& settingsPath) { else { #endif // This must have been the first run... right? :) - qDebug() << "No version number in configuration file. Setting to" - << VersionStore::version(); - config->set(ConfigKey("[Config]", "Version"), ConfigValue(VersionStore::version())); +#ifdef MIXXX_USE_QML + if (CmdlineArgs::Instance().isQml()) { + // If running the QML version (aka 3.0 unstable), we set a dummy + // unstable version in the settings. This is used to detect if + // the current user profile is being used for testing purpose + // and if it is safe for the user to potentially lose their data + config->setValue(ConfigKey("[Config]", "Version"), VersionStore::FUTURE_UNSTABLE); + } else +#endif + { + qDebug() << "No version number in configuration file. Setting to" + << VersionStore::version(); + config->set(ConfigKey("[Config]", "Version"), ConfigValue(VersionStore::version())); + } m_bFirstRun = true; return config; #ifdef __APPLE__ @@ -617,7 +628,8 @@ UserSettingsPointer Upgrade::versionUpgrade(const QString& settingsPath) { // If additional upgrades are added for later versions, they should go before // this block and cleanVersion should be bumped to the latest version. const QVersionNumber cleanVersion(2, 6, 0); - if (QVersionNumber::fromString(configVersion) >= cleanVersion) { + if (QVersionNumber::fromString(configVersion) >= cleanVersion && + configVersion != VersionStore::FUTURE_UNSTABLE) { // No special upgrade required, just update the value. configVersion = VersionStore::version(); config->set(ConfigKey("[Config]", "Version"), ConfigValue(VersionStore::version())); @@ -625,6 +637,9 @@ UserSettingsPointer Upgrade::versionUpgrade(const QString& settingsPath) { if (configVersion == VersionStore::version()) { qDebug() << "Configuration file is now at the current version" << VersionStore::version(); + } else if (configVersion == VersionStore::FUTURE_UNSTABLE) { + qDebug() << "Configuration file is now at the unstable version" + << VersionStore::FUTURE_UNSTABLE; } else { qWarning() << "Configuration file is at version" << configVersion << "instead of the current" << VersionStore::version(); diff --git a/src/qml/qml_owned_ptr.h b/src/qml/qml_owned_ptr.h new file mode 100644 index 000000000000..58c68f815d9f --- /dev/null +++ b/src/qml/qml_owned_ptr.h @@ -0,0 +1,120 @@ +#pragma once + +#include +#include +#include +#include + +#include "util/assert.h" + +// Use this wrapper class to clearly represent a raw pointer that is owned by a +// QML Engine. Objects which derive from QObject, have their lifetime governed +// by the QML (or JavaScript) Engine, and thus such pointers do not require a +// manual delete to free the heap memory when they go out of scope, as they will +// be handled by the engine garbage collector. +template + requires(std::is_base_of_v) +class qml_owned_ptr final { + public: + explicit qml_owned_ptr(T* t = nullptr) noexcept + : m_ptr{t} { + if (m_ptr) { + QQmlEngine::setObjectOwnership(m_ptr, QQmlEngine::JavaScriptOwnership); + } + } + + // explicitly generate trivial destructor (since decltype(m_ptr) is not a class type) + ~qml_owned_ptr() noexcept = default; + + // Rule of 5 + qml_owned_ptr(const qml_owned_ptr& other) + : m_ptr{other.m_ptr} { + DEBUG_ASSERT(!m_ptr || + QQmlEngine::objectOwnership(m_ptr) == + QQmlEngine::JavaScriptOwnership); + } + qml_owned_ptr& operator=(const qml_owned_ptr&) = delete; + qml_owned_ptr(const qml_owned_ptr&& other) + : m_ptr{other.m_ptr} { + DEBUG_ASSERT(!m_ptr || + QQmlEngine::objectOwnership(m_ptr) == + QQmlEngine::JavaScriptOwnership); + } + qml_owned_ptr& operator=(const qml_owned_ptr&& other) = delete; + + // If U* is convertible to T* then qml_owned_ptr is convertible to qml_owned_ptr + template< + typename U, + typename = typename std::enable_if_t, U>> + qml_owned_ptr(qml_owned_ptr&& u) noexcept + : m_ptr{u.m_ptr} { + u.m_ptr = nullptr; + } + + // If U* is convertible to T* then qml_owned_ptr is assignable to qml_owned_ptr + template + requires std::is_convertible_v + qml_owned_ptr& operator=(qml_owned_ptr&& u) noexcept { + qml_owned_ptr temp{std::move(u)}; + std::swap(temp.m_ptr, m_ptr); + DEBUG_ASSERT(!m_ptr || + QQmlEngine::objectOwnership(m_ptr) == + QQmlEngine::JavaScriptOwnership); + return *this; + } + + qml_owned_ptr& operator=(std::nullptr_t) noexcept { + qml_owned_ptr{std::move(*this)}; // move *this into a temporary that gets destructed + return *this; + } + + // Prevent unintended invocation of delete on qml_owned_ptr + operator void*() const = delete; + + operator T*() const noexcept { + return m_ptr; + } + + T* get() const noexcept { + return m_ptr; + } + + T& operator*() const noexcept { + return *m_ptr; + } + + T* operator->() const noexcept { + return m_ptr; + } + + operator bool() const noexcept { + return m_ptr != nullptr; + } + + QPointer toWeakRef() { + return m_ptr; + } + + private: + T* m_ptr; +}; + +template +qml_owned_ptr make_qml_owned(Args&&... args) { + return qml_owned_ptr(new T(std::forward(args)...)); +} + +// A use case for this function is when giving an object owned by `std::unique_ptr` to a Qt +// function, that will make the object owned by the Qt object tree. Example: +// ``` +// parent->someFunctionThatAddsAChild(to_qml_owned(child)) +// ``` +// where `child` is a `std::unique_ptr`. After the call, the created `qml_owned_ptr` will +// automatically be destructed such that the DEBUG_ASSERT that checks whether a parent exists is +// triggered. +template +qml_owned_ptr to_qml_owned(std::unique_ptr& u) noexcept { + // the DEBUG_ASSERT in the qml_owned_ptr constructor will catch cases where + // the unique_ptr should not have been released + return qml_owned_ptr{u.release()}; +} diff --git a/src/qml/qmlapplication.cpp b/src/qml/qmlapplication.cpp index 062164021d9c..922048869925 100644 --- a/src/qml/qmlapplication.cpp +++ b/src/qml/qmlapplication.cpp @@ -1,14 +1,18 @@ #include "qmlapplication.h" +#include + #include #include #include "controllers/controllermanager.h" #include "mixer/playermanager.h" #include "moc_qmlapplication.cpp" +#include "preferences/configobject.h" #include "qml/asyncimageprovider.h" #include "qml/qmldlgpreferencesproxy.h" #include "soundio/soundmanager.h" +#include "util/versionstore.h" #include "waveform/visualsmanager.h" #include "waveform/waveformwidgetfactory.h" Q_IMPORT_QML_PLUGIN(MixxxPlugin) @@ -42,6 +46,36 @@ QmlApplication::QmlApplication( QQuickStyle::setStyle("Basic"); m_pCoreServices->initialize(app); + + QString configVersion = m_pCoreServices->getSettings()->getValue( + ConfigKey("[Config]", "Version"), ""); + if (configVersion == VersionStore::FUTURE_UNSTABLE) { + qDebug() << "Generating a new user profile for safe testing with unstable code"; + } else if (CmdlineArgs::Instance().isAwareOfRisk()) { + qCritical() << "Existing user profile detected from" << configVersion + << "but you said you wanted to play with fire!"; + m_pCoreServices->getSettings()->setValue( + ConfigKey("[Config]", "did_run_with_unstable"), true); + } else { + QMessageBox msgBox; + msgBox.setIcon(QMessageBox::Critical); + msgBox.setWindowTitle(tr("Existing user profile detected")); + msgBox.setText( + tr("Trying to run Mixxx 3.0 with an existing %0 user profile! " + "

There is serious risks of data loss and " + "corruption.
We recommend using a test profile folder " + "with the '--settings-path' argument.

If you want " + "to continue at your own risk, run Mixxx with the argument " + "'--allow-dangerous-data-corruption-risk'.") + .arg(configVersion)); + + QPushButton* continueButton = + msgBox.addButton(tr("Ok"), QMessageBox::ActionRole); + msgBox.exec(); + m_pCoreServices.reset(); + exit(-1); + } + SoundDeviceStatus result = m_pCoreServices->getSoundManager()->setupDevices(); if (result != SoundDeviceStatus::Ok) { const int reInt = static_cast(result); @@ -61,16 +95,6 @@ QmlApplication::QmlApplication( // follows a strict singleton pattern design QmlDlgPreferencesProxy::s_pInstance = std::make_unique(pDlgPreferences, this); - loadQml(m_mainFilePath); - - m_pCoreServices->getControllerManager()->setUpDevices(); - - connect(&m_autoReload, - &QmlAutoReload::triggered, - this, - [this]() { - loadQml(m_mainFilePath); - }); const QStringList visualGroups = m_pCoreServices->getPlayerManager()->getVisualPlayerGroups(); @@ -88,6 +112,16 @@ QmlApplication::QmlApplication( m_visualsManager->addDeckIfNotExist(group); } }); + loadQml(m_mainFilePath); + + m_pCoreServices->getControllerManager()->setUpDevices(); + + connect(&m_autoReload, + &QmlAutoReload::triggered, + this, + [this]() { + loadQml(m_mainFilePath); + }); } QmlApplication::~QmlApplication() { diff --git a/src/qml/qmlconfigproxy.cpp b/src/qml/qmlconfigproxy.cpp index 091d4e348293..4d3aba4f5e87 100644 --- a/src/qml/qmlconfigproxy.cpp +++ b/src/qml/qmlconfigproxy.cpp @@ -15,6 +15,13 @@ QVariantList paletteToQColorList(const ColorPalette& palette) { const QString kPreferencesGroup = QStringLiteral("[Preferences]"); const QString kMultiSamplingKey = QStringLiteral("multi_sampling"); +const QString k3DHardwareAccelerationKey = QStringLiteral("force_hardware_acceleration"); + +const QString kWaveformGroup = QStringLiteral("[Waveform]"); +const QString kWaveformZoomSynchronizationKey = QStringLiteral("ZoomSynchronization"); +const QString kWaveformDefaultZoomKey = QStringLiteral("DefaultZoom"); +const bool kWaveformZoomSynchronizationDefault = true; +const double kWaveformDefaultZoomDefault = 3.0; } // namespace @@ -42,6 +49,27 @@ int QmlConfigProxy::getMultiSamplingLevel() { mixxx::preferences::MultiSamplingMode::Disabled)); } +bool QmlConfigProxy::useAcceleration() { + if (!m_pConfig->exists( + ConfigKey(kPreferencesGroup, k3DHardwareAccelerationKey))) { + // TODO: detect whether QML currently run with 3D acceleration. QSGRendererInterface? + return false; + } + return m_pConfig->getValue( + ConfigKey(kPreferencesGroup, k3DHardwareAccelerationKey)); +} + +bool QmlConfigProxy::waveformZoomSynchronization() { + return m_pConfig->getValue( + ConfigKey(kWaveformGroup, kWaveformZoomSynchronizationKey), + kWaveformZoomSynchronizationDefault); +} +double QmlConfigProxy::waveformDefaultZoom() { + return m_pConfig->getValue( + ConfigKey(kWaveformGroup, kWaveformDefaultZoomKey), + kWaveformDefaultZoomDefault); +} + // static QmlConfigProxy* QmlConfigProxy::create(QQmlEngine* pQmlEngine, QJSEngine* pJsEngine) { // The implementation of this method is mostly taken from the code example diff --git a/src/qml/qmlconfigproxy.h b/src/qml/qmlconfigproxy.h index a0e107276d9a..3b2e534fb34d 100644 --- a/src/qml/qmlconfigproxy.h +++ b/src/qml/qmlconfigproxy.h @@ -23,12 +23,21 @@ class QmlConfigProxy : public QObject { Q_INVOKABLE QVariantList getHotcueColorPalette(); Q_INVOKABLE QVariantList getTrackColorPalette(); Q_INVOKABLE int getMultiSamplingLevel(); + Q_INVOKABLE bool useAcceleration(); + + // Waveform settings + Q_INVOKABLE bool waveformZoomSynchronization(); + Q_INVOKABLE double waveformDefaultZoom(); static QmlConfigProxy* create(QQmlEngine* pQmlEngine, QJSEngine* pJsEngine); static inline void registerUserSettings(UserSettingsPointer pConfig) { s_pUserSettings = std::move(pConfig); } + static UserSettingsPointer get() { + return s_pUserSettings; + } + private: static inline UserSettingsPointer s_pUserSettings = nullptr; diff --git a/src/qml/qmlcontrolproxy.cpp b/src/qml/qmlcontrolproxy.cpp index 6a32e239c0ad..85f75018ac77 100644 --- a/src/qml/qmlcontrolproxy.cpp +++ b/src/qml/qmlcontrolproxy.cpp @@ -182,5 +182,10 @@ void QmlControlProxy::slotControlProxyValueChanged(double newValue) { emit parameterChanged(m_pControlProxy->getParameter()); } +void QmlControlProxy::trigger() { + setValue(1); + setValue(0); +} + } // namespace qml } // namespace mixxx diff --git a/src/qml/qmlcontrolproxy.h b/src/qml/qmlcontrolproxy.h index f5e1fe18c2da..5e60584bc376 100644 --- a/src/qml/qmlcontrolproxy.h +++ b/src/qml/qmlcontrolproxy.h @@ -57,6 +57,7 @@ class QmlControlProxy : public QObject, public QQmlParserStatus { /// Reset the control to the default value. Q_INVOKABLE void reset(); + Q_INVOKABLE void trigger(); signals: void groupChanged(const QString& group); diff --git a/src/qml/qmllibraryproxy.cpp b/src/qml/qmllibraryproxy.cpp index fec3d21120c4..5856438354ed 100644 --- a/src/qml/qmllibraryproxy.cpp +++ b/src/qml/qmllibraryproxy.cpp @@ -1,17 +1,35 @@ #include "qml/qmllibraryproxy.h" #include +#include #include "library/library.h" +#include "library/librarytablemodel.h" #include "moc_qmllibraryproxy.cpp" +#include "qml/qmllibraryproxy.h" +#include "qml/qmllibrarytracklistmodel.h" +#include "qmltrackproxy.h" +#include "track/track.h" +#include "util/assert.h" namespace mixxx { namespace qml { -QmlLibraryProxy::QmlLibraryProxy(std::shared_ptr pLibrary, QObject* parent) - : QObject(parent), - m_pLibrary(pLibrary), - m_pModelProperty(new QmlLibraryTrackListModel(m_pLibrary->trackTableModel(), this)) { +QmlLibraryProxy::QmlLibraryProxy(QObject* parent) + : QObject(parent) { +} + +QmlLibraryTrackListModel* QmlLibraryProxy::model() const { + return make_qml_owned( + QList{}, s_pLibrary->trackTableModel()) + .get(); +} + +void QmlLibraryProxy::analyze(const QmlTrackProxy* track) const { + VERIFY_OR_DEBUG_ASSERT(track && track->internal()) { + return; + } + emit s_pLibrary->analyzeTracks({track->internal()->getId()}); } // static @@ -26,7 +44,7 @@ QmlLibraryProxy* QmlLibraryProxy::create(QQmlEngine* pQmlEngine, QJSEngine* pJsE qWarning() << "Library hasn't been registered yet"; return nullptr; } - return new QmlLibraryProxy(s_pLibrary, pQmlEngine); + return new QmlLibraryProxy(pQmlEngine); } } // namespace qml diff --git a/src/qml/qmllibraryproxy.h b/src/qml/qmllibraryproxy.h index 3b5d80967b9b..07f46106ac4d 100644 --- a/src/qml/qmllibraryproxy.h +++ b/src/qml/qmllibraryproxy.h @@ -1,39 +1,42 @@ #pragma once #include #include +#include #include -#include "qml/qmllibrarytracklistmodel.h" -#include "util/parented_ptr.h" +#include "qml_owned_ptr.h" +#include "qmllibrarytracklistmodel.h" class Library; namespace mixxx { namespace qml { -class QmlLibraryTrackListModel; +class QmlTrackProxy; class QmlLibraryProxy : public QObject { Q_OBJECT - Q_PROPERTY(mixxx::qml::QmlLibraryTrackListModel* model MEMBER m_pModelProperty CONSTANT) + Q_PROPERTY(mixxx::qml::QmlLibraryTrackListModel* model READ model CONSTANT) QML_NAMED_ELEMENT(Library) QML_SINGLETON public: - explicit QmlLibraryProxy(std::shared_ptr pLibrary, QObject* parent = nullptr); + explicit QmlLibraryProxy(QObject* parent = nullptr); static QmlLibraryProxy* create(QQmlEngine* pQmlEngine, QJSEngine* pJsEngine); static void registerLibrary(std::shared_ptr pLibrary) { s_pLibrary = std::move(pLibrary); } - private: - static inline std::shared_ptr s_pLibrary; + static Library* get() { + return s_pLibrary.get(); + } - std::shared_ptr m_pLibrary; + QmlLibraryTrackListModel* model() const; + Q_INVOKABLE void analyze(const mixxx::qml::QmlTrackProxy* track) const; - /// This needs to be a plain pointer because it's used as a `Q_PROPERTY` member variable. - QmlLibraryTrackListModel* m_pModelProperty; + private: + static inline std::shared_ptr s_pLibrary; }; } // namespace qml diff --git a/src/qml/qmllibrarysource.cpp b/src/qml/qmllibrarysource.cpp new file mode 100644 index 000000000000..cc11d6f16606 --- /dev/null +++ b/src/qml/qmllibrarysource.cpp @@ -0,0 +1,61 @@ +#include "qml/qmllibrarysource.h" + +#include +#include +#include + +#include +#include +#include +#include + +#include "library/browse/browsefeature.h" +#include "library/library.h" +#include "library/librarytablemodel.h" +#include "library/trackcollection.h" +#include "library/trackcollectionmanager.h" +#include "library/trackset/crate/cratefeature.h" +#include "library/trackset/crate/cratesummary.h" +#include "library/trackset/playlistfeature.h" +#include "library/treeitemmodel.h" +#include "moc_qmllibrarysource.cpp" +#include "qmllibraryproxy.h" +#include "track/track.h" + +AllTrackLibraryFeature::AllTrackLibraryFeature(Library* pLibrary, UserSettingsPointer pConfig) + : LibraryFeature(pLibrary, pConfig, QStringLiteral("")), + m_pSidebarModel(make_parented(this)), + m_pLibraryTableModel(pLibrary->trackTableModel()) { + m_pSidebarModel->setRootItem(TreeItem::newRoot(this)); +} + +void AllTrackLibraryFeature::activate() { + emit showTrackModel(m_pLibraryTableModel); +} + +namespace mixxx { +namespace qml { + +QmlLibrarySource::QmlLibrarySource( + QObject* parent, const QList& columns) + : QObject(parent), + m_columns(columns) { +} + +void QmlLibrarySource::slotShowTrackModel(QAbstractItemModel* pModel) { + emit requestTrackModel(std::make_shared(columns(), pModel)); +} + +QmlLibraryAllTrackSource::QmlLibraryAllTrackSource( + QObject* parent, const QList& columns) + : QmlLibrarySource(parent, columns), + m_pLibraryFeature(std::make_unique( + QmlLibraryProxy::get(), QmlConfigProxy::get())) { + connect(m_pLibraryFeature.get(), + &LibraryFeature::showTrackModel, + this, + &QmlLibrarySource::slotShowTrackModel); +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmllibrarysource.h b/src/qml/qmllibrarysource.h new file mode 100644 index 000000000000..88e4d675d96a --- /dev/null +++ b/src/qml/qmllibrarysource.h @@ -0,0 +1,116 @@ +#pragma once + +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "library/browse/browsefeature.h" +#include "library/libraryfeature.h" +#include "library/sidebarmodel.h" +#include "library/trackset/crate/cratefeature.h" +#include "library/trackset/playlistfeature.h" +#include "library/treeitem.h" +#include "qmlconfigproxy.h" +#include "qmllibrarytracklistmodel.h" +#include "util/parented_ptr.h" + +class LibraryTableModel; +class TreeItemModel; +class AllTrackLibraryFeature final : public LibraryFeature { + Q_OBJECT + public: + AllTrackLibraryFeature(Library* pLibrary, + UserSettingsPointer pConfig); + ~AllTrackLibraryFeature() override = default; + + QVariant title() override { + return tr("All..."); + } + TreeItemModel* sidebarModel() const override { + return m_pSidebarModel; + } + + bool hasTrackTable() override { + return true; + } + + LibraryTableModel* trackTableModel() const { + return m_pLibraryTableModel; + } + + void searchAndActivate(const QString& query); + + public slots: + void activate() override; + + private: + LibraryTableModel* m_pLibraryTableModel; + + parented_ptr m_pSidebarModel; +}; + +namespace mixxx { +namespace qml { + +class QmlLibraryTrackListColumn; + +class QmlLibrarySource : public QObject { + Q_OBJECT + Q_PROPERTY(QString label MEMBER m_label) + Q_PROPERTY(QString icon MEMBER m_icon) + Q_PROPERTY(QQmlListProperty columns READ columnsQml) + Q_CLASSINFO("DefaultProperty", "columns") + QML_NAMED_ELEMENT(LibrarySource) + QML_UNCREATABLE("Only accessible via its specialization") + public: + explicit QmlLibrarySource(QObject* parent = nullptr, + const QList& columns = {}); + + QQmlListProperty columnsQml() { + return {this, &m_columns}; + } + + const QList& columns() const { + return m_columns; + } + virtual LibraryFeature* internal() = 0; + public slots: + void slotShowTrackModel(QAbstractItemModel* pModel); + + signals: +#if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) + void requestTrackModel(std::shared_ptr pModel); +#else + void requestTrackModel(std::shared_ptr pModel); +#endif + + protected: + QString m_label; + QString m_icon; + QList m_columns; +}; + +class QmlLibraryAllTrackSource : public QmlLibrarySource { + Q_OBJECT + QML_NAMED_ELEMENT(LibraryAllTrackSource) + public: + explicit QmlLibraryAllTrackSource(QObject* parent = nullptr, + const QList& columns = {}); + + LibraryFeature* internal() override { + return m_pLibraryFeature.get(); + } + + private: + std::unique_ptr m_pLibraryFeature; +}; + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmllibrarysourcetree.cpp b/src/qml/qmllibrarysourcetree.cpp new file mode 100644 index 000000000000..2854c2b5063d --- /dev/null +++ b/src/qml/qmllibrarysourcetree.cpp @@ -0,0 +1,80 @@ +#include "qml/qmllibrarysourcetree.h" + +#include +#include + +#include +#include + +#include "library/library.h" +#include "library/librarytablemodel.h" +#include "moc_qmllibrarysourcetree.cpp" +#include "qml_owned_ptr.h" +#include "qmllibraryproxy.h" +#include "qmllibrarytracklistmodel.h" +#include "qmlsidebarmodelproxy.h" + +namespace mixxx { +namespace qml { + +QmlLibrarySourceTree::QmlLibrarySourceTree(QQuickItem* parent) + : QQuickItem(parent), + m_model(new QmlSidebarModelProxy(this)) { +} +QmlLibrarySourceTree::~QmlLibrarySourceTree() = default; + +Q_INVOKABLE QmlLibraryTrackListModel* QmlLibrarySourceTree::allTracks() const { + return make_qml_owned( + m_defaultColumns, QmlLibraryProxy::get()->trackTableModel()); +}; + +void QmlLibrarySourceTree::append_source( + QQmlListProperty* list, QmlLibrarySource* source) { + reinterpret_cast*>(list->data)->append(source); + QmlLibrarySourceTree* librarySourceTree = qobject_cast(list->object); + if (librarySourceTree && librarySourceTree->isComponentComplete()) { + librarySourceTree->m_model->update(librarySourceTree->m_sources); + } +} + +void QmlLibrarySourceTree::clear_source(QQmlListProperty* p) { + reinterpret_cast*>(p->data)->clear(); + QmlLibrarySourceTree* librarySourceTree = qobject_cast(p->object); + if (librarySourceTree) { + librarySourceTree->m_model->update(librarySourceTree->m_sources); + } +} +void QmlLibrarySourceTree::replace_source(QQmlListProperty* p, + qsizetype idx, + QmlLibrarySource* v) { + return reinterpret_cast*>(p->data)->replace(idx, v); + QmlLibrarySourceTree* librarySourceTree = qobject_cast(p->object); + if (librarySourceTree && librarySourceTree->isComponentComplete()) { + librarySourceTree->m_model->update(librarySourceTree->m_sources); + } +} +void QmlLibrarySourceTree::removeLast_source(QQmlListProperty* p) { + return reinterpret_cast*>(p->data)->removeLast(); + QmlLibrarySourceTree* librarySourceTree = qobject_cast(p->object); + if (librarySourceTree && librarySourceTree->isComponentComplete()) { + librarySourceTree->m_model->update(librarySourceTree->m_sources); + } +} + +QQmlListProperty QmlLibrarySourceTree::sources() { + return QQmlListProperty(this, + &m_sources, + &QmlLibrarySourceTree::append_source, + &QmlLibrarySourceTree::count_source, + &QmlLibrarySourceTree::at_source, + &QmlLibrarySourceTree::clear_source, + &QmlLibrarySourceTree::replace_source, + &QmlLibrarySourceTree::removeLast_source); +} + +void QmlLibrarySourceTree::componentComplete() { + m_model->update(m_sources); +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmllibrarysourcetree.h b/src/qml/qmllibrarysourcetree.h new file mode 100644 index 000000000000..907f890f2aa5 --- /dev/null +++ b/src/qml/qmllibrarysourcetree.h @@ -0,0 +1,65 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +#include "qmllibrarysource.h" +#include "qmllibrarytracklistcolumn.h" +#include "qmlsidebarmodelproxy.h" +#include "util/parented_ptr.h" + +namespace mixxx { +namespace qml { + +class QmlLibrarySourceTree : public QQuickItem { + Q_OBJECT + Q_INTERFACES(QQmlParserStatus) + Q_PROPERTY(QQmlListProperty sources READ sources) + Q_PROPERTY(QQmlListProperty defaultColumns READ + defaultColumns CONSTANT) + Q_CLASSINFO("DefaultProperty", "sources") + QML_NAMED_ELEMENT(LibrarySourceTree) + + public: + Q_DISABLE_COPY_MOVE(QmlLibrarySourceTree) + explicit QmlLibrarySourceTree(QQuickItem* parent = nullptr); + ~QmlLibrarySourceTree() override; + + void componentComplete() override; + + QQmlListProperty defaultColumns() { + return {this, &m_defaultColumns}; + } + + QQmlListProperty sources(); + Q_INVOKABLE mixxx::qml::QmlSidebarModelProxy* sidebar() const { + return m_model.get(); + }; + Q_INVOKABLE mixxx::qml::QmlLibraryTrackListModel* allTracks() const; + + private: + static void append_source(QQmlListProperty* list, QmlLibrarySource* slice); + static qsizetype count_source(QQmlListProperty* p) { + return reinterpret_cast*>(p->data)->size(); + } + static QmlLibrarySource* at_source(QQmlListProperty* p, qsizetype idx) { + return reinterpret_cast*>(p->data)->at(idx); + } + static void clear_source(QQmlListProperty* p); + static void replace_source(QQmlListProperty* p, + qsizetype idx, + QmlLibrarySource* v); + static void removeLast_source(QQmlListProperty* p); + + QList m_sources; + parented_ptr m_model; + QList m_defaultColumns; +}; + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmllibrarytracklistcolumn.cpp b/src/qml/qmllibrarytracklistcolumn.cpp new file mode 100644 index 000000000000..5e64555c6f7d --- /dev/null +++ b/src/qml/qmllibrarytracklistcolumn.cpp @@ -0,0 +1,25 @@ +#include "qml/qmllibrarytracklistcolumn.h" + +#include "moc_qmllibrarytracklistcolumn.cpp" + +namespace mixxx { +namespace qml { + +QmlLibraryTrackListColumn::QmlLibraryTrackListColumn(QObject* parent, + const QString& label, + int fillSpan, + int columnIdx, + double preferredWidth, + QQmlComponent* pDelegate, + Role role) + : QObject(parent), + m_label(label), + m_role(role), + m_fillSpan(fillSpan), + m_columnIdx(columnIdx), + m_preferredWidth(preferredWidth), + m_pDelegate(pDelegate) { +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmllibrarytracklistcolumn.h b/src/qml/qmllibrarytracklistcolumn.h new file mode 100644 index 000000000000..3d55002ba9a6 --- /dev/null +++ b/src/qml/qmllibrarytracklistcolumn.h @@ -0,0 +1,86 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +#include "library/columncache.h" +#include "qml/qml_owned_ptr.h" + +namespace mixxx { +namespace qml { + +class QmlLibraryTrackListColumn : public QObject { + Q_OBJECT + Q_PROPERTY(QString label MEMBER m_label FINAL) + Q_PROPERTY(int fillSpan MEMBER m_fillSpan FINAL) + Q_PROPERTY(int columnIdx MEMBER m_columnIdx FINAL) + Q_PROPERTY(double preferredWidth MEMBER m_preferredWidth FINAL) + Q_PROPERTY(QQmlComponent* delegate READ delegate WRITE setDelegate FINAL) + Q_PROPERTY(Role role MEMBER m_role FINAL) + QML_NAMED_ELEMENT(TrackListColumn) + public: + enum class SQLColumns { + Album = ColumnCache::COLUMN_LIBRARYTABLE_ALBUM, + Artist = ColumnCache::COLUMN_LIBRARYTABLE_ARTIST, + Title = ColumnCache::COLUMN_LIBRARYTABLE_TITLE, + Year = ColumnCache::COLUMN_LIBRARYTABLE_YEAR, + Bpm = ColumnCache::COLUMN_LIBRARYTABLE_BPM, + Key = ColumnCache::COLUMN_LIBRARYTABLE_KEY, + FileType = ColumnCache::COLUMN_LIBRARYTABLE_FILETYPE, + Bitrate = ColumnCache::COLUMN_LIBRARYTABLE_BITRATE, + }; + Q_ENUM(SQLColumns) + enum class Role { + Location, + Artist, + Title, + Cover, + }; + Q_ENUM(Role) + explicit QmlLibraryTrackListColumn(QObject* parent = nullptr) + : QObject(parent) { + } + explicit QmlLibraryTrackListColumn(QObject* parent, + const QString& label, + int fillSpan, + int columnIdx, + double preferredWidth, + QQmlComponent* delegate, + Role role); + const QString& label() const { + return m_label; + } + Role role() const { + return m_role; + } + int fillSpan() const { + return m_fillSpan; + } + int columnIdx() const { + return m_columnIdx; + } + double preferredWidth() const { + return m_preferredWidth; + } + QQmlComponent* delegate() const { + return m_pDelegate; + } + void setDelegate(QQmlComponent* delegate) { + m_pDelegate = qml_owned_ptr(delegate); + } + + private: + QString m_label; + Role m_role; + int m_fillSpan{0}; + int m_columnIdx{-1}; + double m_preferredWidth{-1}; + qml_owned_ptr m_pDelegate; +}; +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmllibrarytracklistmodel.cpp b/src/qml/qmllibrarytracklistmodel.cpp index 1d8d77c27b16..2c14a5ccffc9 100644 --- a/src/qml/qmllibrarytracklistmodel.cpp +++ b/src/qml/qmllibrarytracklistmodel.cpp @@ -1,23 +1,68 @@ #include "qml/qmllibrarytracklistmodel.h" -#include "library/librarytablemodel.h" +#include + +#include +#include +#include +#include +#include + +#include "library/basetracktablemodel.h" +#include "library/columncache.h" #include "moc_qmllibrarytracklistmodel.cpp" +#include "qml/asyncimageprovider.h" +#include "qml/qmllibrarytracklistcolumn.h" +#include "qml_owned_ptr.h" +#include "qmltrackproxy.h" +#include "track/track.h" +#include "util/assert.h" +#include "util/parented_ptr.h" namespace mixxx { namespace qml { namespace { const QHash kRoleNames = { - {QmlLibraryTrackListModel::TitleRole, "title"}, - {QmlLibraryTrackListModel::ArtistRole, "artist"}, - {QmlLibraryTrackListModel::AlbumRole, "album"}, - {QmlLibraryTrackListModel::AlbumArtistRole, "albumArtist"}, - {QmlLibraryTrackListModel::FileUrlRole, "fileUrl"}, + {Qt::DisplayRole, "display"}, + {Qt::DecorationRole, "decoration"}, + {QmlLibraryTrackListModel::Delegate, "delegate"}, + {QmlLibraryTrackListModel::Track, "track"}, + {QmlLibraryTrackListModel::FileURL, "file_url"}, + {QmlLibraryTrackListModel::CoverArt, "cover_art"}, }; + +QColor colorFromRgbCode(double colorValue) { + if (colorValue < 0 || colorValue > 0xFFFFFF) { + return {}; + } + + QRgb rgbValue = static_cast(colorValue) | 0xFF000000; + return QColor(rgbValue); } +} // namespace -QmlLibraryTrackListModel::QmlLibraryTrackListModel(LibraryTableModel* pModel, QObject* pParent) - : QIdentityProxyModel(pParent) { - pModel->select(); +QmlLibraryTrackListModel::QmlLibraryTrackListModel( + const QList& librarySource, + QAbstractItemModel* pModel, + QObject* pParent) + : QIdentityProxyModel(pParent), + m_columns() { + m_columns.reserve(librarySource.size()); + for (const auto* pColumn : std::as_const(librarySource)) { + m_columns.emplace_back(make_parented(this, + pColumn->label(), + pColumn->fillSpan(), + pColumn->columnIdx(), + pColumn->preferredWidth(), + pColumn->delegate(), + pColumn->role())); + } + + auto* pTrackModel = dynamic_cast(pModel); + VERIFY_OR_DEBUG_ASSERT(pTrackModel) { + return; + } + pTrackModel->select(); setSourceModel(pModel); } @@ -29,72 +74,148 @@ QVariant QmlLibraryTrackListModel::data(const QModelIndex& proxyIndex, int role) VERIFY_OR_DEBUG_ASSERT(checkIndex(proxyIndex)) { return {}; } - - const auto pSourceModel = static_cast(sourceModel()); - VERIFY_OR_DEBUG_ASSERT(pSourceModel) { + auto columnIdx = proxyIndex.column(); + VERIFY_OR_DEBUG_ASSERT(columnIdx >= 0 || columnIdx < m_columns.size()) { return {}; } - if (proxyIndex.column() > 0) { - return {}; - } + auto* const pTrackTableModel = qobject_cast(sourceModel()); + auto* const pTrackModel = dynamic_cast(sourceModel()); + + const auto& pColumn = m_columns[columnIdx]; - int column = -1; switch (role) { - case TitleRole: - column = pSourceModel->fieldIndex(ColumnCache::COLUMN_LIBRARYTABLE_TITLE); - break; - case ArtistRole: - column = pSourceModel->fieldIndex(ColumnCache::COLUMN_LIBRARYTABLE_ARTIST); - break; - case AlbumRole: - column = pSourceModel->fieldIndex(ColumnCache::COLUMN_LIBRARYTABLE_ALBUM); - break; - case AlbumArtistRole: - column = pSourceModel->fieldIndex(ColumnCache::COLUMN_LIBRARYTABLE_ALBUMARTIST); - break; - case FileUrlRole: { - column = pSourceModel->fieldIndex(ColumnCache::COLUMN_TRACKLOCATIONSTABLE_LOCATION); - const QString location = QIdentityProxyModel::data( - proxyIndex.siblingAtColumn(column), Qt::DisplayRole) - .toString(); + case Track: { + if (pTrackModel == nullptr) { + return {}; + } + auto pTrack = make_qml_owned(pTrackModel->getTrack( + QIdentityProxyModel::mapToSource(proxyIndex))); + return QVariant::fromValue(pTrack.get()); + } + case Qt::DecorationRole: { + if (pTrackTableModel == nullptr) { + return {}; + }; + return colorFromRgbCode(QIdentityProxyModel::data( + proxyIndex.siblingAtColumn(pTrackTableModel->fieldIndex( + ColumnCache::COLUMN_LIBRARYTABLE_COLOR)), + Qt::DisplayRole) + .toDouble()); + } + case CoverArt: { + QString location; + if (pTrackTableModel != nullptr) { + location = QIdentityProxyModel::data( + proxyIndex.siblingAtColumn(pTrackTableModel->fieldIndex( + ColumnCache::COLUMN_TRACKLOCATIONSTABLE_LOCATION)), + Qt::DisplayRole) + .toString(); + } else if (pTrackModel != nullptr) { + auto pTrack = pTrackModel->getTrack( + QIdentityProxyModel::mapToSource(proxyIndex)); + location = pTrack->getCoverInfo().coverLocation; + } if (location.isEmpty()) { return {}; } - return QUrl::fromLocalFile(location); + + return AsyncImageProvider::trackLocationToCoverArtUrl(location); + } + case FileURL: { + if (pTrackModel == nullptr) { + return {}; + } + return pTrackModel->getTrackUrl(QIdentityProxyModel::mapToSource(proxyIndex)); } - default: + case Delegate: + return QVariant::fromValue(pColumn->delegate()); break; } - - if (column < 0) { - return {}; + if (pColumn->columnIdx() < 0) { + // Use proxyIndex.column() + return QIdentityProxyModel::data(proxyIndex, role); } - - return QIdentityProxyModel::data(proxyIndex.siblingAtColumn(column), Qt::DisplayRole); + return QIdentityProxyModel::data( + proxyIndex.siblingAtColumn(pTrackTableModel != nullptr + ? pTrackTableModel->fieldIndex( + static_cast( + pColumn->columnIdx())) + : pColumn->columnIdx()), + role); } int QmlLibraryTrackListModel::columnCount(const QModelIndex& parent) const { - // This is a list model, i.e. no entries have a parent. - VERIFY_OR_DEBUG_ASSERT(!parent.isValid()) { + VERIFY_OR_DEBUG_ASSERT(static_cast( + parent.internalPointer()) != this) { return 0; } + return m_columns.size(); +} - // There is exactly one column. All data is exposed as roles. - return 1; +QVariant QmlLibraryTrackListModel::headerData( + int section, Qt::Orientation orientation, int role) const { + VERIFY_OR_DEBUG_ASSERT(section >= 0 || section < m_columns.size()) { + return {}; + } + // TODO role + return m_columns[section]->label(); } QHash QmlLibraryTrackListModel::roleNames() const { return kRoleNames; } -QVariant QmlLibraryTrackListModel::get(int row) const { - QModelIndex idx = index(row, 0); - QVariantMap dataMap; - for (auto it = kRoleNames.constBegin(); it != kRoleNames.constEnd(); it++) { - dataMap.insert(it.value(), data(idx, it.key())); +QUrl QmlLibraryTrackListModel::getUrl(int row) const { + auto* const pTrackModel = dynamic_cast(sourceModel()); + + if (pTrackModel == nullptr) { + // TODO search for column with role + return {}; + } + return pTrackModel->getTrackUrl(sourceModel()->index(row, 0)); +} + +QmlTrackProxy* QmlLibraryTrackListModel::getTrack(int row) const { + auto* const pTrackModel = dynamic_cast(sourceModel()); + + if (pTrackModel == nullptr) { + // TODO search for column with role + return {}; + } + return make_qml_owned(pTrackModel->getTrack(sourceModel()->index(row, 0))); +} + +TrackModel::Capabilities QmlLibraryTrackListModel::getCapabilities() const { + auto* const pTrackModel = dynamic_cast(sourceModel()); + + if (pTrackModel != nullptr) { + return pTrackModel->getCapabilities(); + } + return TrackModel::Capability::None; +} +bool QmlLibraryTrackListModel::hasCapabilities(TrackModel::Capabilities caps) const { + return (getCapabilities() & caps) == caps; +} +void QmlLibraryTrackListModel::sort(int column, Qt::SortOrder order) { + VERIFY_OR_DEBUG_ASSERT(column >= 0 || column < m_columns.size()) { + return; + } + const auto& pColumn = m_columns[column]; + emit layoutAboutToBeChanged(QList(), + QAbstractItemModel::VerticalSortHint); + if (pColumn->columnIdx() < 0) { + // Use proxyIndex.column() + return sourceModel()->sort(column, order); } - return dataMap; + auto* const pTrackTableModel = qobject_cast(sourceModel()); + sourceModel()->sort(pTrackTableModel != nullptr + ? pTrackTableModel->fieldIndex( + static_cast( + pColumn->columnIdx())) + : pColumn->columnIdx(), + order); + emit layoutChanged(QList(), QAbstractItemModel::VerticalSortHint); } } // namespace qml diff --git a/src/qml/qmllibrarytracklistmodel.h b/src/qml/qmllibrarytracklistmodel.h index 10d8e9d5353f..6ee7203b8ae9 100644 --- a/src/qml/qmllibrarytracklistmodel.h +++ b/src/qml/qmllibrarytracklistmodel.h @@ -2,7 +2,9 @@ #include #include -class LibraryTableModel; +#include "library/trackmodel.h" +#include "qml/qmllibrarytracklistcolumn.h" +#include "qml/qmltrackproxy.h" namespace mixxx { namespace qml { @@ -10,25 +12,97 @@ namespace qml { class QmlLibraryTrackListModel : public QIdentityProxyModel { Q_OBJECT QML_NAMED_ELEMENT(LibraryTrackListModel) - QML_UNCREATABLE("Only accessible via Mixxx.Library.model") + Q_PROPERTY(QQmlListProperty columns READ columns FINAL) + QML_UNCREATABLE("Only accessible via Mixxx.Library") public: enum Roles { - TitleRole = Qt::UserRole, - ArtistRole, - AlbumRole, - AlbumArtistRole, - FileUrlRole, + Track = Qt::UserRole, + FileURL, + CoverArt, + Delegate }; Q_ENUM(Roles); - QmlLibraryTrackListModel(LibraryTableModel* pModel, QObject* pParent = nullptr); + // FIXME Remove the enum duplication with the `Capability` in `trackmodel.h` + enum class Capability { + None = 0u, + Reorder = 1u << 0u, + ReceiveDrops = 1u << 1u, + AddToTrackSet = 1u << 2u, + AddToAutoDJ = 1u << 3u, + Locked = 1u << 4u, + EditMetadata = 1u << 5u, + LoadToDeck = 1u << 6u, + LoadToSampler = 1u << 7u, + LoadToPreviewDeck = 1u << 8u, + Remove = 1u << 9u, + ResetPlayed = 1u << 10u, + Hide = 1u << 11u, + Unhide = 1u << 12u, + Purge = 1u << 13u, + RemovePlaylist = 1u << 14u, + RemoveCrate = 1u << 15u, + RemoveFromDisk = 1u << 16u, + Analyze = 1u << 17u, + Properties = 1u << 18u, + Sorting = 1u << 19u, + }; + Q_ENUM(Capability) + + QmlLibraryTrackListModel(const QList& librarySource, + QAbstractItemModel* pModel, + QObject* pParent = nullptr); ~QmlLibraryTrackListModel() = default; + QQmlListProperty columns() { + return {this, + &m_columns, + parent_qlist_append, + parent_qlist_count, + parent_qlist_at, + parent_qlist_clear}; + } + QVariant data(const QModelIndex& index, int role) const override; int columnCount(const QModelIndex& index = QModelIndex()) const override; + Q_INVOKABLE QUrl getUrl(int row) const; + Q_INVOKABLE mixxx::qml::QmlTrackProxy* getTrack(int row) const; + Q_INVOKABLE TrackModel::Capabilities getCapabilities() const; + Q_INVOKABLE bool hasCapabilities(TrackModel::Capabilities caps) const; QHash roleNames() const override; - Q_INVOKABLE QVariant get(int row) const; + Q_INVOKABLE QVariant headerData(int section, + Qt::Orientation orientation, + int role = Qt::DisplayRole) const override; + Q_INVOKABLE void sort(int column, Qt::SortOrder order) override; + + private: + std::vector> m_columns; + + static void parent_qlist_append( + QQmlListProperty* p, + QmlLibraryTrackListColumn* v) { + reinterpret_cast>*>( + p->data) + ->emplace_back(v); + } + static qsizetype parent_qlist_count(QQmlListProperty* p) { + return reinterpret_cast< + std::vector>*>(p->data) + ->size(); + } + static QmlLibraryTrackListColumn* parent_qlist_at( + QQmlListProperty* p, qsizetype idx) { + return reinterpret_cast< + std::vector>*>(p->data) + ->at(idx) + .get(); + } + static void parent_qlist_clear(QQmlListProperty* p) { + return reinterpret_cast< + std::vector>*>(p->data) + ->clear(); + } }; } // namespace qml diff --git a/src/qml/qmlplayermanagerproxy.cpp b/src/qml/qmlplayermanagerproxy.cpp index 2544b34f3ad5..cc2d1b3a8e97 100644 --- a/src/qml/qmlplayermanagerproxy.cpp +++ b/src/qml/qmlplayermanagerproxy.cpp @@ -5,6 +5,7 @@ #include "mixer/playermanager.h" #include "moc_qmlplayermanagerproxy.cpp" #include "qml/qmlplayerproxy.h" +#include "track/track_decl.h" namespace mixxx { namespace qml { @@ -31,6 +32,20 @@ QmlPlayerProxy* QmlPlayerManagerProxy::getPlayer(const QString& group) { [this, group](const QString& trackLocation, bool play) { loadLocationToPlayer(trackLocation, group, play); }); + connect(pPlayerProxy, + &QmlPlayerProxy::loadTrackRequested, + this, + [this, group](TrackPointer track, +#ifdef __STEM__ + mixxx::StemChannelSelection stemSelection, +#endif + bool play) { + loadTrackToPlayer(track, group, +#ifdef __STEM__ + stemSelection, +#endif + play); + }); connect(pPlayerProxy, &QmlPlayerProxy::cloneFromGroup, this, @@ -59,6 +74,19 @@ void QmlPlayerManagerProxy::loadLocationToPlayer( m_pPlayerManager->slotLoadLocationToPlayer(location, group, play); } +void QmlPlayerManagerProxy::loadTrackToPlayer(TrackPointer track, + const QString& group, +#ifdef __STEM__ + mixxx::StemChannelSelection stemSelection, +#endif + bool play) { + m_pPlayerManager->slotLoadTrackToPlayer(track, group, +#ifdef __STEM__ + stemSelection, +#endif + play); +} + // static QmlPlayerManagerProxy* QmlPlayerManagerProxy::create(QQmlEngine* pQmlEngine, QJSEngine* pJsEngine) { // The implementation of this method is mostly taken from the code example diff --git a/src/qml/qmlplayermanagerproxy.h b/src/qml/qmlplayermanagerproxy.h index 1cf650b7ceb8..3f23ad664867 100644 --- a/src/qml/qmlplayermanagerproxy.h +++ b/src/qml/qmlplayermanagerproxy.h @@ -24,6 +24,12 @@ class QmlPlayerManagerProxy : public QObject { const QUrl& locationUrl, bool play = false); Q_INVOKABLE void loadLocationToPlayer( const QString& location, const QString& group, bool play = false); + Q_INVOKABLE void loadTrackToPlayer(TrackPointer track, + const QString& group, +#ifdef __STEM__ + mixxx::StemChannelSelection stemSelection, +#endif + bool play); static QmlPlayerManagerProxy* create(QQmlEngine* pQmlEngine, QJSEngine* pJsEngine); static void registerPlayerManager(std::shared_ptr pPlayerManager) { diff --git a/src/qml/qmlplayerproxy.cpp b/src/qml/qmlplayerproxy.cpp index d3b6056fda6b..ba5b58ea2b6d 100644 --- a/src/qml/qmlplayerproxy.cpp +++ b/src/qml/qmlplayerproxy.cpp @@ -1,42 +1,19 @@ #include "qml/qmlplayerproxy.h" #include +#include #include "mixer/basetrackplayer.h" #include "moc_qmlplayerproxy.cpp" -#include "qml/asyncimageprovider.h" - -#define PROPERTY_IMPL_GETTER(TYPE, NAME, GETTER) \ - TYPE QmlPlayerProxy::GETTER() const { \ - const TrackPointer pTrack = m_pCurrentTrack; \ - if (pTrack == nullptr) { \ - return TYPE(); \ - } \ - return pTrack->GETTER(); \ - } - -#define PROPERTY_IMPL(TYPE, NAME, GETTER, SETTER) \ - PROPERTY_IMPL_GETTER(TYPE, NAME, GETTER) \ - void QmlPlayerProxy::SETTER(const TYPE& value) { \ - const TrackPointer pTrack = m_pCurrentTrack; \ - if (pTrack != nullptr) { \ - pTrack->SETTER(value); \ - } \ - } +#include "qmltrackproxy.h" +#include "track/track.h" namespace mixxx { namespace qml { QmlPlayerProxy::QmlPlayerProxy(BaseTrackPlayer* pTrackPlayer, QObject* parent) : QObject(parent), - m_pTrackPlayer(pTrackPlayer), - m_pBeatsModel(new QmlBeatsModel(this)), - m_pHotcuesModel(new QmlCuesModel(this)) -#ifdef __STEM__ - , - m_pStemsModel(std::make_unique(this)) -#endif -{ + m_pTrackPlayer(pTrackPlayer) { connect(m_pTrackPlayer, &BaseTrackPlayer::loadingTrack, this, @@ -46,15 +23,25 @@ QmlPlayerProxy::QmlPlayerProxy(BaseTrackPlayer* pTrackPlayer, QObject* parent) this, &QmlPlayerProxy::slotTrackLoaded); connect(m_pTrackPlayer, - &BaseTrackPlayer::playerEmpty, + &BaseTrackPlayer::trackUnloaded, this, - &QmlPlayerProxy::trackUnloaded); - connect(this, &QmlPlayerProxy::trackChanged, this, &QmlPlayerProxy::slotTrackChanged); + &QmlPlayerProxy::slotTrackUnloaded); if (m_pTrackPlayer && m_pTrackPlayer->getLoadedTrack()) { slotTrackLoaded(pTrackPlayer->getLoadedTrack()); } } +void QmlPlayerProxy::loadTrack(QmlTrackProxy* track, bool play) { + if (track == nullptr || track->internal() == nullptr) { + return; + } + emit loadTrackRequested(track->internal(), +#ifdef __STEM__ + mixxx::StemChannel::All, +#endif + play); +} + void QmlPlayerProxy::loadTrackFromLocation(const QString& trackLocation, bool play) { emit loadTrackFromLocationRequested(trackLocation, play); } @@ -69,323 +56,47 @@ void QmlPlayerProxy::loadTrackFromLocationUrl(const QUrl& trackLocationUrl, bool void QmlPlayerProxy::slotTrackLoaded(TrackPointer pTrack) { m_pCurrentTrack = pTrack; - if (pTrack != nullptr) { - connect(pTrack.get(), - &Track::artistChanged, - this, - &QmlPlayerProxy::artistChanged); - connect(pTrack.get(), - &Track::titleChanged, - this, - &QmlPlayerProxy::titleChanged); - connect(pTrack.get(), - &Track::albumChanged, - this, - &QmlPlayerProxy::albumChanged); - connect(pTrack.get(), - &Track::albumArtistChanged, - this, - &QmlPlayerProxy::albumArtistChanged); - connect(pTrack.get(), - &Track::genreChanged, - this, - &QmlPlayerProxy::genreChanged); - connect(pTrack.get(), - &Track::composerChanged, - this, - &QmlPlayerProxy::composerChanged); - connect(pTrack.get(), - &Track::groupingChanged, - this, - &QmlPlayerProxy::groupingChanged); - connect(pTrack.get(), - &Track::yearChanged, - this, - &QmlPlayerProxy::yearChanged); - connect(pTrack.get(), - &Track::trackNumberChanged, - this, - &QmlPlayerProxy::trackNumberChanged); - connect(pTrack.get(), - &Track::trackTotalChanged, - this, - &QmlPlayerProxy::trackTotalChanged); - connect(pTrack.get(), - &Track::commentChanged, - this, - &QmlPlayerProxy::commentChanged); - connect(pTrack.get(), - &Track::keyChanged, - this, - &QmlPlayerProxy::keyTextChanged); - connect(pTrack.get(), - &Track::colorUpdated, - this, - &QmlPlayerProxy::colorChanged); - connect(pTrack.get(), - &Track::waveformUpdated, - this, - &QmlPlayerProxy::slotWaveformChanged); - connect(pTrack.get(), - &Track::beatsUpdated, - this, - &QmlPlayerProxy::slotBeatsChanged); - connect(pTrack.get(), - &Track::cuesUpdated, - this, - &QmlPlayerProxy::slotHotcuesChanged); -#ifdef __STEM__ - connect(pTrack.get(), - &Track::stemsUpdated, - this, - &QmlPlayerProxy::slotStemsChanged); -#endif - slotBeatsChanged(); - slotHotcuesChanged(); -#ifdef __STEM__ - slotStemsChanged(); -#endif - slotWaveformChanged(); - } emit trackChanged(); emit trackLoaded(); } -void QmlPlayerProxy::slotLoadingTrack(TrackPointer pNewTrack, TrackPointer pOldTrack) { +void QmlPlayerProxy::slotTrackUnloaded(TrackPointer pOldTrack) { VERIFY_OR_DEBUG_ASSERT(pOldTrack == m_pCurrentTrack) { qWarning() << "QML Player proxy was expected to contain " << pOldTrack.get() << "as active track but got" << m_pCurrentTrack.get(); } - - if (pNewTrack.get() == m_pCurrentTrack.get()) { - emit trackLoading(); - return; - } - - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack != nullptr) { - disconnect(pTrack.get(), nullptr, this, nullptr); + if (m_pCurrentTrack != nullptr) { + disconnect(m_pCurrentTrack.get(), nullptr, this, nullptr); } m_pCurrentTrack.reset(); - m_pCurrentTrack = pNewTrack; - m_waveformTexture = QImage(); emit trackChanged(); - emit trackLoading(); -} - -void QmlPlayerProxy::slotTrackChanged() { - emit artistChanged(); - emit titleChanged(); - emit albumChanged(); - emit albumArtistChanged(); - emit genreChanged(); - emit composerChanged(); - emit groupingChanged(); - emit yearChanged(); - emit trackNumberChanged(); - emit trackTotalChanged(); - emit commentChanged(); - emit keyTextChanged(); - emit colorChanged(); - emit coverArtUrlChanged(); - emit trackLocationUrlChanged(); -#ifdef __STEM__ - emit stemsChanged(); -#endif - - emit waveformLengthChanged(); - emit waveformTextureChanged(); - emit waveformTextureSizeChanged(); - emit waveformTextureStrideChanged(); + emit trackUnloaded(); } -void QmlPlayerProxy::slotWaveformChanged() { - emit waveformLengthChanged(); - emit waveformTextureSizeChanged(); - emit waveformTextureStrideChanged(); - - const TrackPointer pTrack = m_pCurrentTrack; - if (!pTrack) { - return; - } - const ConstWaveformPointer pWaveform = - pTrack->getWaveform(); - if (!pWaveform) { - return; - } - const int textureWidth = pWaveform->getTextureStride(); - const int textureHeight = pWaveform->getTextureSize() / pWaveform->getTextureStride(); - - const WaveformData* data = pWaveform->data(); - // Make a copy of the waveform data, stripping the stems portion. Note that the datasize is - // different from the texture size -- we want the full texture size so the upload works. See - // m_data in waveform/waveform.h. - m_waveformData.resize(pWaveform->getTextureSize()); - for (int i = 0; i < pWaveform->getDataSize(); i++) { - m_waveformData[i] = data[i].filtered; - } - - m_waveformTexture = - QImage(reinterpret_cast(m_waveformData.data()), - textureWidth, - textureHeight, - QImage::Format_RGBA8888); - DEBUG_ASSERT(!m_waveformTexture.isNull()); - emit waveformTextureChanged(); -} - -void QmlPlayerProxy::slotBeatsChanged() { - VERIFY_OR_DEBUG_ASSERT(m_pBeatsModel != nullptr) { - return; - } - - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack) { - const auto trackEndPosition = mixxx::audio::FramePos{ - pTrack->getDuration() * pTrack->getSampleRate()}; - const auto pBeats = pTrack->getBeats(); - m_pBeatsModel->setBeats(pBeats, trackEndPosition); - } else { - m_pBeatsModel->setBeats(nullptr, audio::kStartFramePos); - } +QmlTrackProxy* QmlPlayerProxy::currentTrack() { + auto* pTrack = new QmlTrackProxy(m_pCurrentTrack, this); + QQmlEngine::setObjectOwnership(pTrack, QQmlEngine::JavaScriptOwnership); + return pTrack; } -#ifdef __STEM__ -void QmlPlayerProxy::slotStemsChanged() { - VERIFY_OR_DEBUG_ASSERT(m_pStemsModel != nullptr) { - return; - } - - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack) { - m_pStemsModel->setStems(pTrack->getStemInfo()); - emit stemsChanged(); - } -} -#endif - -void QmlPlayerProxy::slotHotcuesChanged() { - VERIFY_OR_DEBUG_ASSERT(m_pHotcuesModel != nullptr) { +void QmlPlayerProxy::slotLoadingTrack(TrackPointer pNewTrack, TrackPointer pOldTrack) { + if (pNewTrack.get() == m_pCurrentTrack.get()) { + emit trackLoading(); return; } - QList hotcues; - - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack) { - const auto& cuePoints = pTrack->getCuePoints(); - for (const auto& cuePoint : cuePoints) { - if (cuePoint->getHotCue() == Cue::kNoHotCue) - continue; - hotcues.append(cuePoint); - } + if (m_pCurrentTrack != nullptr) { + disconnect(m_pCurrentTrack.get(), nullptr, this, nullptr); } - m_pHotcuesModel->setCues(hotcues); - emit cuesChanged(); -} - -int QmlPlayerProxy::getWaveformLength() const { - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack) { - const ConstWaveformPointer pWaveform = pTrack->getWaveform(); - if (pWaveform) { - return pWaveform->getDataSize(); - } - } - return 0; -} - -QString QmlPlayerProxy::getWaveformTexture() const { - if (m_waveformTexture.isNull()) { - return QString(); - } - QByteArray byteArray; - QBuffer buffer(&byteArray); - buffer.open(QIODevice::WriteOnly); - m_waveformTexture.save(&buffer, "png"); - - QString imageData = QString::fromLatin1(byteArray.toBase64().data()); - if (imageData.isEmpty()) { - return QString(); - } - - return QStringLiteral("data:image/png;base64,") + imageData; -} - -int QmlPlayerProxy::getWaveformTextureSize() const { - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack) { - const ConstWaveformPointer pWaveform = pTrack->getWaveform(); - if (pWaveform) { - return pWaveform->getTextureSize(); - } - } - return 0; -} - -int QmlPlayerProxy::getWaveformTextureStride() const { - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack) { - const ConstWaveformPointer pWaveform = pTrack->getWaveform(); - if (pWaveform) { - return pWaveform->getTextureStride(); - } - } - return 0; + m_pCurrentTrack = pNewTrack; + emit trackChanged(); + emit trackLoading(); } bool QmlPlayerProxy::isLoaded() const { return m_pCurrentTrack != nullptr; } -PROPERTY_IMPL(QString, artist, getArtist, setArtist) -PROPERTY_IMPL(QString, title, getTitle, setTitle) -PROPERTY_IMPL(QString, album, getAlbum, setAlbum) -PROPERTY_IMPL(QString, albumArtist, getAlbumArtist, setAlbumArtist) -PROPERTY_IMPL_GETTER(QString, genre, getGenre) -PROPERTY_IMPL(QString, composer, getComposer, setComposer) -PROPERTY_IMPL(QString, grouping, getGrouping, setGrouping) -PROPERTY_IMPL(QString, year, getYear, setYear) -PROPERTY_IMPL(QString, trackNumber, getTrackNumber, setTrackNumber) -PROPERTY_IMPL(QString, trackTotal, getTrackTotal, setTrackTotal) -PROPERTY_IMPL(QString, comment, getComment, setComment) -PROPERTY_IMPL(QString, keyText, getKeyText, setKeyText) - -QColor QmlPlayerProxy::getColor() const { - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack == nullptr) { - return QColor(); - } - return RgbColor::toQColor(pTrack->getColor()); -} - -void QmlPlayerProxy::setColor(const QColor& value) { - const TrackPointer pTrack = m_pTrackPlayer->getLoadedTrack(); - if (pTrack != nullptr) { - std::optional color = RgbColor::fromQColor(value); - pTrack->setColor(color); - } -} - -QUrl QmlPlayerProxy::getCoverArtUrl() const { - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack == nullptr) { - return QUrl(); - } - - const CoverInfo coverInfo = pTrack->getCoverInfoWithLocation(); - return AsyncImageProvider::trackLocationToCoverArtUrl(coverInfo.trackLocation); -} - -QUrl QmlPlayerProxy::getTrackLocationUrl() const { - const TrackPointer pTrack = m_pCurrentTrack; - if (pTrack == nullptr) { - return QUrl(); - } - - return QUrl::fromLocalFile(pTrack->getLocation()); -} - } // namespace qml } // namespace mixxx diff --git a/src/qml/qmlplayerproxy.h b/src/qml/qmlplayerproxy.h index 54f42bb9c9a3..538639bdb0fa 100644 --- a/src/qml/qmlplayerproxy.h +++ b/src/qml/qmlplayerproxy.h @@ -7,115 +7,36 @@ #include #include "mixer/basetrackplayer.h" -#include "qml/qmlbeatsmodel.h" -#include "qml/qmlcuesmodel.h" -#include "qml/qmlstemsmodel.h" -#include "track/cueinfo.h" -#include "track/track.h" -#include "waveform/waveform.h" +#include "qmltrackproxy.h" +#include "track/track_decl.h" namespace mixxx { namespace qml { class QmlPlayerProxy : public QObject { Q_OBJECT + Q_PROPERTY(QmlTrackProxy* currentTrack READ currentTrack NOTIFY trackChanged) Q_PROPERTY(bool isLoaded READ isLoaded NOTIFY trackChanged) - Q_PROPERTY(QString artist READ getArtist WRITE setArtist NOTIFY artistChanged) - Q_PROPERTY(QString title READ getTitle WRITE setTitle NOTIFY titleChanged) - Q_PROPERTY(QString album READ getAlbum WRITE setAlbum NOTIFY albumChanged) - Q_PROPERTY(QString albumArtist READ getAlbumArtist WRITE setAlbumArtist - NOTIFY albumArtistChanged) - Q_PROPERTY(QString genre READ getGenre STORED false NOTIFY genreChanged) - Q_PROPERTY(QString composer READ getComposer WRITE setComposer NOTIFY composerChanged) - Q_PROPERTY(QString grouping READ getGrouping WRITE setGrouping NOTIFY groupingChanged) - Q_PROPERTY(QString year READ getYear WRITE setYear NOTIFY yearChanged) - Q_PROPERTY(QString trackNumber READ getTrackNumber WRITE setTrackNumber - NOTIFY trackNumberChanged) - Q_PROPERTY(QString trackTotal READ getTrackTotal WRITE setTrackTotal NOTIFY trackTotalChanged) - Q_PROPERTY(QString comment READ getComment WRITE setComment NOTIFY commentChanged) - Q_PROPERTY(QString keyText READ getKeyText WRITE setKeyText NOTIFY keyTextChanged) - Q_PROPERTY(QColor color READ getColor WRITE setColor NOTIFY colorChanged) - Q_PROPERTY(QUrl coverArtUrl READ getCoverArtUrl NOTIFY coverArtUrlChanged) - Q_PROPERTY(QUrl trackLocationUrl READ getTrackLocationUrl NOTIFY trackLocationUrlChanged) QML_NAMED_ELEMENT(Player) QML_UNCREATABLE("Only accessible via Mixxx.PlayerManager.getPlayer(group)") - Q_PROPERTY(int waveformLength READ getWaveformLength NOTIFY waveformLengthChanged) - Q_PROPERTY(QString waveformTexture READ getWaveformTexture NOTIFY waveformTextureChanged) - Q_PROPERTY(int waveformTextureSize READ getWaveformTextureSize NOTIFY - waveformTextureSizeChanged) - Q_PROPERTY(int waveformTextureStride READ getWaveformTextureStride NOTIFY - waveformTextureStrideChanged) - - Q_PROPERTY(mixxx::qml::QmlBeatsModel* beatsModel MEMBER m_pBeatsModel CONSTANT); - Q_PROPERTY(mixxx::qml::QmlCuesModel* hotcuesModel MEMBER m_pHotcuesModel CONSTANT); -#ifdef __STEM__ - Q_PROPERTY(mixxx::qml::QmlStemsModel* stemsModel READ getStemsModel CONSTANT); -#endif - public: explicit QmlPlayerProxy(BaseTrackPlayer* pTrackPlayer, QObject* parent = nullptr); bool isLoaded() const; - QString getTrack() const; - QString getTitle() const; - QString getArtist() const; - QString getAlbum() const; - QString getAlbumArtist() const; - QString getGenre() const; - QString getComposer() const; - QString getGrouping() const; - QString getYear() const; - QString getTrackNumber() const; - QString getTrackTotal() const; - QString getComment() const; - QString getKeyText() const; - QColor getColor() const; - QUrl getCoverArtUrl() const; - QUrl getTrackLocationUrl() const; - - int getWaveformLength() const; - QString getWaveformTexture() const; - int getWaveformTextureSize() const; - int getWaveformTextureStride() const; - /// Needed for interacting with the raw track player object. BaseTrackPlayer* internalTrackPlayer() const { return m_pTrackPlayer; } + Q_INVOKABLE void loadTrack(mixxx::qml::QmlTrackProxy* track, bool play = false); Q_INVOKABLE void loadTrackFromLocation(const QString& trackLocation, bool play = false); Q_INVOKABLE void loadTrackFromLocationUrl(const QUrl& trackLocationUrl, bool play = false); -#ifdef __STEM__ - QmlStemsModel* getStemsModel() const { - return m_pStemsModel.get(); - } -#endif - public slots: void slotTrackLoaded(TrackPointer pTrack); + void slotTrackUnloaded(TrackPointer pOldTrack); void slotLoadingTrack(TrackPointer pNewTrack, TrackPointer pOldTrack); - void slotTrackChanged(); - void slotWaveformChanged(); - void slotBeatsChanged(); - void slotHotcuesChanged(); -#ifdef __STEM__ - void slotStemsChanged(); -#endif - - void setArtist(const QString& artist); - void setTitle(const QString& title); - void setAlbum(const QString& album); - void setAlbumArtist(const QString& albumArtist); - void setComposer(const QString& composer); - void setGrouping(const QString& grouping); - void setYear(const QString& year); - void setTrackNumber(const QString& trackNumber); - void setTrackTotal(const QString& trackTotal); - void setComment(const QString& comment); - void setKeyText(const QString& keyText); - void setColor(const QColor& color); signals: void trackLoading(); @@ -124,43 +45,18 @@ class QmlPlayerProxy : public QObject { void trackChanged(); void cloneFromGroup(const QString& group); - void albumChanged(); - void titleChanged(); - void artistChanged(); - void albumArtistChanged(); - void genreChanged(); - void composerChanged(); - void groupingChanged(); - void yearChanged(); - void trackNumberChanged(); - void trackTotalChanged(); - void commentChanged(); - void keyTextChanged(); - void colorChanged(); - void coverArtUrlChanged(); - void trackLocationUrlChanged(); - void cuesChanged(); + void loadTrackFromLocationRequested(const QString& trackLocation, bool play); + void loadTrackRequested(TrackPointer track, #ifdef __STEM__ - void stemsChanged(); + mixxx::StemChannelSelection stemSelection, #endif - - void loadTrackFromLocationRequested(const QString& trackLocation, bool play); - - void waveformLengthChanged(); - void waveformTextureChanged(); - void waveformTextureSizeChanged(); - void waveformTextureStrideChanged(); + bool play); private: - std::vector m_waveformData; - QImage m_waveformTexture; + QmlTrackProxy* currentTrack(); + QPointer m_pTrackPlayer; TrackPointer m_pCurrentTrack; - QmlBeatsModel* m_pBeatsModel; - QmlCuesModel* m_pHotcuesModel; -#ifdef __STEM__ - std::unique_ptr m_pStemsModel; -#endif }; } // namespace qml diff --git a/src/qml/qmlsettingparameter.cpp b/src/qml/qmlsettingparameter.cpp new file mode 100644 index 000000000000..a951c179df33 --- /dev/null +++ b/src/qml/qmlsettingparameter.cpp @@ -0,0 +1,74 @@ +#include "qml/qmlsettingparameter.h" + +#include +#include + +#include "moc_qmlsettingparameter.cpp" +#include "util/assert.h" + +namespace mixxx { +namespace qml { + +QmlSettingGroup::QmlSettingGroup(QQuickItem* parent) + : QQuickItem(parent) { +} +QmlSettingParameter::QmlSettingParameter(QQuickItem* parent) + : QmlSettingGroup(parent) { +} + +void QmlSettingParameter::componentComplete() { + QmlSettingGroup::componentComplete(); + QList pathItems; + auto* pParent = parentItem(); + while (pParent != nullptr) { + auto* pManager = qobject_cast(pParent); + if (pManager) { + pManager->registerSettingParamater(this, pathItems); + return; + } + auto* pGroup = qobject_cast(pParent); + if (pGroup) { + pathItems.prepend(pGroup); + } + pParent = pParent->parentItem(); + } + DEBUG_ASSERT(!"Couldn't find manager!"); +} + +QmlSettingParameterManager::QmlSettingParameterManager(QQuickItem* parent) + : QQuickItem(parent), + m_model(this) { + m_model.setSourceModel(&m_sourceModel); + m_model.setFilterKeyColumn(1); + m_model.setFilterCaseSensitivity(Qt::CaseInsensitive); +} +QmlSettingParameterManager::~QmlSettingParameterManager() { + // Manually deleting children so they can complete deregistration + qDeleteAll(childItems()); +} + +void QmlSettingParameterManager::registerSettingParamater( + QmlSettingParameter* pParameter, QList pathItems) { + QStringList path; + for (const auto* pItem : pathItems) { + path.append(pItem->label()); + } + pathItems.append(pParameter); + + auto* pItem = new QStandardItem(pParameter->label()); + pItem->setData(path.join(" > "), Qt::WhatsThisRole); + pItem->setData(QVariant::fromValue(pathItems), Qt::ToolTipRole); + m_sourceModel.appendRow(QList{pItem, + new QStandardItem(pParameter->label() + path.join(" > "))}); + auto rowIndex = m_sourceModel.index(m_sourceModel.rowCount() - 1, 0); + connect(pParameter, &QObject::destroyed, this, [this, rowIndex](QObject*) { + m_sourceModel.removeRow(rowIndex.row()); + }); +} + +void QmlSettingParameterManager::search(const QString& criteria) { + m_model.setFilterFixedString(criteria); +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmlsettingparameter.h b/src/qml/qmlsettingparameter.h new file mode 100644 index 000000000000..fc67c6b26772 --- /dev/null +++ b/src/qml/qmlsettingparameter.h @@ -0,0 +1,67 @@ +#pragma once +#include +#include +#include +#include + +namespace mixxx { +namespace qml { + +class QmlSettingGroup : public QQuickItem { + Q_OBJECT + Q_PROPERTY(QString label MEMBER m_label FINAL) + QML_NAMED_ELEMENT(SettingGroup) + public: + explicit QmlSettingGroup(QQuickItem* parent = nullptr); + + const QString& label() const { + return m_label; + } + signals: + Q_INVOKABLE void activated(); + + private: + QString m_label; +}; + +class QmlSettingParameterManager; +class QmlSettingParameter : public QmlSettingGroup { + Q_OBJECT + Q_PROPERTY(QStringList keywords MEMBER m_keywords FINAL) + QML_NAMED_ELEMENT(SettingParameter) + Q_INTERFACES(QQmlParserStatus) + public: + explicit QmlSettingParameter(QQuickItem* parent = nullptr); + + void componentComplete() override; + + const QStringList& keywords() const { + return m_keywords; + } + + private: + QStringList m_keywords; +}; + +class QmlSettingParameterManager : public QQuickItem { + Q_OBJECT + Q_PROPERTY(QSortFilterProxyModel* model READ model CONSTANT) + QML_NAMED_ELEMENT(SettingParameterManager) + public: + explicit QmlSettingParameterManager(QQuickItem* parent = nullptr); + ~QmlSettingParameterManager(); + + void registerSettingParamater(QmlSettingParameter* parameter, QList); + Q_INVOKABLE void search(const QString& criteria); + + QSortFilterProxyModel* model() { + return &m_model; + } + + private: + QStandardItemModel m_sourceModel; + QSortFilterProxyModel m_model; +}; + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmlsidebarmodelproxy.cpp b/src/qml/qmlsidebarmodelproxy.cpp new file mode 100644 index 000000000000..4483a732ccab --- /dev/null +++ b/src/qml/qmlsidebarmodelproxy.cpp @@ -0,0 +1,88 @@ +#include "qml/qmlsidebarmodelproxy.h" + +#include + +#include +#include +#include + +#include "library/treeitem.h" +#include "moc_qmlsidebarmodelproxy.cpp" +#include "qml/qmllibrarysource.h" +#include "util/assert.h" +#include "util/parented_ptr.h" + +namespace mixxx { +namespace qml { + +namespace { +const QHash kRoleNames = { + {Qt::DisplayRole, "label"}, + {QmlSidebarModelProxy::IconRole, "icon"}, +}; +} // namespace + +QHash QmlSidebarModelProxy::roleNames() const { + return kRoleNames; +} + +QVariant QmlSidebarModelProxy::get(int row) const { + QModelIndex idx = index(row, 0); + QVariantMap dataMap; + for (auto it = kRoleNames.constBegin(); it != kRoleNames.constEnd(); it++) { + dataMap.insert(it.value(), data(idx, it.key())); + } + return dataMap; +} + +void QmlSidebarModelProxy::activate(const QModelIndex& index) { + VERIFY_OR_DEBUG_ASSERT(index.isValid()) { + return; + } + if (index.internalPointer() == this) { + VERIFY_OR_DEBUG_ASSERT(index.row() >= 0 && index.row() < m_sFeatures.length()) { + return; + } + m_sFeatures[index.row()]->activate(); + } else { + TreeItem* pTreeItem = static_cast(index.internalPointer()); + VERIFY_OR_DEBUG_ASSERT(pTreeItem != nullptr) { + return; + } + LibraryFeature* pFeature = pTreeItem->feature(); + DEBUG_ASSERT(pFeature); + pFeature->activateChild(index); + pFeature->onLazyChildExpandation(index); + } +} + +QmlSidebarModelProxy::QmlSidebarModelProxy(QObject* parent) + : SidebarModel(parent), + m_tracklist(nullptr) { +} +QmlSidebarModelProxy::~QmlSidebarModelProxy() = default; + +void QmlSidebarModelProxy::update(const QList& sources) { + beginResetModel(); + qDeleteAll(m_sFeatures); + for (const auto& librarySource : sources) { + VERIFY_OR_DEBUG_ASSERT(librarySource) { + continue; + } + connect(librarySource, + &QmlLibrarySource::requestTrackModel, + this, + &QmlSidebarModelProxy::slotShowTrackModel); + auto* pLibrarySource = librarySource->internal(); + addLibraryFeature(pLibrarySource); + } + endResetModel(); +} + +void QmlSidebarModelProxy::slotShowTrackModel(std::shared_ptr pModel) { + m_tracklist = pModel; + emit tracklistChanged(); +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmlsidebarmodelproxy.h b/src/qml/qmlsidebarmodelproxy.h new file mode 100644 index 000000000000..8607da4c2562 --- /dev/null +++ b/src/qml/qmlsidebarmodelproxy.h @@ -0,0 +1,55 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "library/libraryfeature.h" +#include "library/sidebarmodel.h" +#include "qmllibrarytracklistmodel.h" +#include "util/parented_ptr.h" + +namespace mixxx { +namespace qml { + +class QmlLibrarySource; + +class QmlSidebarModelProxy : public SidebarModel { + Q_OBJECT + Q_PROPERTY(QmlLibraryTrackListModel* tracklist READ tracklist NOTIFY tracklistChanged) + QML_ANONYMOUS + public: + enum Roles { + LabelRole = Qt::UserRole, + IconRole, + }; + Q_ENUM(Roles); + Q_DISABLE_COPY_MOVE(QmlSidebarModelProxy) + explicit QmlSidebarModelProxy(QObject* parent = nullptr); + ~QmlSidebarModelProxy() override; + + QmlLibraryTrackListModel* tracklist() const { + return m_tracklist.get(); + } + + void update(const QList& sources); + QHash roleNames() const override; + Q_INVOKABLE QVariant get(int row) const; + Q_INVOKABLE void activate(const QModelIndex& index); + signals: + void tracklistChanged(); + + protected slots: + void slotShowTrackModel(std::shared_ptr pModel); + + private: + std::shared_ptr m_tracklist; +}; + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmlsoundmanagerproxy.cpp b/src/qml/qmlsoundmanagerproxy.cpp new file mode 100644 index 000000000000..2ca419d348d4 --- /dev/null +++ b/src/qml/qmlsoundmanagerproxy.cpp @@ -0,0 +1,264 @@ +#include "qmlsoundmanagerproxy.h" + +#include + +#include + +#include "moc_qmlsoundmanagerproxy.cpp" +#include "qml_owned_ptr.h" +#include "soundio/soundmanager.h" +#include "soundio/soundmanagerutil.h" +#include "util/assert.h" +#include "util/scopedoverridecursor.h" + +namespace mixxx { +namespace qml { + +namespace { +const QString kAppGroup = QStringLiteral("[App]"); +const ConfigKey kKeylockEngineCfgkey = + ConfigKey(kAppGroup, QStringLiteral("keylock_engine")); + +} // namespace + +uint QmlSoundInputDeviceProxy::getChannelCount() const { + return m_pInternal->getNumInputChannels(); +} +uint QmlSoundOutputDeviceProxy::getChannelCount() const { + return m_pInternal->getNumOutputChannels(); +} +SoundDeviceId QmlSoundDeviceProxy::getDeviceId() const { + return m_pInternal->getDeviceId(); +} + +QList QmlSoundInputDeviceProxy::connections( + mixxx::qml::QmlSoundManagerProxy* manager) { + DEBUG_ASSERT(qml_owned_ptr(manager)); + QList connections; + + auto pManager = manager->internal(); + auto config = pManager->getConfig(); + + const auto inputDeviceMap = config.getInputs(); + for (auto it = inputDeviceMap.cbegin(); it != inputDeviceMap.cend(); ++it) { + if (it.key() == getDeviceId()) { + connections.push_back(make_qml_owned( + std::make_unique(it.value()), this)); + } + } + return connections; +} + +QList QmlSoundOutputDeviceProxy::connections( + mixxx::qml::QmlSoundManagerProxy* manager) { + DEBUG_ASSERT(qml_owned_ptr(manager)); + QList connections; + + auto pManager = manager->internal(); + auto config = pManager->getConfig(); + const auto ouputDeviceMap = config.getOutputs(); + for (auto it = ouputDeviceMap.cbegin(); it != ouputDeviceMap.cend(); ++it) { + if (it.key() == getDeviceId()) { + connections.push_back(make_qml_owned( + std::make_unique(it.value()), this)); + } + } + return connections; +} + +int QmlSoundDeviceConnection::getType() const { + return static_cast(m_audioPath->getType()); +} + +uchar QmlSoundDeviceConnection::getChannelGroup() const { + auto group = m_audioPath->getChannelGroup(); + return group.getChannelBase(); +} +uchar QmlSoundDeviceConnection::getIndex() const { + return m_audioPath->getIndex(); +} + +QmlSoundManagerProxy::QmlSoundManagerProxy( + std::shared_ptr pSoundManager, + QObject* parent) + : QObject(parent), + m_pSoundManager(pSoundManager), + m_keylockEngine(kKeylockEngineCfgkey), + m_config(m_pSoundManager->getConfig()) { + connect(m_pSoundManager.get(), &SoundManager::devicesClosed, this, [this]() { + SoundDeviceStatus status = SoundDeviceStatus::Ok; + { + ScopedWaitCursor cursor; + + if (m_commitInProgress.fetchAndStoreRelease(0) != 1) { + return; + } + + status = m_pSoundManager->setConfig(m_config); + } + if (status != SoundDeviceStatus::Ok) { + emit committed(m_pSoundManager->getLastErrorMessage(status)); + } else { + emit committed(); + } + m_config = m_pSoundManager->getConfig(); + }); +} + +// static +QmlSoundManagerProxy* QmlSoundManagerProxy::create( + QQmlEngine* pQmlEngine, + QJSEngine*) { + // The instance has to exist before it is used. We cannot replace it. + VERIFY_OR_DEBUG_ASSERT(s_pSoundManager) { + qWarning() << "SoundManager hasn't been registered yet"; + return nullptr; + } + return make_qml_owned(s_pSoundManager, pQmlEngine); +} + +QList QmlSoundManagerProxy::getHostAPIList() const { + return m_pSoundManager->getHostAPIList(); +} + +QList QmlSoundManagerProxy::availableInputDevices(const QString& filterAPI) { + QList devices; + + for (const auto& device : m_pSoundManager->getDeviceList(filterAPI, false, true)) { + devices.push_back(make_qml_owned(device, this)); + } + + return devices; +} + +QList QmlSoundManagerProxy::availableOutputDevices(const QString& filterAPI) { + QList devices; + + for (const auto& device : m_pSoundManager->getDeviceList(filterAPI, true, false)) { + devices.push_back(make_qml_owned(device, this)); + } + + return devices; +} + +QList QmlSoundManagerProxy::getKeylockEngines() const { + QList list; + for (const auto engine : EngineBuffer::kKeylockEngines) { + if (EngineBuffer::isKeylockEngineAvailable(engine)) { + list.append(engine); + } + } + return list; +} + +void QmlSoundManagerProxy::setKeylockEngine(EngineBuffer::KeylockEngine keylockEngine) { + m_keylockEngine.set(static_cast(keylockEngine)); + m_pSoundManager->userSettings()->setValue(kKeylockEngineCfgkey, keylockEngine); +} + +EngineBuffer::KeylockEngine QmlSoundManagerProxy::getKeylockEngine() const { + return m_pSoundManager->userSettings() + ->getValue( + kKeylockEngineCfgkey, EngineBuffer::defaultKeylockEngine()); +} + +QString QmlSoundManagerProxy::getAPI() const { + return m_config.getAPI(); +} +void QmlSoundManagerProxy::setAPI(const QString& api) { + m_config.setAPI(api); +} + +unsigned int QmlSoundManagerProxy::getSyncBuffers() const { + return m_config.getSyncBuffers(); +} + +void QmlSoundManagerProxy::setSyncBuffers(unsigned int syncBuffers) { + m_config.setSyncBuffers(syncBuffers); +} + +uint32_t QmlSoundManagerProxy::getSampleRate() const { + return m_config.getSampleRate(); +} + +void QmlSoundManagerProxy::setSampleRate(uint32_t sampleRate) { + m_config.setSampleRate(mixxx::audio::SampleRate(sampleRate)); +} + +QList QmlSoundManagerProxy::getSampleRates(const QString& filterAPI) const { + QList sampleRates; + for (const auto& sampleRate : m_pSoundManager->getSampleRates(filterAPI)) { + if (sampleRate.isValid()) { + sampleRates.append(sampleRate); + } + } + return sampleRates; +} + +bool QmlSoundManagerProxy::getForceNetworkClock() const { + return m_config.getForceNetworkClock(); +} + +void QmlSoundManagerProxy::setForceNetworkClock(bool force) { + m_config.setForceNetworkClock(force); +} + +unsigned int QmlSoundManagerProxy::getAudioBufferSizeIndex() const { + return m_config.getAudioBufferSizeIndex(); +} + +void QmlSoundManagerProxy::setAudioBufferSizeIndex(unsigned int latency) { + m_config.setAudioBufferSizeIndex(latency); +} + +void QmlSoundManagerProxy::addOutput(QmlSoundOutputDeviceProxy* device, + int type, + unsigned char channelGroup, + unsigned char index) { + VERIFY_OR_DEBUG_ASSERT(device && qml_owned_ptr(device)) { + return; + } + m_config.addOutput(device->getDeviceId(), + AudioOutput(static_cast(type), + channelGroup, + mixxx::audio::ChannelCount::stereo(), + index)); +} + +void QmlSoundManagerProxy::addInput(QmlSoundInputDeviceProxy* device, + int type, + unsigned char channelGroup, + unsigned char index) { + VERIFY_OR_DEBUG_ASSERT(device && qml_owned_ptr(device)) { + return; + } + m_config.addInput(device->getDeviceId(), + AudioInput(static_cast(type), + channelGroup, + mixxx::audio::ChannelCount::stereo(), + index)); +} + +void QmlSoundManagerProxy::clearOutputs() { + m_config.clearOutputs(); +} + +void QmlSoundManagerProxy::clearInputs() { + m_config.clearInputs(); +} + +bool QmlSoundManagerProxy::hasMicInputs() { + return m_config.hasMicInputs(); +} + +std::shared_ptr QmlSoundManagerProxy::internal() const { + return m_pSoundManager; +} + +void QmlSoundManagerProxy::commit() { + m_commitInProgress.storeRelease(1); + m_pSoundManager->closeActiveConfig(true); +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmlsoundmanagerproxy.h b/src/qml/qmlsoundmanagerproxy.h new file mode 100644 index 000000000000..0cddcbbe15fc --- /dev/null +++ b/src/qml/qmlsoundmanagerproxy.h @@ -0,0 +1,178 @@ +#pragma once + +#include +#include + +#include +#include +#include +#include + +#include "control/pollingcontrolproxy.h" +#include "engine/enginebuffer.h" +#include "qml_owned_ptr.h" +#include "soundio/sounddevice.h" +#include "soundio/soundmanagerconfig.h" + +class SoundManager; + +namespace mixxx { +namespace qml { + +class QmlSoundManagerProxy; +class QmlSoundDeviceConnection; +class QmlSoundDeviceProxy : public QObject { + Q_OBJECT + Q_PROPERTY(QString displayName READ getDisplayName CONSTANT) + Q_PROPERTY(uint channelCount READ getChannelCount CONSTANT) + QML_ANONYMOUS + public: + explicit QmlSoundDeviceProxy(SoundDevicePointer pInternal, QObject* parent) + : QObject(parent), + m_pInternal(std::move(pInternal)) { + } + + QString getDisplayName() const { + return m_pInternal->getDisplayName(); + } + + virtual uint getChannelCount() const = 0; + SoundDeviceId getDeviceId() const; + + Q_INVOKABLE virtual QList connections( + mixxx::qml::QmlSoundManagerProxy* manager) = 0; + + protected: + SoundDevicePointer m_pInternal; +}; + +class QmlSoundInputDeviceProxy : public QmlSoundDeviceProxy { + Q_OBJECT + QML_NAMED_ELEMENT(InputDevice) + QML_UNCREATABLE("Use Mixxx.SoundManager to get devices") + public: + explicit QmlSoundInputDeviceProxy(SoundDevicePointer pInternal, QObject* parent) + : QmlSoundDeviceProxy(std::move(pInternal), parent) { + } + uint getChannelCount() const override; + Q_INVOKABLE QList connections( + mixxx::qml::QmlSoundManagerProxy* manager) override; +}; + +class QmlSoundOutputDeviceProxy : public QmlSoundDeviceProxy { + Q_OBJECT + QML_NAMED_ELEMENT(OutputDevice) + QML_UNCREATABLE("Use Mixxx.SoundManager to get devices") + public: + explicit QmlSoundOutputDeviceProxy(SoundDevicePointer pInternal, QObject* parent) + : QmlSoundDeviceProxy(std::move(pInternal), parent) { + } + uint getChannelCount() const override; + Q_INVOKABLE QList connections( + mixxx::qml::QmlSoundManagerProxy* manager) override; +}; + +class QmlSoundDeviceConnection : public QObject { + Q_OBJECT + Q_PROPERTY(int type READ getType CONSTANT) + Q_PROPERTY(uchar channelGroup READ getChannelGroup CONSTANT) + Q_PROPERTY(uchar index READ getIndex CONSTANT) + QML_ANONYMOUS + public: + QmlSoundDeviceConnection(std::unique_ptr path, QObject* parent = nullptr) + : QObject(parent), + m_audioPath(std::move(path)) { + } + + int getType() const; + uchar getChannelGroup() const; + uchar getIndex() const; + + private: + std::unique_ptr m_audioPath; +}; + +class QmlSoundDeviceInputConnection : public QmlSoundDeviceConnection { + Q_OBJECT + QML_NAMED_ELEMENT(InputConnection) + QML_UNCREATABLE("Use Mixxx.SoundDevice to get connections") + public: + QmlSoundDeviceInputConnection(std::unique_ptr path, QObject* parent = nullptr) + : QmlSoundDeviceConnection(std::move(path), parent) { + } +}; + +class QmlSoundDeviceOutputConnection : public QmlSoundDeviceConnection { + Q_OBJECT + QML_NAMED_ELEMENT(OutputConnection) + QML_UNCREATABLE("Use Mixxx.SoundDevice to get connections") + public: + QmlSoundDeviceOutputConnection(std::unique_ptr path, QObject* parent = nullptr) + : QmlSoundDeviceConnection(std::move(path), parent) { + } +}; + +class QmlSoundManagerProxy : public QObject { + Q_OBJECT + QML_NAMED_ELEMENT(SoundManager) + QML_SINGLETON + public: + explicit QmlSoundManagerProxy( + std::shared_ptr pSoundManager, + QObject* parent = nullptr); + + Q_INVOKABLE QList getHostAPIList() const; + Q_INVOKABLE QList availableInputDevices( + const QString& filterAPI); + Q_INVOKABLE QList availableOutputDevices( + const QString& filterAPI); + + Q_INVOKABLE QList getKeylockEngines() const; + Q_INVOKABLE EngineBuffer::KeylockEngine getKeylockEngine() const; + Q_INVOKABLE void setKeylockEngine(EngineBuffer::KeylockEngine); + Q_INVOKABLE QString getAPI() const; + Q_INVOKABLE void setAPI(const QString& api); + Q_INVOKABLE unsigned int getSyncBuffers() const; + Q_INVOKABLE void setSyncBuffers(unsigned int syncBuffers); + Q_INVOKABLE uint32_t getSampleRate() const; + Q_INVOKABLE void setSampleRate(uint32_t sampleRate); + Q_INVOKABLE bool getForceNetworkClock() const; + Q_INVOKABLE void setForceNetworkClock(bool force); + Q_INVOKABLE unsigned int getAudioBufferSizeIndex() const; + Q_INVOKABLE void setAudioBufferSizeIndex(unsigned int latency); + Q_INVOKABLE QList getSampleRates(const QString& filterAPI) const; + Q_INVOKABLE void addOutput(mixxx::qml::QmlSoundOutputDeviceProxy* device, + int type, + unsigned char channelGroup, + unsigned char index); + Q_INVOKABLE void addInput(mixxx::qml::QmlSoundInputDeviceProxy* device, + int type, + unsigned char channelGroup, + unsigned char index); + Q_INVOKABLE void clearOutputs(); + Q_INVOKABLE void clearInputs(); + Q_INVOKABLE bool hasMicInputs(); + + std::shared_ptr internal() const; + Q_INVOKABLE void commit(); + + static QmlSoundManagerProxy* create(QQmlEngine* pQmlEngine, QJSEngine* pJsEngine); + static void registerManager(std::shared_ptr pManager) { + s_pSoundManager = std::move(pManager); + } + + signals: + void committed(const QString& error = {}); + + private: + static inline std::shared_ptr s_pSoundManager; + + PollingControlProxy m_keylockEngine; + + std::shared_ptr m_pSoundManager; + SoundManagerConfig m_config; + QAtomicInt m_commitInProgress; +}; + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmltrackproxy.cpp b/src/qml/qmltrackproxy.cpp new file mode 100644 index 000000000000..61adb7af19b8 --- /dev/null +++ b/src/qml/qmltrackproxy.cpp @@ -0,0 +1,244 @@ +#include "qml/qmltrackproxy.h" + +#include + +#include "mixer/basetrackplayer.h" +#include "moc_qmltrackproxy.cpp" +#include "qml/asyncimageprovider.h" +#include "track/track.h" +#include "util/parented_ptr.h" + +#define PROPERTY_IMPL_GETTER(TYPE, NAME, GETTER) \ + TYPE QmlTrackProxy::GETTER() const { \ + const TrackPointer pTrack = m_pTrack; \ + if (pTrack == nullptr) { \ + return TYPE(); \ + } \ + return pTrack->GETTER(); \ + } + +#define PROPERTY_IMPL(TYPE, NAME, GETTER, SETTER) \ + PROPERTY_IMPL_GETTER(TYPE, NAME, GETTER) \ + void QmlTrackProxy::SETTER(const TYPE& value) { \ + const TrackPointer pTrack = m_pTrack; \ + if (pTrack != nullptr) { \ + pTrack->SETTER(value); \ + } \ + } + +namespace mixxx { +namespace qml { + +QmlTrackProxy::QmlTrackProxy(TrackPointer track, QObject* parent) + : QObject(parent), + m_pTrack(track), + m_pBeatsModel(make_parented(this)), + m_pHotcuesModel(make_parented(this)) +#ifdef __STEM__ + , + m_pStemsModel(make_parented(this)) +#endif +{ + if (m_pTrack == nullptr) { + return; + } + connect(m_pTrack.get(), + &Track::artistChanged, + this, + &QmlTrackProxy::artistChanged); + connect(m_pTrack.get(), + &Track::titleChanged, + this, + &QmlTrackProxy::titleChanged); + connect(m_pTrack.get(), + &Track::albumChanged, + this, + &QmlTrackProxy::albumChanged); + connect(m_pTrack.get(), + &Track::albumArtistChanged, + this, + &QmlTrackProxy::albumArtistChanged); + connect(m_pTrack.get(), + &Track::genreChanged, + this, + &QmlTrackProxy::genreChanged); + connect(m_pTrack.get(), + &Track::composerChanged, + this, + &QmlTrackProxy::composerChanged); + connect(m_pTrack.get(), + &Track::groupingChanged, + this, + &QmlTrackProxy::groupingChanged); + connect(m_pTrack.get(), + &Track::yearChanged, + this, + &QmlTrackProxy::yearChanged); + connect(m_pTrack.get(), + &Track::trackNumberChanged, + this, + &QmlTrackProxy::trackNumberChanged); + connect(m_pTrack.get(), + &Track::trackTotalChanged, + this, + &QmlTrackProxy::trackTotalChanged); + connect(m_pTrack.get(), + &Track::commentChanged, + this, + &QmlTrackProxy::commentChanged); + connect(m_pTrack.get(), + &Track::keyChanged, + this, + &QmlTrackProxy::keyTextChanged); + connect(m_pTrack.get(), + &Track::colorUpdated, + this, + &QmlTrackProxy::colorChanged); + connect(m_pTrack.get(), + &Track::beatsUpdated, + this, + &QmlTrackProxy::slotBeatsChanged); + connect(m_pTrack.get(), + &Track::cuesUpdated, + this, + &QmlTrackProxy::slotHotcuesChanged); + connect(m_pTrack.get(), + &Track::durationChanged, + this, + &QmlTrackProxy::durationChanged); +#ifdef __STEM__ + connect(m_pTrack.get(), + &Track::stemsUpdated, + this, + &QmlTrackProxy::slotStemsChanged); +#endif + slotBeatsChanged(); + slotHotcuesChanged(); +#ifdef __STEM__ + slotStemsChanged(); +#endif +} + +void QmlTrackProxy::slotBeatsChanged() { + VERIFY_OR_DEBUG_ASSERT(m_pBeatsModel) { + return; + } + + const TrackPointer pTrack = m_pTrack; + if (pTrack) { + const auto trackEndPosition = mixxx::audio::FramePos{ + pTrack->getDuration() * pTrack->getSampleRate()}; + const auto pBeats = pTrack->getBeats(); + m_pBeatsModel->setBeats(pBeats, trackEndPosition); + } else { + m_pBeatsModel->setBeats(nullptr, audio::kStartFramePos); + } +} + +#ifdef __STEM__ +void QmlTrackProxy::slotStemsChanged() { + VERIFY_OR_DEBUG_ASSERT(m_pStemsModel) { + return; + } + + if (m_pTrack) { + m_pStemsModel->setStems(m_pTrack->getStemInfo()); + emit stemsChanged(); + } +} +#endif + +void QmlTrackProxy::slotHotcuesChanged() { + VERIFY_OR_DEBUG_ASSERT(m_pHotcuesModel) { + return; + } + + QList hotcues; + + if (m_pTrack) { + const auto& cuePoints = m_pTrack->getCuePoints(); + for (const auto& cuePoint : cuePoints) { + if (cuePoint->getHotCue() == Cue::kNoHotCue) { + continue; + } + hotcues.append(cuePoint); + } + } + m_pHotcuesModel->setCues(hotcues); + emit cuesChanged(); +} + +PROPERTY_IMPL(QString, artist, getArtist, setArtist) +PROPERTY_IMPL(QString, title, getTitle, setTitle) +PROPERTY_IMPL(QString, album, getAlbum, setAlbum) +PROPERTY_IMPL(QString, albumArtist, getAlbumArtist, setAlbumArtist) +PROPERTY_IMPL_GETTER(QString, genre, getGenre) +PROPERTY_IMPL(QString, composer, getComposer, setComposer) +PROPERTY_IMPL(QString, grouping, getGrouping, setGrouping) +PROPERTY_IMPL(QString, year, getYear, setYear) +PROPERTY_IMPL(QString, trackNumber, getTrackNumber, setTrackNumber) +PROPERTY_IMPL(QString, trackTotal, getTrackTotal, setTrackTotal) +PROPERTY_IMPL(QString, comment, getComment, setComment) +PROPERTY_IMPL(QString, keyText, getKeyText, setKeyText) + +QColor QmlTrackProxy::getColor() const { + if (m_pTrack == nullptr) { + return QColor(); + } + return RgbColor::toQColor(m_pTrack->getColor()); +} + +double QmlTrackProxy::getDuration() const { + if (m_pTrack == nullptr) { + return -1; + } + return m_pTrack->getDuration(); +} + +int QmlTrackProxy::getSampleRate() const { + if (m_pTrack == nullptr) { + return 0; + } + return m_pTrack->getSampleRate(); +} + +void QmlTrackProxy::setColor(const QColor& value) { + if (m_pTrack) { + std::optional color = RgbColor::fromQColor(value); + m_pTrack->setColor(color); + } +} + +int QmlTrackProxy::getStars() const { + if (m_pTrack == nullptr) { + return -1; + } + return m_pTrack->getRating(); +} + +void QmlTrackProxy::setStars(int value) { + if (m_pTrack && value <= mixxx::TrackRecord::kMaxRating && + value >= mixxx::TrackRecord::kMinRating) { + m_pTrack->setRating(value); + } +} + +QUrl QmlTrackProxy::getCoverArtUrl() const { + if (m_pTrack == nullptr) { + return QUrl(); + } + + const CoverInfo coverInfo = m_pTrack->getCoverInfoWithLocation(); + return AsyncImageProvider::trackLocationToCoverArtUrl(coverInfo.trackLocation); +} + +QUrl QmlTrackProxy::getTrackLocationUrl() const { + if (m_pTrack == nullptr) { + return QUrl(); + } + + return QUrl::fromLocalFile(m_pTrack->getLocation()); +} + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmltrackproxy.h b/src/qml/qmltrackproxy.h new file mode 100644 index 000000000000..8b0e292d355c --- /dev/null +++ b/src/qml/qmltrackproxy.h @@ -0,0 +1,148 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include + +#include "mixer/basetrackplayer.h" +#include "qml/qmlbeatsmodel.h" +#include "qml/qmlcuesmodel.h" +#include "qml/qmlstemsmodel.h" +#include "track/track_decl.h" +#include "util/parented_ptr.h" + +namespace mixxx { +namespace qml { + +class QmlTrackProxy : public QObject { + Q_OBJECT + + Q_PROPERTY(QString artist READ getArtist WRITE setArtist NOTIFY artistChanged) + Q_PROPERTY(QString title READ getTitle WRITE setTitle NOTIFY titleChanged) + Q_PROPERTY(QString album READ getAlbum WRITE setAlbum NOTIFY albumChanged) + Q_PROPERTY(QString albumArtist READ getAlbumArtist WRITE setAlbumArtist + NOTIFY albumArtistChanged) + Q_PROPERTY(QString genre READ getGenre STORED false NOTIFY genreChanged) + Q_PROPERTY(QString composer READ getComposer WRITE setComposer NOTIFY composerChanged) + Q_PROPERTY(QString grouping READ getGrouping WRITE setGrouping NOTIFY groupingChanged) + Q_PROPERTY(int stars READ getStars WRITE setStars NOTIFY starsChanged) + Q_PROPERTY(QString year READ getYear WRITE setYear NOTIFY yearChanged) + Q_PROPERTY(QString trackNumber READ getTrackNumber WRITE setTrackNumber + NOTIFY trackNumberChanged) + Q_PROPERTY(QString trackTotal READ getTrackTotal WRITE setTrackTotal NOTIFY trackTotalChanged) + Q_PROPERTY(QString comment READ getComment WRITE setComment NOTIFY commentChanged) + Q_PROPERTY(QString keyText READ getKeyText WRITE setKeyText NOTIFY keyTextChanged) + Q_PROPERTY(QColor color READ getColor WRITE setColor NOTIFY colorChanged) + Q_PROPERTY(double duration READ getDuration NOTIFY durationChanged) + Q_PROPERTY(int sampleRate READ getSampleRate NOTIFY sampleRateChanged) + Q_PROPERTY(QUrl coverArtUrl READ getCoverArtUrl NOTIFY coverArtUrlChanged) + Q_PROPERTY(QUrl trackLocationUrl READ getTrackLocationUrl NOTIFY trackLocationUrlChanged) + + Q_PROPERTY(mixxx::qml::QmlBeatsModel* beatsModel READ getBeatsModel CONSTANT); + Q_PROPERTY(mixxx::qml::QmlCuesModel* hotcuesModel READ getCuesModel CONSTANT); +#ifdef __STEM__ + Q_PROPERTY(mixxx::qml::QmlStemsModel* stemsModel READ getStemsModel CONSTANT); +#endif + + QML_NAMED_ELEMENT(Track) + QML_UNCREATABLE("Only accessible via Mixxx.PlayerManager and Mixxx.Library") + public: + explicit QmlTrackProxy(TrackPointer track, QObject* parent = nullptr); + + QString getTrack() const; + QString getTitle() const; + QString getArtist() const; + QString getAlbum() const; + QString getAlbumArtist() const; + QString getGenre() const; + QString getComposer() const; + QString getGrouping() const; + QString getYear() const; + int getStars() const; + QString getTrackNumber() const; + QString getTrackTotal() const; + QString getComment() const; + QString getKeyText() const; + QColor getColor() const; + double getDuration() const; + int getSampleRate() const; + QUrl getCoverArtUrl() const; + QUrl getTrackLocationUrl() const; + + QmlBeatsModel* getBeatsModel() const { + return m_pBeatsModel.get(); + } + + QmlCuesModel* getCuesModel() const { + return m_pHotcuesModel.get(); + } + +#ifdef __STEM__ + QmlStemsModel* getStemsModel() const { + return m_pStemsModel.get(); + } +#endif + + TrackPointer internal() const { + return m_pTrack; + } + + public slots: + void slotBeatsChanged(); + void slotHotcuesChanged(); +#ifdef __STEM__ + void slotStemsChanged(); +#endif + + void setArtist(const QString& artist); + void setTitle(const QString& title); + void setAlbum(const QString& album); + void setAlbumArtist(const QString& albumArtist); + void setComposer(const QString& composer); + void setGrouping(const QString& grouping); + void setStars(int stars); + void setYear(const QString& year); + void setTrackNumber(const QString& trackNumber); + void setTrackTotal(const QString& trackTotal); + void setComment(const QString& comment); + void setKeyText(const QString& keyText); + void setColor(const QColor& color); + + signals: + void albumChanged(); + void titleChanged(); + void artistChanged(); + void albumArtistChanged(); + void genreChanged(); + void composerChanged(); + void groupingChanged(); + void starsChanged(); + void yearChanged(); + void trackNumberChanged(); + void trackTotalChanged(); + void commentChanged(); + void keyTextChanged(); + void colorChanged(); + void durationChanged(); + void sampleRateChanged(); + void coverArtUrlChanged(); + void trackLocationUrlChanged(); + void cuesChanged(); +#ifdef __STEM__ + void stemsChanged(); +#endif + + private: + TrackPointer m_pTrack; + parented_ptr m_pBeatsModel; + parented_ptr m_pHotcuesModel; +#ifdef __STEM__ + parented_ptr m_pStemsModel; +#endif +}; + +} // namespace qml +} // namespace mixxx diff --git a/src/qml/qmlwaveformdisplay.cpp b/src/qml/qmlwaveformdisplay.cpp index 3030c31a95d5..30f65275fc02 100644 --- a/src/qml/qmlwaveformdisplay.cpp +++ b/src/qml/qmlwaveformdisplay.cpp @@ -1,11 +1,10 @@ #include "qml/qmlwaveformdisplay.h" -#include - #include #include #include #include +#include #include #include #include @@ -24,7 +23,7 @@ using namespace allshader; namespace { constexpr int kDefaultSyncInternalMs = 100; -} +} // namespace namespace mixxx { namespace qml { @@ -87,6 +86,7 @@ void QmlWaveformDisplay::geometryChange(const QRectF& newGeometry, const QRectF& QSGNode* QmlWaveformDisplay::updatePaintNode(QSGNode* node, UpdatePaintNodeData*) { if (m_dirtyFlag.testFlag(DirtyFlag::Window)) { delete node; + node = nullptr; m_dirtyFlag.setFlag(DirtyFlag::Window, false); } @@ -251,7 +251,55 @@ void QmlWaveformDisplay::slotWaveformUpdated() { } QQmlListProperty QmlWaveformDisplay::renderers() { - return {this, &m_waveformRenderers}; + return {this, + nullptr, + &QmlWaveformDisplay::renderers_append, + &QmlWaveformDisplay::renderers_count, + &QmlWaveformDisplay::renderers_at, + &QmlWaveformDisplay::renderers_clear}; +} + +// Static +void QmlWaveformDisplay::renderers_append( + QQmlListProperty* pList, + QmlWaveformRendererFactory* value) { + QmlWaveformDisplay* pWaveform = static_cast(pList->object); + VERIFY_OR_DEBUG_ASSERT(pWaveform) { + return; + } + pWaveform->m_dirtyFlag.setFlag(DirtyFlag::Window, true); + pWaveform->m_waveformRenderers.append(value); +} + +// Static +qsizetype QmlWaveformDisplay::renderers_count(QQmlListProperty* pList) { + QmlWaveformDisplay* pWaveform = static_cast(pList->object); + VERIFY_OR_DEBUG_ASSERT(pWaveform) { + return 0; + } + pWaveform->m_dirtyFlag.setFlag(DirtyFlag::Window, true); + return pWaveform->m_waveformRenderers.count(); +} + +// Static +QmlWaveformRendererFactory* QmlWaveformDisplay::renderers_at( + QQmlListProperty* pList, qsizetype index) { + VERIFY_OR_DEBUG_ASSERT(pList && pList->object) { + return nullptr; + } + QmlWaveformDisplay* pWaveform = static_cast(pList->object); + pWaveform->m_dirtyFlag.setFlag(DirtyFlag::Window, true); + return pWaveform->m_waveformRenderers.at(index); +} + +// Static +void QmlWaveformDisplay::renderers_clear(QQmlListProperty* pList) { + QmlWaveformDisplay* pWaveform = static_cast(pList->object); + VERIFY_OR_DEBUG_ASSERT(pWaveform) { + return; + } + pWaveform->m_dirtyFlag.setFlag(DirtyFlag::Window, true); + return pWaveform->m_waveformRenderers.clear(); } } // namespace qml diff --git a/src/qml/qmlwaveformdisplay.h b/src/qml/qmlwaveformdisplay.h index ae77f5c86f21..6c5088e6361e 100644 --- a/src/qml/qmlwaveformdisplay.h +++ b/src/qml/qmlwaveformdisplay.h @@ -75,6 +75,13 @@ class QmlWaveformDisplay : public QQuickItem, VSyncTimeProvider, public Waveform void componentComplete() override; QQmlListProperty renderers(); + static void renderers_append( + QQmlListProperty* property, + QmlWaveformRendererFactory* value); + static qsizetype renderers_count(QQmlListProperty* property); + static QmlWaveformRendererFactory* renderers_at( + QQmlListProperty* property, qsizetype index); + static void renderers_clear(QQmlListProperty* property); protected: QSGNode* updatePaintNode(QSGNode* old, QQuickItem::UpdatePaintNodeData*) override; diff --git a/src/qml/qmlwaveformoverview.cpp b/src/qml/qmlwaveformoverview.cpp index 54d2d1051ca2..133f627ed637 100644 --- a/src/qml/qmlwaveformoverview.cpp +++ b/src/qml/qmlwaveformoverview.cpp @@ -1,7 +1,9 @@ #include "qml/qmlwaveformoverview.h" -#include "mixer/basetrackplayer.h" #include "moc_qmlwaveformoverview.cpp" +#include "qmlplayerproxy.h" +#include "qmltrackproxy.h" +#include "track/track.h" namespace { constexpr double kDesiredChannelHeight = 255; @@ -12,7 +14,7 @@ namespace qml { QmlWaveformOverview::QmlWaveformOverview(QQuickItem* parent) : QQuickPaintedItem(parent), - m_pPlayer(nullptr), + m_pTrack(nullptr), m_channels(ChannelFlag::BothChannels), m_renderer(Renderer::RGB), m_colorHigh(0xFF0000), @@ -20,39 +22,28 @@ QmlWaveformOverview::QmlWaveformOverview(QQuickItem* parent) m_colorLow(0x0000FF) { } -QmlPlayerProxy* QmlWaveformOverview::getPlayer() const { - return m_pPlayer; +QmlTrackProxy* QmlWaveformOverview::getTrack() const { + return m_pTrack; } -void QmlWaveformOverview::setPlayer(QmlPlayerProxy* pPlayer) { - if (m_pPlayer == pPlayer) { +void QmlWaveformOverview::setTrack(QmlTrackProxy* pTrack) { + if (m_pTrack == pTrack) { return; } - if (m_pPlayer != nullptr) { - m_pPlayer->internalTrackPlayer()->disconnect(this); + if (m_pTrack != nullptr && m_pTrack->internal() != nullptr) { + m_pTrack->internal()->disconnect(this); } - m_pPlayer = pPlayer; + m_pTrack = pTrack; - if (m_pPlayer != nullptr) { - setCurrentTrack(m_pPlayer->internalTrackPlayer()->getLoadedTrack()); - connect(m_pPlayer->internalTrackPlayer(), - &BaseTrackPlayer::newTrackLoaded, - this, - &QmlWaveformOverview::slotTrackLoaded); - connect(m_pPlayer->internalTrackPlayer(), - &BaseTrackPlayer::loadingTrack, - this, - &QmlWaveformOverview::slotTrackLoading); - connect(m_pPlayer->internalTrackPlayer(), - &BaseTrackPlayer::playerEmpty, + if (m_pTrack != nullptr && pTrack->internal() != nullptr) { + connect(pTrack->internal().get(), + &Track::waveformSummaryUpdated, this, - &QmlWaveformOverview::slotTrackUnloaded); + &QmlWaveformOverview::slotWaveformUpdated); } - - emit playerChanged(); - update(); + slotWaveformUpdated(); } QmlWaveformOverview::Channels QmlWaveformOverview::getChannels() const { @@ -68,49 +59,15 @@ void QmlWaveformOverview::setChannels(QmlWaveformOverview::Channels channels) { emit channelsChanged(channels); } -void QmlWaveformOverview::slotTrackLoaded(TrackPointer pTrack) { - // TODO: Investigate if it's a bug that this debug assertion fails when - // passing tracks on the command line - // DEBUG_ASSERT(m_pCurrentTrack == pTrack); - setCurrentTrack(pTrack); -} - -void QmlWaveformOverview::slotTrackLoading(TrackPointer pNewTrack, TrackPointer pOldTrack) { - Q_UNUSED(pOldTrack); // only used in DEBUG_ASSERT - DEBUG_ASSERT(m_pCurrentTrack == pOldTrack); - setCurrentTrack(pNewTrack); -} - -void QmlWaveformOverview::slotTrackUnloaded() { - setCurrentTrack(nullptr); -} - -void QmlWaveformOverview::setCurrentTrack(TrackPointer pTrack) { - // TODO: Check if this is actually possible - if (m_pCurrentTrack == pTrack) { - return; - } - - if (m_pCurrentTrack != nullptr) { - disconnect(m_pCurrentTrack.get(), nullptr, this, nullptr); - } - - m_pCurrentTrack = pTrack; - if (pTrack != nullptr) { - connect(pTrack.get(), - &Track::waveformSummaryUpdated, - this, - &QmlWaveformOverview::slotWaveformUpdated); - } - slotWaveformUpdated(); -} - void QmlWaveformOverview::slotWaveformUpdated() { update(); } void QmlWaveformOverview::paint(QPainter* pPainter) { - TrackPointer pTrack = m_pCurrentTrack; + if (!m_pTrack) { + return; + } + TrackPointer pTrack = m_pTrack->internal(); if (!pTrack) { return; } diff --git a/src/qml/qmlwaveformoverview.h b/src/qml/qmlwaveformoverview.h index 4b51bb83747d..431ab48aa034 100644 --- a/src/qml/qmlwaveformoverview.h +++ b/src/qml/qmlwaveformoverview.h @@ -6,18 +6,17 @@ #include #include -#include "qml/qmlplayerproxy.h" -#include "track/track.h" +#include "qmltrackproxy.h" +#include "waveform/waveform.h" namespace mixxx { namespace qml { - class QmlWaveformOverview : public QQuickPaintedItem { Q_OBJECT Q_FLAGS(Channels) - Q_PROPERTY(mixxx::qml::QmlPlayerProxy* player READ getPlayer WRITE setPlayer - NOTIFY playerChanged REQUIRED) + Q_PROPERTY(mixxx::qml::QmlTrackProxy* track READ getTrack WRITE setTrack + NOTIFY trackChanged REQUIRED) Q_PROPERTY(Channels channels READ getChannels WRITE setChannels NOTIFY channelsChanged) Q_PROPERTY(Renderer renderer MEMBER m_renderer NOTIFY rendererChanged) Q_PROPERTY(QColor colorHigh MEMBER m_colorHigh NOTIFY colorHighChanged) @@ -44,19 +43,16 @@ class QmlWaveformOverview : public QQuickPaintedItem { void paint(QPainter* painter) override; - void setPlayer(QmlPlayerProxy* player); - QmlPlayerProxy* getPlayer() const; + void setTrack(QmlTrackProxy* track); + QmlTrackProxy* getTrack() const; void setChannels(Channels channels); Channels getChannels() const; private slots: - void slotTrackLoaded(TrackPointer pLoadedTrack); - void slotTrackLoading(TrackPointer pNewTrack, TrackPointer pOldTrack); - void slotTrackUnloaded(); void slotWaveformUpdated(); signals: - void playerChanged(); + void trackChanged(); void channelsChanged(mixxx::qml::QmlWaveformOverview::Channels channels); #if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) void rendererChanged(Renderer renderer); @@ -68,7 +64,6 @@ class QmlWaveformOverview : public QQuickPaintedItem { void colorLowChanged(const QColor& color); private: - void setCurrentTrack(TrackPointer pTrack); void drawFiltered(QPainter* pPainter, Channels channels, ConstWaveformPointer pWaveform, @@ -78,9 +73,7 @@ class QmlWaveformOverview : public QQuickPaintedItem { ConstWaveformPointer pWaveform, int completion) const; QColor getRgbPenColor(ConstWaveformPointer pWaveform, int completion) const; - - QPointer m_pPlayer; - TrackPointer m_pCurrentTrack; + QmlTrackProxy* m_pTrack; Channels m_channels; Renderer m_renderer; QColor m_colorHigh; diff --git a/src/qml/qmlwaveformrenderer.cpp b/src/qml/qmlwaveformrenderer.cpp index 2f98fe8b2926..08eee1717368 100644 --- a/src/qml/qmlwaveformrenderer.cpp +++ b/src/qml/qmlwaveformrenderer.cpp @@ -1,13 +1,22 @@ #include "qml/qmlwaveformrenderer.h" +#include +#include +#include +#include + #include #include "moc_qmlwaveformrenderer.cpp" #include "util/assert.h" #include "waveform/renderers/allshader/waveformrenderbeat.h" #include "waveform/renderers/allshader/waveformrendererendoftrack.h" +#include "waveform/renderers/allshader/waveformrendererfiltered.h" +#include "waveform/renderers/allshader/waveformrendererhsv.h" #include "waveform/renderers/allshader/waveformrendererpreroll.h" #include "waveform/renderers/allshader/waveformrendererrgb.h" +#include "waveform/renderers/allshader/waveformrenderersignalbase.h" +#include "waveform/renderers/allshader/waveformrenderersimple.h" #ifdef __STEM__ #include "waveform/renderers/allshader/waveformrendererstem.h" #endif @@ -18,7 +27,8 @@ namespace mixxx { namespace qml { QmlWaveformRendererMark::QmlWaveformRendererMark() - : m_defaultMark(nullptr), + : m_playMarkerPosition(0.5), + m_defaultMark(nullptr), m_untilMark(std::make_unique()) { } @@ -51,52 +61,142 @@ QmlWaveformRendererFactory::Renderer QmlWaveformRendererPreroll::create( return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; } +void QmlWaveformRendererSignal::setup( + allshader::WaveformRendererSignalBase* pRenderer) const { + pRenderer->setAxesColor(m_axesColor); + pRenderer->setLowColor(m_lowColor); + pRenderer->setMidColor(m_midColor); + pRenderer->setHighColor(m_highColor); + connect(this, + &QmlWaveformRendererSignal::axesColorChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setAxesColor); + connect(this, + &QmlWaveformRendererSignal::lowColorChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setLowColor); + connect(this, + &QmlWaveformRendererSignal::midColorChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setMidColor); + connect(this, + &QmlWaveformRendererSignal::highColorChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setHighColor); + + pRenderer->setAllChannelVisualGain(m_gainAll); + pRenderer->setLowVisualGain(m_gainLow); + pRenderer->setMidVisualGain(m_gainMid); + pRenderer->setHighVisualGain(m_gainHigh); + connect(this, + &QmlWaveformRendererSignal::gainAllChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setAllChannelVisualGain); + connect(this, + &QmlWaveformRendererSignal::gainLowChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setLowVisualGain); + connect(this, + &QmlWaveformRendererSignal::gainMidChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setMidVisualGain); + connect(this, + &QmlWaveformRendererSignal::gainHighChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setHighVisualGain); + pRenderer->setIgnoreStem(m_ignoreStem); + connect(this, + &QmlWaveformRendererSignal::ignoreStemChanged, + pRenderer, + &allshader::WaveformRendererSignalBase::setIgnoreStem); +} + QmlWaveformRendererFactory::Renderer QmlWaveformRendererRGB::create( WaveformWidgetRenderer* waveformWidget) const { auto pRenderer = std::make_unique( waveformWidget, m_position, m_options); + setup(pRenderer.get()); + return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; +} + +QmlWaveformRendererFactory::Renderer QmlWaveformRendererFiltered::create( + WaveformWidgetRenderer* waveformWidget) const { + auto pRenderer = std::make_unique( + waveformWidget, m_ignoreStem, m_options); + + setup(pRenderer.get()); + return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; +} + +QmlWaveformRendererFactory::Renderer QmlWaveformRendererHSV::create( + WaveformWidgetRenderer* waveformWidget) const { + auto pRenderer = std::make_unique( + waveformWidget, m_options); + pRenderer->setAxesColor(m_axesColor); - pRenderer->setLowColor(m_lowColor); - pRenderer->setMidColor(m_midColor); - pRenderer->setHighColor(m_highColor); + pRenderer->setColor(m_color); + pRenderer->setIgnoreStem(m_ignoreStem); + pRenderer->setAllChannelVisualGain(m_gainAll); + pRenderer->setLowVisualGain(m_gainLow); + pRenderer->setMidVisualGain(m_gainMid); + pRenderer->setHighVisualGain(m_gainHigh); connect(this, - &QmlWaveformRendererRGB::axesColorChanged, + &QmlWaveformRendererHSV::gainAllChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setAxesColor); + &allshader::WaveformRendererSignalBase::setAllChannelVisualGain); connect(this, - &QmlWaveformRendererRGB::lowColorChanged, + &QmlWaveformRendererHSV::gainLowChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setLowColor); + &allshader::WaveformRendererSignalBase::setLowVisualGain); connect(this, - &QmlWaveformRendererRGB::midColorChanged, + &QmlWaveformRendererHSV::gainMidChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setMidColor); + &allshader::WaveformRendererSignalBase::setMidVisualGain); connect(this, - &QmlWaveformRendererRGB::highColorChanged, + &QmlWaveformRendererHSV::gainHighChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setHighColor); + &allshader::WaveformRendererSignalBase::setHighVisualGain); + connect(this, + &QmlWaveformRendererHSV::axesColorChanged, + pRenderer.get(), + &allshader::WaveformRendererSignalBase::setAxesColor); + connect(this, + &QmlWaveformRendererHSV::colorChanged, + pRenderer.get(), + &allshader::WaveformRendererSignalBase::setColor); + connect(this, + &QmlWaveformRendererHSV::ignoreStemChanged, + pRenderer.get(), + &allshader::WaveformRendererSignalBase::setIgnoreStem); + return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; +} - pRenderer->setAllChannelVisualGain(m_gainAll); - pRenderer->setLowVisualGain(m_gainLow); - pRenderer->setMidVisualGain(m_gainMid); - pRenderer->setHighVisualGain(m_gainHigh); +QmlWaveformRendererFactory::Renderer QmlWaveformRendererSimple::create( + WaveformWidgetRenderer* waveformWidget) const { + auto pRenderer = std::make_unique( + waveformWidget, m_options); + + pRenderer->setAxesColor(m_axesColor); + pRenderer->setColor(m_color); + pRenderer->setAllChannelVisualGain(m_gain); + pRenderer->setIgnoreStem(m_ignoreStem); connect(this, - &QmlWaveformRendererRGB::gainAllChanged, + &QmlWaveformRendererSimple::axesColorChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setAllChannelVisualGain); + &allshader::WaveformRendererSignalBase::setAxesColor); connect(this, - &QmlWaveformRendererRGB::gainLowChanged, + &QmlWaveformRendererSimple::colorChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setLowVisualGain); + &allshader::WaveformRendererSignalBase::setColor); connect(this, - &QmlWaveformRendererRGB::gainMidChanged, + &QmlWaveformRendererSimple::gainChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setMidVisualGain); + &allshader::WaveformRendererSignalBase::setAllChannelVisualGain); connect(this, - &QmlWaveformRendererRGB::gainHighChanged, + &QmlWaveformRendererSimple::ignoreStemChanged, pRenderer.get(), - &allshader::WaveformRendererRGB::setHighVisualGain); + &allshader::WaveformRendererSignalBase::setIgnoreStem); return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; } @@ -104,11 +204,15 @@ QmlWaveformRendererFactory::Renderer QmlWaveformRendererBeat::create( WaveformWidgetRenderer* waveformWidget) const { auto pRenderer = std::make_unique( waveformWidget, m_position); - pRenderer->setColor(m_color); + waveformWidget->setDisplayBeatGridAlpha(m_color.alphaF() * 100); + pRenderer->setColor(m_color.rgb()); connect(this, &QmlWaveformRendererBeat::colorChanged, pRenderer.get(), - &allshader::WaveformRenderBeat::setColor); + [waveformWidget, &pRenderer](const QColor& color) { + waveformWidget->setDisplayBeatGridAlpha(color.alphaF() * 100); + pRenderer->setColor(color.rgb()); + }); return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; } @@ -164,6 +268,7 @@ QmlWaveformRendererFactory::Renderer QmlWaveformRendererMark::create( pRenderer->setPlayMarkerForegroundColor(m_playMarkerColor); pRenderer->setPlayMarkerBackgroundColor(m_playMarkerBackground); + waveformWidget->setPlayMarkerPosition(m_playMarkerPosition); pRenderer->setUntilMarkShowBeats(m_untilMark->showTime()); pRenderer->setUntilMarkShowTime(m_untilMark->showBeats()); @@ -196,6 +301,12 @@ QmlWaveformRendererFactory::Renderer QmlWaveformRendererMark::create( &QmlWaveformRendererMark::playMarkerBackgroundChanged, pRenderer.get(), &allshader::WaveformRenderMark::setPlayMarkerBackgroundColor); + connect(this, + &QmlWaveformRendererMark::playMarkerPositionChanged, + pRenderer.get(), + [waveformWidget](double value) { + waveformWidget->setPlayMarkerPosition(value); + }); // The initialisation is closely inspired from WaveformMarkSet::setup int priority = 0; @@ -207,14 +318,43 @@ QmlWaveformRendererFactory::Renderer QmlWaveformRendererMark::create( pMark->textColor(), pMark->align(), pMark->text(), - pMark->pixmap(), - pMark->icon(), + pMark->pixmap().toLocalFile(), + pMark->icon().toLocalFile(), pMark->color(), - priority))); + priority, + Cue::kNoHotCue, + {}, + pMark->endPixmap().toLocalFile(), + pMark->endIcon().toLocalFile(), + pMark->disabledOpacity(), + pMark->enabledOpacity()))); priority--; } const auto* pMark = defaultMark(); if (pMark != nullptr) { + const QString pixmap = pMark->pixmap().toLocalFile(); + const QString endPixmap = pMark->endPixmap().toLocalFile(); + const QString icon = pMark->icon().toLocalFile(); + const QString endIcon = pMark->endIcon().toLocalFile(); + // FIXME: the following checks should be done on the WaveformMarker + // setter (depends of #14515) + if (!pixmap.isEmpty() && !QFileInfo::exists(pixmap)) { + qmlEngine(this)->throwError(tr("Cannot find the marker pixmap") + " \"" + pixmap + '"'); + } + + if (!endPixmap.isEmpty() && !QFileInfo::exists(endPixmap)) { + qmlEngine(this)->throwError(tr("Cannot find the marker endPixmap") + + " \"" + endPixmap + '"'); + } + + if (!icon.isEmpty() && !QFileInfo::exists(icon)) { + qmlEngine(this)->throwError(tr("Cannot find the marker icon") + " \"" + icon + '"'); + } + + if (!endIcon.isEmpty() && !QFileInfo::exists(endIcon)) { + qmlEngine(this)->throwError(tr("Cannot find the marker endIcon") + + " \"" + endIcon + '"'); + } pRenderer->setDefaultMark( waveformWidget->getGroup(), WaveformMarkSet::DefaultMarkerStyle{ @@ -223,9 +363,13 @@ QmlWaveformRendererFactory::Renderer QmlWaveformRendererMark::create( pMark->textColor(), pMark->align(), pMark->text(), - pMark->pixmap(), - pMark->icon(), + pixmap, + endPixmap, + icon, + endIcon, pMark->color(), + pMark->enabledOpacity(), + pMark->disabledOpacity(), }); } return QmlWaveformRendererFactory::Renderer{pRenderer.get(), std::move(pRenderer)}; diff --git a/src/qml/qmlwaveformrenderer.h b/src/qml/qmlwaveformrenderer.h index 361691ea48a3..44e1ef7049dd 100644 --- a/src/qml/qmlwaveformrenderer.h +++ b/src/qml/qmlwaveformrenderer.h @@ -1,5 +1,7 @@ #pragma once +#include + #include #include @@ -19,8 +21,12 @@ class WaveformRenderBeat; namespace mixxx { namespace qml { +using WaveformRendererPositionSource = ::WaveformRendererAbstract::PositionSource; + class QmlWaveformRendererFactory : public QObject { Q_OBJECT + Q_PROPERTY(WaveformRendererPositionSource position MEMBER + m_position NOTIFY positionChanged) QML_ANONYMOUS public: struct Renderer { @@ -33,6 +39,16 @@ class QmlWaveformRendererFactory : public QObject { } virtual Renderer create(WaveformWidgetRenderer* waveformWidget) const = 0; + + signals: +#if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) + void positionChanged(WaveformRendererPositionSource); +#else + void positionChanged(mixxx::qml::WaveformRendererPositionSource); +#endif + + protected: + WaveformRendererPositionSource m_position{::WaveformRendererAbstract::Play}; }; class QmlWaveformRendererEndOfTrack @@ -71,9 +87,11 @@ class QmlWaveformRendererPreroll ::WaveformRendererAbstract::PositionSource m_position{::WaveformRendererAbstract::Play}; }; -class QmlWaveformRendererRGB +typedef WaveformRendererSignalBase::Options WaveformRendererSignalBaseOptions; +class QmlWaveformRendererSignal : public QmlWaveformRendererFactory { Q_OBJECT + Q_PROPERTY(bool ignoreStem MEMBER m_ignoreStem NOTIFY ignoreStemChanged) Q_PROPERTY(QColor axesColor MEMBER m_axesColor NOTIFY axesColorChanged REQUIRED) Q_PROPERTY(QColor lowColor MEMBER m_lowColor NOTIFY lowColorChanged REQUIRED) Q_PROPERTY(QColor midColor MEMBER m_midColor NOTIFY midColorChanged REQUIRED) @@ -82,10 +100,15 @@ class QmlWaveformRendererRGB Q_PROPERTY(double gainLow MEMBER m_gainLow NOTIFY gainLowChanged REQUIRED) Q_PROPERTY(double gainMid MEMBER m_gainMid NOTIFY gainMidChanged REQUIRED) Q_PROPERTY(double gainHigh MEMBER m_gainHigh NOTIFY gainHighChanged REQUIRED) - QML_NAMED_ELEMENT(WaveformRendererRGB) + Q_PROPERTY(WaveformRendererSignalBaseOptions options MEMBER + m_options NOTIFY optionsChanged) + QML_ANONYMOUS public: - Renderer create(WaveformWidgetRenderer* waveformWidget) const override; + Q_ENUM(WaveformRendererSignalBaseOptions) + + protected: + void setup(allshader::WaveformRendererSignalBase* renderer) const; signals: void axesColorChanged(const QColor&); @@ -96,8 +119,14 @@ class QmlWaveformRendererRGB void gainLowChanged(double); void gainMidChanged(double); void gainHighChanged(double); + void ignoreStemChanged(bool); +#if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) + void optionsChanged(WaveformRendererSignalBaseOptions); +#else + void optionsChanged(mixxx::qml::WaveformRendererSignalBaseOptions); +#endif - private: + protected: QColor m_axesColor; QColor m_lowColor; QColor m_midColor; @@ -108,9 +137,111 @@ class QmlWaveformRendererRGB double m_gainMid; double m_gainHigh; + bool m_ignoreStem{false}; + ::WaveformRendererAbstract::PositionSource m_position{::WaveformRendererAbstract::Play}; - allshader::WaveformRendererSignalBase::Options m_options{ - allshader::WaveformRendererSignalBase::Option::None}; + WaveformRendererSignalBaseOptions m_options{ + WaveformRendererSignalBase::Option::None}; +}; + +class QmlWaveformRendererRGB + : public QmlWaveformRendererSignal { + Q_OBJECT + QML_NAMED_ELEMENT(WaveformRendererRGB) + + public: + Renderer create(WaveformWidgetRenderer* waveformWidget) const override; +}; + +class QmlWaveformRendererFiltered + : public QmlWaveformRendererSignal { + Q_OBJECT + Q_PROPERTY(bool stacked MEMBER m_stacked FINAL) + + QML_NAMED_ELEMENT(WaveformRendererFiltered) + + public: + Renderer create(WaveformWidgetRenderer* waveformWidget) const override; + + private: + bool m_stacked{false}; +}; + +class QmlWaveformRendererHSV + : public QmlWaveformRendererFactory { + Q_OBJECT + Q_PROPERTY(bool ignoreStem MEMBER m_ignoreStem NOTIFY ignoreStemChanged) + Q_PROPERTY(QColor axesColor MEMBER m_axesColor NOTIFY axesColorChanged REQUIRED) + Q_PROPERTY(QColor color MEMBER m_color NOTIFY colorChanged REQUIRED) + Q_PROPERTY(double gainAll MEMBER m_gainAll NOTIFY gainAllChanged REQUIRED) + Q_PROPERTY(double gainLow MEMBER m_gainLow NOTIFY gainLowChanged REQUIRED) + Q_PROPERTY(double gainMid MEMBER m_gainMid NOTIFY gainMidChanged REQUIRED) + Q_PROPERTY(double gainHigh MEMBER m_gainHigh NOTIFY gainHighChanged REQUIRED) + Q_PROPERTY(WaveformRendererSignalBaseOptions options MEMBER + m_options NOTIFY optionsChanged) + QML_NAMED_ELEMENT(WaveformRendererHSV) + + public: + Renderer create(WaveformWidgetRenderer* waveformWidget) const override; + signals: + void axesColorChanged(const QColor&); + void colorChanged(const QColor&); + void ignoreStemChanged(bool); + void gainAllChanged(double); + void gainLowChanged(double); + void gainMidChanged(double); + void gainHighChanged(double); +#if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) + void optionsChanged(WaveformRendererSignalBaseOptions); +#else + void optionsChanged(mixxx::qml::WaveformRendererSignalBaseOptions); +#endif + + private: + QColor m_axesColor; + QColor m_color; + + double m_gainAll; + double m_gainLow; + double m_gainMid; + double m_gainHigh; + + bool m_ignoreStem{false}; + WaveformRendererSignalBaseOptions m_options{ + WaveformRendererSignalBase::Option::None}; +}; + +class QmlWaveformRendererSimple + : public QmlWaveformRendererFactory { + Q_OBJECT + Q_PROPERTY(bool ignoreStem MEMBER m_ignoreStem NOTIFY ignoreStemChanged) + Q_PROPERTY(QColor axesColor MEMBER m_axesColor NOTIFY axesColorChanged REQUIRED) + Q_PROPERTY(QColor color MEMBER m_color NOTIFY colorChanged REQUIRED) + Q_PROPERTY(double gain MEMBER m_gain NOTIFY gainChanged REQUIRED) + Q_PROPERTY(WaveformRendererSignalBaseOptions options MEMBER + m_options NOTIFY optionsChanged) + QML_NAMED_ELEMENT(WaveformRendererSimple) + + public: + Renderer create(WaveformWidgetRenderer* waveformWidget) const override; + signals: + void axesColorChanged(const QColor&); + void colorChanged(const QColor&); + void ignoreStemChanged(bool); + void gainChanged(double); +#if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) + void optionsChanged(WaveformRendererSignalBaseOptions); +#else + void optionsChanged(mixxx::qml::WaveformRendererSignalBaseOptions); +#endif + + private: + QColor m_axesColor; + QColor m_color; + double m_gain; + bool m_ignoreStem{false}; + WaveformRendererSignalBaseOptions m_options{ + WaveformRendererSignalBase::Option::None}; }; class QmlWaveformRendererBeat @@ -218,8 +349,10 @@ class QmlWaveformMark : public QObject { Q_PROPERTY(QString textColor MEMBER m_textColor NOTIFY textColorChanged) Q_PROPERTY(QString align MEMBER m_align NOTIFY alignChanged) Q_PROPERTY(QString text MEMBER m_text NOTIFY textChanged) - Q_PROPERTY(QString pixmap MEMBER m_pixmap NOTIFY pixmapChanged) - Q_PROPERTY(QString icon MEMBER m_icon NOTIFY iconChanged) + Q_PROPERTY(QUrl pixmap MEMBER m_pixmap NOTIFY pixmapChanged) + Q_PROPERTY(QUrl icon MEMBER m_icon NOTIFY iconChanged) + Q_PROPERTY(QUrl endPixmap MEMBER m_endPixmap NOTIFY endPixmapChanged) + Q_PROPERTY(QUrl endIcon MEMBER m_endIcon NOTIFY endIconChanged) QML_NAMED_ELEMENT(WaveformMark) public: QString control() const { @@ -240,12 +373,24 @@ class QmlWaveformMark : public QObject { QString text() const { return m_text; } - QString pixmap() const { + QUrl pixmap() const { return m_pixmap; } - QString icon() const { + QUrl icon() const { return m_icon; } + QUrl endPixmap() const { + return m_endPixmap; + } + QUrl endIcon() const { + return m_endIcon; + } + float disabledOpacity() const { + return m_disabledOpacity; + } + float enabledOpacity() const { + return m_enabledOpacity; + } signals: void controlChanged(QString control); @@ -254,8 +399,12 @@ class QmlWaveformMark : public QObject { void textColorChanged(QString textColor); void alignChanged(QString align); void textChanged(QString text); - void pixmapChanged(QString pixmap); - void iconChanged(QString icon); + void pixmapChanged(QUrl pixmap); + void iconChanged(QUrl icon); + void endPixmapChanged(QUrl pixmap); + void endIconChanged(QUrl icon); + void disabledOpacityChanged(float opacity); + void enabledOpacityChanged(float opacity); private: QString m_control; @@ -264,8 +413,12 @@ class QmlWaveformMark : public QObject { QString m_textColor; QString m_align; QString m_text; - QString m_pixmap; - QString m_icon; + QUrl m_pixmap; + QUrl m_icon; + QUrl m_endPixmap; + QUrl m_endIcon; + float m_disabledOpacity; + float m_enabledOpacity; }; class QmlWaveformUntilMark : public QObject { @@ -373,6 +526,8 @@ class QmlWaveformRendererMark Q_PROPERTY(QColor playMarkerColor MEMBER m_playMarkerColor NOTIFY playMarkerColorChanged) Q_PROPERTY(QColor playMarkerBackground MEMBER m_playMarkerBackground NOTIFY playMarkerBackgroundChanged) + Q_PROPERTY(double playMarkerPosition MEMBER m_playMarkerPosition NOTIFY + playMarkerPositionChanged) Q_PROPERTY(QmlWaveformMark* defaultMark MEMBER m_defaultMark NOTIFY defaultMarkChanged) Q_PROPERTY(QmlWaveformUntilMark* untilMark READ untilMark FINAL) Q_CLASSINFO("DefaultProperty", "marks") @@ -397,6 +552,7 @@ class QmlWaveformRendererMark signals: void playMarkerColorChanged(const QColor&); void playMarkerBackgroundChanged(const QColor&); + void playMarkerPositionChanged(double); #if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) void defaultMarkChanged(QmlWaveformMark*); #else @@ -406,6 +562,7 @@ class QmlWaveformRendererMark private: QColor m_playMarkerColor; QColor m_playMarkerBackground; + double m_playMarkerPosition; QList m_marks; QmlWaveformMark* m_defaultMark; std::unique_ptr m_untilMark; diff --git a/src/rendergraph/common/rendergraph/material/texturematerial.cpp b/src/rendergraph/common/rendergraph/material/texturematerial.cpp index b3f61767626c..2b5b3cdcf73b 100644 --- a/src/rendergraph/common/rendergraph/material/texturematerial.cpp +++ b/src/rendergraph/common/rendergraph/material/texturematerial.cpp @@ -18,7 +18,7 @@ TextureMaterial::TextureMaterial() } /* static */ const UniformSet& TextureMaterial::uniforms() { - static UniformSet set = makeUniformSet({"ubuf.matrix"}); + static UniformSet set = makeUniformSet({"ubuf.matrix", "ubuf.alpha"}); return set; } diff --git a/src/rendergraph/shaders/texture.frag b/src/rendergraph/shaders/texture.frag index bbe37bccd69c..3eb4ce3d0aff 100644 --- a/src/rendergraph/shaders/texture.frag +++ b/src/rendergraph/shaders/texture.frag @@ -1,9 +1,18 @@ #version 440 +layout(std140, binding = 0) uniform buf { + mat4 matrix; + float alpha; +} +ubuf; + layout(binding = 1) uniform sampler2D texture1; layout(location = 0) in vec2 vTexcoord; layout(location = 0) out vec4 fragColor; void main() { fragColor = texture(texture1, vTexcoord); + if (ubuf.alpha > 0.0) { + fragColor *= ubuf.alpha; + } } diff --git a/src/rendergraph/shaders/texture.frag.gl b/src/rendergraph/shaders/texture.frag.gl index b2d03f1352c6..71ab6a34dd65 100644 --- a/src/rendergraph/shaders/texture.frag.gl +++ b/src/rendergraph/shaders/texture.frag.gl @@ -1,6 +1,14 @@ #version 120 //// GENERATED - EDITS WILL BE OVERWRITTEN +struct buf +{ + mat4 matrix; + float alpha; +}; + +uniform buf ubuf; + uniform sampler2D texture1; varying vec2 vTexcoord; @@ -8,4 +16,8 @@ varying vec2 vTexcoord; void main() { gl_FragData[0] = texture2D(texture1, vTexcoord); + if (ubuf.alpha > 0.0) + { + gl_FragData[0] *= ubuf.alpha; + } } diff --git a/src/rendergraph/shaders/texture.vert b/src/rendergraph/shaders/texture.vert index 07b3d7f1f3ba..3cf7f4cd8240 100644 --- a/src/rendergraph/shaders/texture.vert +++ b/src/rendergraph/shaders/texture.vert @@ -2,6 +2,7 @@ layout(std140, binding = 0) uniform buf { mat4 matrix; + float alpha; } ubuf; diff --git a/src/rendergraph/shaders/texture.vert.gl b/src/rendergraph/shaders/texture.vert.gl index a3d58014be32..b048df2a4893 100644 --- a/src/rendergraph/shaders/texture.vert.gl +++ b/src/rendergraph/shaders/texture.vert.gl @@ -4,6 +4,7 @@ struct buf { mat4 matrix; + float alpha; }; uniform buf ubuf; diff --git a/src/shaders/textureshader.cpp b/src/shaders/textureshader.cpp index f5363d771694..c9399795b9a8 100644 --- a/src/shaders/textureshader.cpp +++ b/src/shaders/textureshader.cpp @@ -16,11 +16,13 @@ void main() )--"); QString fragmentShaderCode = QStringLiteral(R"--( +#version 120 uniform sampler2D texture; varying highp vec2 vTexcoord; +uniform float alpha; void main() { - gl_FragColor = texture2D(texture, vTexcoord); + gl_FragColor = texture2D(texture, vTexcoord) * vec4(1.0, 1.0, 1.0, alpha > .0 ? alpha : 1.0); } )--"); diff --git a/src/skin/legacy/legacyskinparser.cpp b/src/skin/legacy/legacyskinparser.cpp index e1e889faf177..fbae6d04efa0 100644 --- a/src/skin/legacy/legacyskinparser.cpp +++ b/src/skin/legacy/legacyskinparser.cpp @@ -36,6 +36,7 @@ #include "widget/wbasewidget.h" #include "widget/wbattery.h" #include "widget/wbeatspinbox.h" +#include "widget/wbpmeditor.h" #include "widget/wcombobox.h" #include "widget/wcoverart.h" #include "widget/wcuebutton.h" @@ -575,6 +576,8 @@ QList LegacySkinParser::parseNode(const QDomElement& node) { } else if (nodeName == "Number" || nodeName == "NumberBpm") { // NumberBpm is deprecated, and is now the same as a Number result = wrapWidget(parseLabelWidget(node)); + } else if (nodeName == "BpmEditor") { + result = wrapWidget(parseBpmEditor(node)); } else if (nodeName == "NumberDb") { result = wrapWidget(parseLabelWidget(node)); } else if (nodeName == "Label") { @@ -1031,6 +1034,24 @@ QWidget* LegacySkinParser::parseStemLabelWidget(const QDomElement& element) { } #endif +QWidget* LegacySkinParser::parseBpmEditor(const QDomElement& node) { + const QString group = lookupNodeGroup(node); + BaseTrackPlayer* pPlayer = m_pPlayerManager->getPlayer(group); + if (!pPlayer) { + SKIN_WARNING(node, *m_pContext, QStringLiteral("No player found for group: %1").arg(group)); + return nullptr; + } + WBpmEditor* pBpmEditor = new WBpmEditor(group, m_pParent); + pBpmEditor->setup(node, *m_pContext); + commonWidgetSetup(node, pBpmEditor); + // Set tooltips of child widgets for mode selection & editing + const QString tapTooltip = m_tooltips.tooltipForId("tempo_tap_bpm_tap"); + const QString editTooltip = m_tooltips.tooltipForId("tempo_edit"); + pBpmEditor->setTapButtonTooltip(tapTooltip); + pBpmEditor->setEditButtonTooltip(editTooltip); + return pBpmEditor; +} + QWidget* LegacySkinParser::parseOverview(const QDomElement& node) { #ifdef MIXXX_USE_QML if (CmdlineArgs::Instance().isQml()) { @@ -1320,6 +1341,7 @@ QWidget* LegacySkinParser::parseNumberRate(const QDomElement& node) { WNumberRate* p = new WNumberRate(group, m_pParent); setupLabelWidget(node, p); + // TODO check this and other BgColor/palette hacks // TODO(rryan): Let's look at removing this palette change in 1.12.0. I // don't think it's needed anymore. p->setPalette(palette); @@ -1336,7 +1358,7 @@ QWidget* LegacySkinParser::parseNumberPos(const QDomElement& node) { QWidget* LegacySkinParser::parseEngineKey(const QDomElement& node) { QString group = lookupNodeGroup(node); - WKey* pEngineKey = new WKey(group, m_pParent); + WKey* pEngineKey = new WKey(group, m_pConfig, m_pParent); setupLabelWidget(node, pEngineKey); return pEngineKey; } @@ -1536,6 +1558,19 @@ QWidget* LegacySkinParser::parseSearchBox(const QDomElement& node) { commonWidgetSetup(node, pLineEditSearch, false); pLineEditSearch->setup(node, *m_pContext); + // Translate shortcuts to native text + QString searchInCurrentViewShortcut = + localizeShortcutKeys(m_pKeyboard->getKeyboardConfig()->getValue( + ConfigKey("[KeyboardShortcuts]", + "LibraryMenu_SearchInCurrentView"), + "Ctrl+f")); + QString searchInAllTracksShortcut = + localizeShortcutKeys(m_pKeyboard->getKeyboardConfig()->getValue( + ConfigKey("[KeyboardShortcuts]", + "LibraryMenu_SearchInAllTracks"), + "Ctrl+Shift+F")); + pLineEditSearch->setupToolTip(searchInCurrentViewShortcut, searchInAllTracksShortcut); + m_pLibrary->bindSearchboxWidget(pLineEditSearch); return pLineEditSearch; @@ -2622,9 +2657,6 @@ void LegacySkinParser::addShortcutToToolTip(WBaseWidget* pWidget, QString tooltip; - // translate shortcut to native text - QString nativeShortcut = QKeySequence(shortcut, QKeySequence::PortableText).toString(QKeySequence::NativeText); - tooltip += "\n"; tooltip += tr("Shortcut"); if (!cmd.isEmpty()) { @@ -2632,10 +2664,16 @@ void LegacySkinParser::addShortcutToToolTip(WBaseWidget* pWidget, tooltip += cmd; } tooltip += ": "; - tooltip += nativeShortcut; + tooltip += localizeShortcutKeys(shortcut); pWidget->appendBaseTooltip(tooltip); } +QString LegacySkinParser::localizeShortcutKeys(const QString& shortcut) { + // Translate shortcut to native text + return QKeySequence(shortcut, QKeySequence::PortableText) + .toString(QKeySequence::NativeText); +} + QString LegacySkinParser::parseLaunchImageStyle(const QDomNode& skinDoc) { QString schemeLaunchImageStyle; // Check if the skins has color schemes diff --git a/src/skin/legacy/legacyskinparser.h b/src/skin/legacy/legacyskinparser.h index 059806d6a9c9..c571c13c3c36 100644 --- a/src/skin/legacy/legacyskinparser.h +++ b/src/skin/legacy/legacyskinparser.h @@ -80,7 +80,7 @@ class LegacySkinParser : public QObject, public SkinParser { #ifdef __STEM__ QWidget* parseStemLabelWidget(const QDomElement& element); #endif - + QWidget* parseBpmEditor(const QDomElement& node); QWidget* parseText(const QDomElement& node); QWidget* parseTrackProperty(const QDomElement& node); QWidget* parseStarRating(const QDomElement& node); @@ -143,6 +143,7 @@ class LegacySkinParser : public QObject, public SkinParser { bool setupPosition=true); void setupConnections(const QDomNode& node, WBaseWidget* pWidget); void addShortcutToToolTip(WBaseWidget* pWidget, const QString& shortcut, const QString& cmd); + QString localizeShortcutKeys(const QString& shortcut); QString getLibraryStyle(const QDomNode& node); QString lookupNodeGroup(const QDomElement& node); diff --git a/src/skin/legacy/tooltips.cpp b/src/skin/legacy/tooltips.cpp index 8943cd4e552a..8b1e89b7bce6 100644 --- a/src/skin/legacy/tooltips.cpp +++ b/src/skin/legacy/tooltips.cpp @@ -401,12 +401,16 @@ void Tooltips::addStandardTooltips() { << tr("Holds the gain of the low EQ to zero while active.") << eqKillLatch; - QString tempoDisplay = tr("Displays the tempo of the loaded track in BPM (beats per minute)."); + const QString tempoDisplay = + tr("Displays the tempo of the loaded track in BPM (beats per " + "minute)."); // TODO Clarify this refers to 'file BPM', not playback rate? - QString bpmTapButton = tr("When tapped repeatedly, adjusts the BPM to match the tapped BPM."); - QString tempoTapButton = + const QString bpmTapButton = tr( + "When tapped repeatedly, adjusts the BPM to match the tapped BPM."); + const QString tempoTapButton = tr("When tapped repeatedly, adjusts the tempo to match the tapped " "BPM."); + const QString bpmTempoEdit = tr("Click to open the tempo/BPM editor"); add("visual_bpm") << tr("Tempo") << tempoDisplay; @@ -414,8 +418,13 @@ void Tooltips::addStandardTooltips() { add("visual_key") //: The musical key of a track << tr("Key") - << tr("Displays the current musical key of the loaded track after pitch shifting."); + << tr("Displays the current musical key of the loaded track after pitch shifting.") + << tr("It also shows a colored bar if Key colors are enabled in the Preferences.") + << tr("The bar will be split vertically if the track's key is in between full keys."); + add("visual_bpm_edit") + << tempoDisplay + << bpmTempoEdit; add("bpm_tap") << tr("BPM Tap") << bpmTapButton; @@ -426,6 +435,10 @@ void Tooltips::addStandardTooltips() { << tr("Rate Tap and BPM Tap") << QString("%1: %2").arg(leftClick, tempoTapButton) << QString("%1: %2").arg(rightClick, bpmTapButton); + add("tempo_edit") + << tr("Set Tempo") + << tr("Set the desired tempo in BPM. If the track currently has no BPM detected, " + "set the desired tempo in percent."); add("beats_adjust_slower") << tr("Adjust BPM Down") diff --git a/src/skin/skinloader.cpp b/src/skin/skinloader.cpp index a2795f8b4b6b..271042078383 100644 --- a/src/skin/skinloader.cpp +++ b/src/skin/skinloader.cpp @@ -14,6 +14,8 @@ #include "util/debug.h" #include "util/timer.h" +const QString kSkinsDirName = QStringLiteral("skins"); + namespace mixxx { namespace skin { @@ -30,20 +32,25 @@ SkinLoader::~SkinLoader() { LegacySkinParser::clearSharedGroupStrings(); } -QList SkinLoader::getSkins() const { - const QList skinSearchPaths = getSkinSearchPaths(); +QList SkinLoader::getUserSkins() const { + return getSkinsFromDir(getUserSkinDir()); +} + +QList SkinLoader::getSystemSkins() const { + return getSkinsFromDir(getSytemSkinDir()); +} + +QList SkinLoader::getSkinsFromDir(const QDir& dir) const { QList skins; - for (const QDir& dir : skinSearchPaths) { - const QList fileInfos = dir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot); - for (const QFileInfo& fileInfo : fileInfos) { - QDir skinDir(fileInfo.absoluteFilePath()); - SkinPointer pSkin = skinFromDirectory(skinDir); - if (pSkin) { - VERIFY_OR_DEBUG_ASSERT(pSkin->isValid()) { - continue; - } - skins.append(pSkin); + const QList fileInfos = dir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot); + for (const QFileInfo& fileInfo : fileInfos) { + QDir skinDir(fileInfo.absoluteFilePath()); + SkinPointer pSkin = skinFromDirectory(skinDir); + if (pSkin) { + VERIFY_OR_DEBUG_ASSERT(pSkin->isValid()) { + continue; } + skins.append(pSkin); } } @@ -53,25 +60,38 @@ QList SkinLoader::getSkins() const { QList SkinLoader::getSkinSearchPaths() const { QList searchPaths; - // Add user skin path to search paths + const auto userSkinDir = getUserSkinDir(); + if (!userSkinDir.path().isEmpty()) { + searchPaths.append(userSkinDir); + } + + searchPaths.append(getSytemSkinDir()); + + return searchPaths; +} + +QDir SkinLoader::getUserSkinDir() const { QDir userSkinsPath(m_pConfig->getSettingsPath()); - if (userSkinsPath.cd("skins")) { - searchPaths.append(userSkinsPath); + if (userSkinsPath.cd(kSkinsDirName)) { + return userSkinsPath; } + return {}; +} +QDir SkinLoader::getSytemSkinDir() const { // If we can't find the skins folder then we can't load a skin at all. This // is a critical error in the user's Mixxx installation. QDir skinsPath(m_pConfig->getResourcePath()); - if (!skinsPath.cd("skins")) { + if (!skinsPath.cd(kSkinsDirName)) { reportCriticalErrorAndQuit("Skin directory does not exist: " + - skinsPath.absoluteFilePath("skins")); + skinsPath.absoluteFilePath(kSkinsDirName)); } - searchPaths.append(skinsPath); - - return searchPaths; + return skinsPath; } SkinPointer SkinLoader::getSkin(const QString& skinName) const { + // If there are skins with identical name in both the resource and user + // directory, we'll discover the one from the user dir first const QList skinSearchPaths = getSkinSearchPaths(); for (QDir dir : skinSearchPaths) { if (dir.cd(skinName)) { diff --git a/src/skin/skinloader.h b/src/skin/skinloader.h index d306204fca73..c997e22b4fd4 100644 --- a/src/skin/skinloader.h +++ b/src/skin/skinloader.h @@ -32,12 +32,16 @@ class SkinLoader : public QObject { SkinPointer getConfiguredSkin() const; QString getDefaultSkinName() const; QList getSkinSearchPaths() const; - QList getSkins() const; + QDir getUserSkinDir() const; + QDir getSytemSkinDir() const; + QList getUserSkins() const; + QList getSystemSkins() const; private slots: void slotNumMicsChanged(double numMics); private: + QList getSkinsFromDir(const QDir& dir) const; QString pickResizableSkin(const QString& oldSkin) const; SkinPointer skinFromDirectory(const QDir& dir) const; diff --git a/src/soundio/sounddeviceportaudio.cpp b/src/soundio/sounddeviceportaudio.cpp index 345d0e8aec5a..770eda992ac8 100644 --- a/src/soundio/sounddeviceportaudio.cpp +++ b/src/soundio/sounddeviceportaudio.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include "control/controlobject.h" #include "sounddevicenetwork.h" @@ -27,6 +28,11 @@ #include #endif +#ifdef PA_USE_OBOE +// for PaOboe_InitializeStreamInfo +#include +#endif + namespace { // Buffer for drift correction 1 full, 1 for r/w, 1 empty @@ -241,7 +247,24 @@ SoundDeviceStatus SoundDevicePortAudio::open(bool isClkRefDevice, int syncBuffer m_outputParams.device = m_deviceId.portAudioIndex; m_outputParams.sampleFormat = paFloat32; m_outputParams.suggestedLatency = bufferMSec / 1000.0; - m_outputParams.hostApiSpecificStreamInfo = nullptr; +#ifdef PA_USE_OBOE + PaOboeStreamInfo obeoStreamInfo; + if (m_deviceTypeId == PaHostApiTypeId::paOboe) { + PaOboe_InitializeStreamInfo(&obeoStreamInfo); + obeoStreamInfo.androidOutputUsage = PaOboe_Usage::Media, + obeoStreamInfo.androidInputPreset = PaOboe_InputPreset::Generic, + obeoStreamInfo.performanceMode = PaOboe_PerformanceMode::LowLatency, + obeoStreamInfo.sharingMode = PaOboe_SharingMode::Exclusive, + obeoStreamInfo.contentType = PaOboe_ContentType::Music, + obeoStreamInfo.packageName = ANDROID_PACKAGE_NAME; + + m_outputParams.hostApiSpecificStreamInfo = (void*)&obeoStreamInfo; + } else { +#endif + m_outputParams.hostApiSpecificStreamInfo = nullptr; +#ifdef PA_USE_OBOE + } +#endif m_inputParams.device = m_deviceId.portAudioIndex; m_inputParams.sampleFormat = paFloat32; diff --git a/src/soundio/soundmanager.cpp b/src/soundio/soundmanager.cpp index 273211831cac..4dd83adc7d66 100644 --- a/src/soundio/soundmanager.cpp +++ b/src/soundio/soundmanager.cpp @@ -25,6 +25,12 @@ #ifdef Q_OS_IOS #include "soundio/soundmanagerios.h" +#elif defined(Q_OS_ANDROID) +#include +#include +#include + +#include #endif typedef PaError (*SetJackClientName)(const char *name); @@ -121,6 +127,9 @@ QList SoundManager::getDeviceList( // make sure to include any devices that have >0 channels. const bool hasOutputs = pDevice->getNumOutputChannels().isValid(); const bool hasInputs = pDevice->getNumInputChannels().isValid(); + qDebug() << "SoundManager::getDeviceList" << pDevice->getHostAPI() + << filterAPI << pDevice->getNumOutputChannels() + << pDevice->getNumInputChannels(); if (pDevice->getHostAPI() != filterAPI || (bOutputDevices && !bInputDevices && !hasOutputs) || (bInputDevices && !bOutputDevices && !hasInputs) || @@ -145,27 +154,48 @@ QList SoundManager::getHostAPIList() const { return apiList; } -void SoundManager::closeDevices(bool sleepAfterClosing) { - //qDebug() << "SoundManager::closeDevices()"; +void SoundManager::closeDevices( + [[maybe_unused]] bool sleepAfterClosing, [[maybe_unused]] bool async) { + // sleepAfterClosing and async maybe unused depending on platform support + // qDebug() << "SoundManager::closeDevices()"; +#ifdef __LINUX__ bool closed = false; +#endif for (const auto& pDevice : std::as_const(m_devices)) { if (pDevice->isOpen()) { // NOTE(rryan): As of 2009 (?) it has been safe to close() a SoundDevice // while callbacks are active. pDevice->close(); +#ifdef __LINUX__ closed = true; +#endif } } - if (closed && sleepAfterClosing) { #ifdef __LINUX__ + if (closed && sleepAfterClosing) { // Sleep for 5 sec to allow asynchronously sound APIs like "pulse" to free // its resources as well + if (async) { + // Async mode - the caller will wait for `devicesClosed` before + // trying to reconfigure or reopen audio devices + QTimer::singleShot( + std::chrono::seconds(kSleepSecondsAfterClosingDevice), + this, + &SoundManager::completeDevicesClosing); + return; + } + // Sync mode, legacy - we sleep the current thread for 5 seconds QThread::sleep(kSleepSecondsAfterClosingDevice); + } else if (!closed) #endif + { + completeDevicesClosing(); } +} +void SoundManager::completeDevicesClosing() { // TODO(rryan): Should we do this before SoundDevice::close()? No! Because // then the callback may be running when we call // onInputDisconnected/onOutputDisconnected. @@ -199,6 +229,7 @@ void SoundManager::closeDevices(bool sleepAfterClosing) { // Indicate to the rest of Mixxx that sound is disconnected. m_pControlObjectSoundStatusCO->set(SOUNDMANAGER_DISCONNECTED); + emit devicesClosed(); } void SoundManager::clearDeviceList(bool sleepAfterClosing) { @@ -235,7 +266,7 @@ QList SoundManager::getSampleRates() const { } void SoundManager::queryDevices() { - //qDebug() << "SoundManager::queryDevices()"; + qDebug() << "SoundManager::queryDevices()"; queryDevicesPortaudio(); queryDevicesMixxx(); @@ -252,11 +283,122 @@ void SoundManager::clearAndQueryDevices() { void SoundManager::queryDevicesPortaudio() { PaError err = paNoError; if (!m_paInitialized) { -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) setJACKName(); #endif #ifdef Q_OS_IOS mixxx::initializeAVAudioSession(); +#elif defined(Q_OS_ANDROID) + QNativeInterface::QAndroidApplication::runOnAndroidMainThread([]() { + QJniObject context = QNativeInterface::QAndroidApplication::context(); + QJniObject AUDIO_SERVICE = + QJniObject::getStaticObjectField( + "android/content/Context", + "AUDIO_SERVICE", + "Ljava/lang/String;"); + auto audioManager = context.callObjectMethod("getSystemService", + "(Ljava/lang/String;)Ljava/lang/Object;", + AUDIO_SERVICE.object()); + if (!audioManager.isValid()) { + qDebug() << "audioManager invalid"; + return; + } + qDebug() << "audioManager valid:" << audioManager.toString(); + + jint GET_DEVICES_INPUTS = + QJniObject::getStaticField( + "android/media/AudioManager", + "GET_DEVICES_INPUTS"); + jint GET_DEVICES_OUTPUTS = + QJniObject::getStaticField( + "android/media/AudioManager", + "GET_DEVICES_OUTPUTS"); + + auto const isSupported = [](int type) { + switch (type) { + case 1: // AudioDeviceInfo.TYPE_BUILTIN_EARPIECE + case 2: // AudioDeviceInfo.TYPE_BUILTIN_SPEAKER + case 3: // AudioDeviceInfo.TYPE_WIRED_HEADSET + case 8: // AudioDeviceInfo.TYPE_BLUETOOTH_A2DP + case 11: // AudioDeviceInfo.TYPE_USB_DEVICE + case 22: // AudioDeviceInfo.TYPE_USB_HEADSET + case 9: // AudioDeviceInfo.TYPE_HDMI + case 10: // AudioDeviceInfo.TYPE_HDMI_ARC + case 13: // AudioDeviceInfo.TYPE_DOCK + case 15: // AudioDeviceInfo.TYPE_BUILTIN_MIC + case 12: // AudioDeviceInfo.TYPE_USB_ACCESSORY + case 26: // AudioDeviceInfo.TYPE_BLE_HEADSET + case 27: // AudioDeviceInfo.TYPE_BLE_SPEAKER + case 23: // AudioDeviceInfo.TYPE_HEARING_AID + case 25: // AudioDeviceInfo.TYPE_REMOTE_SUBMIX: + // supported + return true; + default: + // unsupported + break; + } + return false; + }; + + auto const parse = [isSupported](PaOboe_Direction direction, + QJniArray& devices) { + for (const auto& device : devices) { + jint type = device->callMethod("getType"); + if (!isSupported(type)) { + continue; + } + QString name = device->callObjectMethod("getProductName", + "()Ljava/lang/CharSequence;") + .toString(); + auto channelCounts = device->callMethod>("getChannelCounts"); + int channelCount = *std::max_element( + channelCounts.begin(), channelCounts.end()); + auto sampleRates = device->callMethod>("getSampleRates"); + qDebug() << "audioManager - Type:" << type + << "- Name:" << name + << "- ChannelCount:" << channelCount + << channelCounts.size(); + if (!sampleRates.isEmpty()) { + int sampleRate = *sampleRates.cbegin(); + qDebug() << "audioManager - SampleRates:" << sampleRate; + PaOboe_RegisterDevice(name.toStdString().c_str(), + direction, + channelCount, + sampleRate); + } + } + }; + + auto inputDevices = + audioManager.callMethod>("getDevices", + "(I)[Landroid/media/AudioDeviceInfo;", + GET_DEVICES_INPUTS); + qDebug() << "audioManager inputDevices:" << inputDevices.size(); + parse(PaOboe_Direction::Input, inputDevices); + + auto outputDevices = + audioManager.callMethod>("getDevices", + "(I)[Landroid/media/AudioDeviceInfo;", + GET_DEVICES_OUTPUTS); + qDebug() << "audioManager outputDevices:" << outputDevices.size(); + parse(PaOboe_Direction::Output, outputDevices); + + QJniObject PROPERTY_OUTPUT_FRAMES_PER_BUFFER = + QJniObject::getStaticField( + "android/media/AudioManager", + "PROPERTY_OUTPUT_FRAMES_PER_BUFFER"); + auto outputFramePerBuffer = + audioManager + .callMethod("getProperty", + "(Ljava/lang/String;)Ljava/lang/String;", + PROPERTY_OUTPUT_FRAMES_PER_BUFFER) + .toString() + .toUInt(); + qDebug() << "audioManager outputFramePerBuffer:" << outputFramePerBuffer; + PaOboe_SetNativeBufferSize(outputFramePerBuffer); + }).waitForFinished(); + PaOboe_SetNumberOfBuffers(1); + #endif err = Pa_Initialize(); m_paInitialized = true; @@ -269,9 +411,14 @@ void SoundManager::queryDevicesPortaudio() { int iNumDevices = Pa_GetDeviceCount(); if (iNumDevices < 0) { - qDebug() << "ERROR: Pa_CountDevices returned" << iNumDevices; + qDebug() << "ERROR: Pa_CountDevices returned" << Pa_GetErrorText(iNumDevices); return; + } else if (iNumDevices == 0) { + qWarning() << "Pa_CountDevices returned no devices!"; + } else { + qDebug() << "Pa_CountDevices found" << iNumDevices << "devices"; } + qDebug() << "Pa_GetHostApiCount returns" << Pa_GetHostApiCount(); // PaDeviceInfo structs have a PaHostApiIndex member, but PortAudio // unfortunately provides no good way to associate this with a persistent, @@ -288,6 +435,7 @@ void SoundManager::queryDevicesPortaudio() { const PaDeviceInfo* deviceInfo; for (int i = 0; i < iNumDevices; i++) { deviceInfo = Pa_GetDeviceInfo(i); + qDebug() << "Pa_GetDeviceInfo on" << i << deviceInfo; if (!deviceInfo) { continue; } @@ -553,12 +701,12 @@ SoundManagerConfig SoundManager::getConfig() const { return m_config; } -void SoundManager::closeActiveConfig() { +void SoundManager::closeActiveConfig(bool async) { // Close open devices. After this call we will not get any more // onDeviceOutputCallback() or pushBuffer() calls because all the // SoundDevices are closed. closeDevices() blocks and can take a while. const bool sleepAfterClosing = true; - closeDevices(sleepAfterClosing); + closeDevices(sleepAfterClosing, async); } SoundDeviceStatus SoundManager::setConfig(const SoundManagerConfig& config) { diff --git a/src/soundio/soundmanager.h b/src/soundio/soundmanager.h index 205909535f4b..a5f4e92138cd 100644 --- a/src/soundio/soundmanager.h +++ b/src/soundio/soundmanager.h @@ -74,7 +74,12 @@ class SoundManager : public QObject { QList getHostAPIList() const; SoundManagerConfig getConfig() const; SoundDeviceStatus setConfig(const SoundManagerConfig& config); - void closeActiveConfig(); + // Due to a bug in in PulseAudio, we must give at least 5 seconds of cool + // down before performing further audio related operation. This sleep + // happens during the function call by default (synchronous blocking), but + // the caller may decide to use the async version, and must not performs any + // audio operation till it received the `devicesClosed` signal + void closeActiveConfig(bool async = false); void checkConfig(); void onDeviceOutputCallback(const SINT iFramesPerBuffer); @@ -107,12 +112,20 @@ class SoundManager : public QObject { void processUnderflowHappened(SINT framesPerBuffer); + UserSettingsPointer userSettings() const { + return m_pConfig; + } + signals: void devicesUpdated(); // emitted when pointers to SoundDevices go stale void devicesSetup(); // emitted when the sound devices have been set up + void devicesClosed(); // emitted when the sound devices have been closed and resources freed void outputRegistered(const AudioOutput& output, AudioSource* src); void inputRegistered(const AudioInput& input, AudioDestination* dest); + private slots: + void completeDevicesClosing(); + private: // Closes all the devices and empties the list of devices we have. void clearDeviceList(bool sleepAfterClosing); @@ -121,7 +134,7 @@ class SoundManager : public QObject { // open, this method simply runs through the list of all known soundcards // (from PortAudio) and attempts to close them all. Closing a soundcard that // isn't open is safe. - void closeDevices(bool sleepAfterClosing); + void closeDevices(bool sleepAfterClosing, bool async = false); void setJACKName() const; bool jackApiUsed() const { diff --git a/src/test/controller_hid_reportdescriptor_test.cpp b/src/test/controller_hid_reportdescriptor_test.cpp new file mode 100644 index 000000000000..e12a2f23d9db --- /dev/null +++ b/src/test/controller_hid_reportdescriptor_test.cpp @@ -0,0 +1,286 @@ +#include + +#include +#include + +#include "controllers/hid/hidreportdescriptor.h" + +using namespace hid::reportDescriptor; + +// Example HID report descriptor data + +// clang-format off +uint8_t reportDescriptor[] = { + 0x05, 0x01, // Usage Page (Generic Desktop) + 0x09, 0x02, // Usage (Mouse) + 0xA1, 0x01, // Collection (Application) + 0x09, 0x01, // Usage (Pointer) + 0xA1, 0x00, // Collection (Physical) + 0x05, 0x09, // Usage Page (Button) + 0x19, 0x01, // Usage Minimum (1) + 0x29, 0x03, // Usage Maximum (3) + 0x15, 0x00, // Logical Minimum (0) + 0x25, 0x01, // Logical Maximum (1) + 0x95, 0x03, // Report Count (3) + 0x75, 0x01, // Report Size (1) + 0x81, 0x02, // Input (Data, Variable, Absolute) + 0x95, 0x01, // Report Count (1) + 0x75, 0x05, // Report Size (5) + 0x81, 0x01, // Input (Constant) + 0x05, 0x01, // Usage Page (Generic Desktop) + 0x09, 0x30, // Usage (X) + 0x09, 0x31, // Usage (Y) + 0x15, 0x81, // Logical Minimum (-127) + 0x25, 0x7F, // Logical Maximum (127) + 0x75, 0x08, // Report Size (8) + 0x95, 0x02, // Report Count (2) + 0x81, 0x06, // Input (Data, Variable, Relative) + 0xC0, // End Collection + 0xC0 // End Collection +}; +// clang-format on + +TEST(HidReportDescriptorParserTest, ParseReportDescriptor) { + const std::vector reportDescriptorVector( + reportDescriptor, reportDescriptor + sizeof(reportDescriptor)); + HidReportDescriptor parser(reportDescriptorVector); + Collection collection = parser.parse(); + + // Use getListOfReports to get the list of reports + auto reportsList = parser.getListOfReports(); + ASSERT_EQ(reportsList.size(), 1); + + auto& [collectionIdx, reportType, reportId] = reportsList[0]; + ASSERT_EQ(collectionIdx, 0); + + // Use getReport to get the report + auto reportOpt = parser.getReport(reportType, reportId); + ASSERT_TRUE(reportOpt.has_value()); + + const auto& report = reportOpt->get(); + + // Validate Report fields + ASSERT_EQ(report.m_reportType, reportType); + ASSERT_EQ(report.m_reportId, reportId); + + // Validate all Control fields + const std::vector& controls = report.getControls(); + ASSERT_EQ(controls.size(), 5); + + // Mouse Button 1 + EXPECT_EQ(controls[0].m_usage, 0x0009'0001); + EXPECT_EQ(controls[0].m_logicalMinimum, 0); + EXPECT_EQ(controls[0].m_logicalMaximum, 1); + EXPECT_EQ(controls[0].m_physicalMinimum, 0); + EXPECT_EQ(controls[0].m_physicalMaximum, 1); + EXPECT_EQ(controls[0].m_unitExponent, 0); + EXPECT_EQ(controls[0].m_unit, 0); + EXPECT_EQ(controls[0].m_bytePosition, 0); + EXPECT_EQ(controls[0].m_bitPosition, 0); + EXPECT_EQ(controls[0].m_bitSize, 1); + + // Mouse Button 2 + EXPECT_EQ(controls[1].m_usage, 0x0009'0002); + EXPECT_EQ(controls[1].m_logicalMinimum, 0); + EXPECT_EQ(controls[1].m_logicalMaximum, 1); + EXPECT_EQ(controls[1].m_physicalMinimum, 0); + EXPECT_EQ(controls[1].m_physicalMaximum, 1); + EXPECT_EQ(controls[1].m_unitExponent, 0); + EXPECT_EQ(controls[1].m_unit, 0); + EXPECT_EQ(controls[1].m_bytePosition, 0); + EXPECT_EQ(controls[1].m_bitPosition, 1); + EXPECT_EQ(controls[1].m_bitSize, 1); + + // Mouse Button 3 + EXPECT_EQ(controls[2].m_usage, 0x0009'0003); + EXPECT_EQ(controls[2].m_logicalMinimum, 0); + EXPECT_EQ(controls[2].m_logicalMaximum, 1); + EXPECT_EQ(controls[2].m_physicalMinimum, 0); + EXPECT_EQ(controls[2].m_physicalMaximum, 1); + EXPECT_EQ(controls[2].m_unitExponent, 0); + EXPECT_EQ(controls[2].m_unit, 0); + EXPECT_EQ(controls[2].m_bytePosition, 0); + EXPECT_EQ(controls[2].m_bitPosition, 2); + EXPECT_EQ(controls[2].m_bitSize, 1); + + // Mouse Movement X + EXPECT_EQ(controls[3].m_usage, 0x0001'0030); + EXPECT_EQ(controls[3].m_logicalMinimum, -127); + EXPECT_EQ(controls[3].m_logicalMaximum, 127); + EXPECT_EQ(controls[3].m_physicalMinimum, -127); + EXPECT_EQ(controls[3].m_physicalMaximum, 127); + EXPECT_EQ(controls[3].m_unitExponent, 0); + EXPECT_EQ(controls[3].m_unit, 0); + EXPECT_EQ(controls[3].m_bitSize, 8); + EXPECT_EQ(controls[3].m_bytePosition, 1); + EXPECT_EQ(controls[3].m_bitPosition, 0); + + // Mouse Movement Y + EXPECT_EQ(controls[4].m_usage, 0x0001'0031); + EXPECT_EQ(controls[4].m_logicalMinimum, -127); + EXPECT_EQ(controls[4].m_logicalMaximum, 127); + EXPECT_EQ(controls[4].m_physicalMinimum, -127); + EXPECT_EQ(controls[4].m_physicalMaximum, 127); + EXPECT_EQ(controls[4].m_unitExponent, 0); + EXPECT_EQ(controls[4].m_unit, 0); + EXPECT_EQ(controls[4].m_bitSize, 8); + EXPECT_EQ(controls[4].m_bytePosition, 2); + EXPECT_EQ(controls[4].m_bitPosition, 0); +} + +TEST(HidReportDescriptorTest, ControlValue_1Bit) { + auto reportData = QByteArray::fromHex("81'00'00'FF'01"); + Control control({0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // Flags + 0x0009'0001, // UsagePage/Usage + 0, // LogicalMinimum + 1, // LogicalMaximum + 0, // PhysicalMinimum + 1, // PhysicalMaximum + 0, // UnitExponent + 0, // Unit + 3, // BytePosition + 0, // BitPosition + 1); // BitSize + + int32_t value = extractLogicalValue(reportData, control); + EXPECT_EQ(value, 0x1); + + bool result = applyLogicalValue(reportData, control, 0); + EXPECT_TRUE(result); + EXPECT_EQ(reportData, QByteArray::fromHex("81'00'00'FE'01")); + + int32_t value2 = extractLogicalValue(reportData, control); + EXPECT_EQ(value2, 0x0); +} + +TEST(HidReportDescriptorTest, ControlValue_unsigned11Bits) { + auto reportData = QByteArray::fromHex("81'30'46'00'01"); + Control control({0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // Flags + 0x0009'0001, // UsagePage/Usage + 0, // LogicalMinimum + 2047, // LogicalMaximum + 0, // PhysicalMinimum + 2047, // PhysicalMaximum + 0, // UnitExponent + 0, // Unit + 1, // BytePosition + 2, // BitPosition + 11); // BitSize + + int32_t value = extractLogicalValue(reportData, control); + EXPECT_EQ(value, 0b001'1000'1100); + + bool result = applyLogicalValue(reportData, control, 0b010'1010'1010); + EXPECT_TRUE(result); + EXPECT_EQ(reportData, QByteArray::fromHex("81'A8'4A'00'01")); + + int32_t value2 = extractLogicalValue(reportData, control); + EXPECT_EQ(value2, 0b010'1010'1010); +} + +TEST(HidReportDescriptorTest, ControlValue_signed11Bits) { + auto reportData = QByteArray::fromHex("AA'BB'CC'DD'EE"); + Control control({0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // Flags + 0x0009'0001, // UsagePage/Usage + -1000, // LogicalMinimum + 1000, // LogicalMaximum + -10, // PhysicalMinimum + 10, // PhysicalMaximum + 0, // UnitExponent + 0, // Unit + 2, // BytePosition + 0, // BitPosition + 11); // BitSize + + int32_t value = extractLogicalValue(reportData, control); + EXPECT_EQ(value, -564); + + bool result = applyLogicalValue(reportData, control, +200); + EXPECT_TRUE(result); + EXPECT_EQ(reportData, QByteArray::fromHex("AA'BB'C8'D8'EE")); + + int32_t value2 = extractLogicalValue(reportData, control); + EXPECT_EQ(value2, +200); + + bool result2 = applyLogicalValue(reportData, control, -200); + EXPECT_TRUE(result2); + EXPECT_EQ(reportData, QByteArray::fromHex("AA'BB'38'DF'EE")); + + int32_t value3 = extractLogicalValue(reportData, control); + EXPECT_EQ(value3, -200); +} + +TEST(HidReportDescriptorTest, ControlValue_unsigned32Bits) { + auto reportData = QByteArray::fromHex("0A'21'43'65'B7"); + Control control({0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // Flags + 0x0009'0001, // UsagePage/Usage + 0, // LogicalMinimum + 0x7FFFFFFF, // LogicalMaximum + 0, // PhysicalMinimum + 0x7FFFFFFF, // PhysicalMaximum + 0, // UnitExponent + 0, // Unit + 0, // BytePosition + 4, // BitPosition + 32); // BitSize + + int32_t value = extractLogicalValue(reportData, control); + EXPECT_EQ(value, 0x76'54'32'10); + + bool result = applyLogicalValue(reportData, control, 0x01'23'45'67); + EXPECT_TRUE(result); + EXPECT_EQ(reportData, QByteArray::fromHex("7A'56'34'12'B0")); + + int32_t value2 = extractLogicalValue(reportData, control); + EXPECT_EQ(value2, 0x01'23'45'67); +} + +TEST(HidReportDescriptorTest, ControlValue_signed32Bits) { + auto reportData = QByteArray::fromHex("0A'21'43'65'B7"); + Control control({0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // Flags + 0x0009'0001, // UsagePage/Usage + std::numeric_limits::min(), // LogicalMinimum + std::numeric_limits::max(), // LogicalMaximum + 10, // PhysicalMinimum + 10, // PhysicalMaximum + 0, // UnitExponent + 0, // Unit + 0, // BytePosition + 4, // BitPosition + 32); // BitSize + + int32_t value = extractLogicalValue(reportData, control); + EXPECT_EQ(value, 0x76'54'32'10); + + bool result = applyLogicalValue(reportData, control, std::numeric_limits::min()); + EXPECT_TRUE(result); + EXPECT_EQ(reportData, QByteArray::fromHex("0A'00'00'00'B8")); + + int32_t value2 = extractLogicalValue(reportData, control); + EXPECT_EQ(value2, std::numeric_limits::min()); + + bool result2 = applyLogicalValue(reportData, control, std::numeric_limits::max()); + EXPECT_TRUE(result2); + EXPECT_EQ(reportData, QByteArray::fromHex("FA'FF'FF'FF'B7")); + + int32_t value3 = extractLogicalValue(reportData, control); + EXPECT_EQ(value3, std::numeric_limits::max()); +} + +TEST(HidReportDescriptorTest, SetControlValue_OutOfRange) { + auto reportData = QByteArray::fromHex("81'00'00'00'01"); + Control control({0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // Flags + 0x0009'0001, // UsagePage/Usage + 0, // LogicalMinimum + 2047, // LogicalMaximum + 0, // PhysicalMinimum + 2047, // PhysicalMaximum + 0, // UnitExponent + 0, // Unit + 0, // BytePosition + 0, // BitPosition + 11); // BitSize + + bool result = applyLogicalValue(reportData, control, 3000); + EXPECT_FALSE(result); +} diff --git a/src/test/controller_mapping_validation_test.cpp b/src/test/controller_mapping_validation_test.cpp index 3ceefbe10dfd..ac0df590d906 100644 --- a/src/test/controller_mapping_validation_test.cpp +++ b/src/test/controller_mapping_validation_test.cpp @@ -6,8 +6,8 @@ #include #include "controllers/defs_controllers.h" +#include "controllers/legacycontrollermappingfilehandler.h" #include "controllers/scripting/legacy/controllerscriptenginelegacy.h" -#ifdef MIXXX_USE_QML #include "effects/effectsmanager.h" #include "engine/channelhandle.h" #include "engine/enginemixer.h" @@ -15,10 +15,12 @@ #include "library/library.h" #include "mixer/playerinfo.h" #include "mixer/playermanager.h" +#include "track/track.h" +#ifdef MIXXX_USE_QML #include "qml/qmlplayermanagerproxy.h" -#include "soundio/soundmanager.h" #endif #include "moc_controller_mapping_validation_test.cpp" +#include "soundio/soundmanager.h" FakeMidiControllerJSProxy::FakeMidiControllerJSProxy() : ControllerJSProxy(nullptr) { @@ -121,18 +123,10 @@ bool FakeController::isMappable() const { return false; } -#ifdef MIXXX_USE_QML -void deleteTrack(Track* pTrack) { - // Delete track objects directly in unit tests with - // no main event loop - delete pTrack; -}; -#endif - void LegacyControllerMappingValidationTest::SetUp() { m_mappingPath = getTestDir().filePath(QStringLiteral("../../res/controllers/")); m_pEnumerator.reset(new MappingInfoEnumerator(QList{m_mappingPath.absolutePath()})); -#ifdef MIXXX_USE_QML + // This setup mirrors coreservices -- it would be nice if we could use coreservices instead // but it does a lot of local disk / settings setup. auto pChannelHandleFactory = std::make_shared(); @@ -164,7 +158,7 @@ void LegacyControllerMappingValidationTest::SetUp() { nullptr, m_pConfig, dbConnectionPooler(), - deleteTrack); + [](Track* pTrack) { delete pTrack; }); m_pRecordingManager = std::make_shared(m_pConfig, m_pEngine.get()); CoverArtCache::createInstance(); @@ -177,16 +171,21 @@ void LegacyControllerMappingValidationTest::SetUp() { m_pRecordingManager.get()); m_pPlayerManager->bindToLibrary(m_pLibrary.get()); +#ifdef MIXXX_USE_QML mixxx::qml::QmlPlayerManagerProxy::registerPlayerManager(m_pPlayerManager); +#endif + ControllerScriptEngineBase::registerPlayerManager(m_pPlayerManager); ControllerScriptEngineBase::registerTrackCollectionManager(m_pTrackCollectionManager); } void LegacyControllerMappingValidationTest::TearDown() { PlayerInfo::destroy(); CoverArtCache::destroy(); +#ifdef MIXXX_USE_QML mixxx::qml::QmlPlayerManagerProxy::registerPlayerManager(nullptr); - ControllerScriptEngineBase::registerTrackCollectionManager(nullptr); #endif + ControllerScriptEngineBase::registerPlayerManager(nullptr); + ControllerScriptEngineBase::registerTrackCollectionManager(nullptr); } bool LegacyControllerMappingValidationTest::testLoadMapping(const MappingInfo& mapping) { diff --git a/src/test/controller_mapping_validation_test.h b/src/test/controller_mapping_validation_test.h index ee5671616799..ab1c0a1c9dd2 100644 --- a/src/test/controller_mapping_validation_test.h +++ b/src/test/controller_mapping_validation_test.h @@ -1,7 +1,6 @@ #pragma once #include - #include "control/controlindicatortimer.h" #include "controllers/controller.h" #include "controllers/controllermappinginfoenumerator.h" @@ -222,7 +221,6 @@ class LegacyControllerMappingValidationTest : public MixxxDbTest, SoundSourcePro protected: void SetUp() override; -#ifdef MIXXX_USE_QML void TearDown() override; TrackPointer getOrAddTrackByLocation( @@ -239,7 +237,6 @@ class LegacyControllerMappingValidationTest : public MixxxDbTest, SoundSourcePro std::shared_ptr m_pTrackCollectionManager; std::shared_ptr m_pRecordingManager; std::shared_ptr m_pLibrary; -#endif bool testLoadMapping(const MappingInfo& mapping); diff --git a/src/test/controllerscriptenginelegacy_test.cpp b/src/test/controllerscriptenginelegacy_test.cpp index ac8f2810a5c6..472c3d217870 100644 --- a/src/test/controllerscriptenginelegacy_test.cpp +++ b/src/test/controllerscriptenginelegacy_test.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -27,7 +28,26 @@ #ifdef MIXXX_USE_QML #include "qml/qmlmixxxcontrollerscreen.h" #endif +#include "control/controlindicatortimer.h" +#include "database/mixxxdb.h" +#include "effects/effectsmanager.h" +#include "engine/channelhandle.h" +#include "engine/channels/enginedeck.h" +#include "engine/enginebuffer.h" +#include "engine/enginemixer.h" +#include "library/coverartcache.h" +#include "library/library.h" +#include "library/trackcollectionmanager.h" +#include "mixer/deck.h" +#include "mixer/playerinfo.h" +#include "mixer/playermanager.h" +#include "recording/recordingmanager.h" +#include "soundio/soundmanager.h" +#include "sources/soundsourceproxy.h" +#include "test/mixxxdbtest.h" #include "test/mixxxtest.h" +#include "test/soundsourceproviderregistration.h" +#include "track/track.h" #include "util/color/colorpalette.h" #include "util/time.h" @@ -38,7 +58,9 @@ typedef std::unique_ptr ScopedTemporaryFile; const RuntimeLoggingCategory logger(QString("test").toLocal8Bit()); -class ControllerScriptEngineLegacyTest : public ControllerScriptEngineLegacy, public MixxxTest { +class ControllerScriptEngineLegacyTest : public ControllerScriptEngineLegacy, + public MixxxDbTest, + SoundSourceProviderRegistration { protected: ControllerScriptEngineLegacyTest() : ControllerScriptEngineLegacy(nullptr, logger) { @@ -57,6 +79,72 @@ class ControllerScriptEngineLegacyTest : public ControllerScriptEngineLegacy, pu mixxx::Time::addTestTime(10ms); QThread::currentThread()->setObjectName("Main"); initialize(); + + // This setup mirrors coreservices -- it would be nice if we could use coreservices instead + // but it does a lot of local disk / settings setup. + auto pChannelHandleFactory = std::make_shared(); + m_pEffectsManager = std::make_shared(config(), pChannelHandleFactory); + m_pEngine = std::make_shared( + config(), + "[Master]", + m_pEffectsManager.get(), + pChannelHandleFactory, + true); + m_pSoundManager = std::make_shared(config(), m_pEngine.get()); + m_pControlIndicatorTimer = std::make_shared(nullptr); + m_pEngine->registerNonEngineChannelSoundIO(gsl::make_not_null(m_pSoundManager.get())); + + CoverArtCache::createInstance(); + + m_pPlayerManager = std::make_shared(config(), + m_pSoundManager.get(), + m_pEffectsManager.get(), + m_pEngine.get()); + + m_pPlayerManager->addConfiguredDecks(); + m_pPlayerManager->addSampler(); + PlayerInfo::create(); + m_pEffectsManager->setup(); + + const auto dbConnection = mixxx::DbConnectionPooled(dbConnectionPooler()); + if (!MixxxDb::initDatabaseSchema(dbConnection)) { + exit(1); + } + + m_pTrackCollectionManager = std::make_shared( + nullptr, + config(), + dbConnectionPooler(), + [](Track* pTrack) { delete pTrack; }); + + m_pRecordingManager = std::make_shared(config(), m_pEngine.get()); + m_pLibrary = std::make_shared( + nullptr, + config(), + dbConnectionPooler(), + m_pTrackCollectionManager.get(), + m_pPlayerManager.get(), + m_pRecordingManager.get()); + + m_pPlayerManager->bindToLibrary(m_pLibrary.get()); + ControllerScriptEngineBase::registerPlayerManager(m_pPlayerManager); + ControllerScriptEngineBase::registerTrackCollectionManager(m_pTrackCollectionManager); + } + + void loadTrackSync(const QString& trackLocation) { + TrackPointer pTrack1 = m_pTrackCollectionManager->getOrAddTrack( + TrackRef::fromFilePath(getTestDir().filePath(trackLocation))); + auto* deck = m_pPlayerManager->getDeck(1); + deck->slotLoadTrack(pTrack1, +#ifdef __STEM__ + mixxx::StemChannelSelection(), +#endif + false); + m_pEngine->process(1024); + while (!deck->getEngineDeck()->getEngineBuffer()->isTrackLoaded()) { + QTest::qSleep(100); + } + processEvents(); } void TearDown() override { @@ -64,6 +152,22 @@ class ControllerScriptEngineLegacyTest : public ControllerScriptEngineLegacy, pu #ifdef MIXXX_USE_QML m_rootItems.clear(); #endif + CoverArtCache::destroy(); + ControllerScriptEngineBase::registerPlayerManager(nullptr); + ControllerScriptEngineBase::registerTrackCollectionManager(nullptr); + } + + ~ControllerScriptEngineLegacyTest() { + // Reset in the correct order to avoid singleton destruction issues + m_pSoundManager.reset(); + m_pPlayerManager.reset(); + PlayerInfo::destroy(); + m_pLibrary.reset(); + m_pRecordingManager.reset(); + m_pEngine.reset(); + m_pEffectsManager.reset(); + m_pTrackCollectionManager.reset(); + m_pControlIndicatorTimer.reset(); } bool evaluateScriptFile(const QFileInfo& scriptFile) { @@ -107,6 +211,15 @@ class ControllerScriptEngineLegacyTest : public ControllerScriptEngineLegacy, pu handleScreenFrame(screeninfo, frame, timestamp); } #endif + + std::shared_ptr m_pEffectsManager; + std::shared_ptr m_pEngine; + std::shared_ptr m_pSoundManager; + std::shared_ptr m_pControlIndicatorTimer; + std::shared_ptr m_pPlayerManager; + std::shared_ptr m_pRecordingManager; + std::shared_ptr m_pLibrary; + std::shared_ptr m_pTrackCollectionManager; }; class ControllerScriptEngineLegacyTimerTest : public ControllerScriptEngineLegacyTest { @@ -834,11 +947,60 @@ TEST_F(ControllerScriptEngineLegacyTest, convertCharsetAllCharset) { } } +TEST_F(ControllerScriptEngineLegacyTest, JavascriptPlayerProxy) { + QMap expectedValues = { + std::pair("artist", "Test Artist"), + std::pair("title", "Test title"), + std::pair("album", "Test Album"), + std::pair("albumArtist", "Test Album Artist"), + std::pair("genre", "Test genre"), + std::pair("composer", "Test Composer"), + std::pair("grouping", ""), + std::pair("year", "2011"), + std::pair("trackNumber", "07"), + std::pair("trackTotal", "60")}; + + m_pJSEngine->globalObject().setProperty( + "testedValues", m_pJSEngine->toScriptValue(expectedValues.keys())); + + const auto* code = + "var result = {};" + "var player = engine.getPlayer('[Channel1]');" + "for(const name of testedValues) {" + " player[`${name}Changed`].connect(newValue => {" + " result[name] = newValue;" + " });" + "}"; + + EXPECT_TRUE(evaluateAndAssert(code)) << "Evaluation error in test code"; + loadTrackSync("id3-test-data/all.mp3"); +#if QT_VERSION >= QT_VERSION_CHECK(6, 4, 0) + for (auto [property, expected] : expectedValues.asKeyValueRange()) { +#else + for (auto it = expectedValues.constBegin(); it != expectedValues.constEnd(); ++it) { + const QString& property = it.key(); + const QString& expected = it.value(); +#endif + auto const playerActual = evaluate("player." + property).toString(); + auto const slotActual = evaluate("result." + property).toString(); + EXPECT_QSTRING_EQ(expected, playerActual) + << QString("engine.getPlayer(...).%1 doesn't corresponds to " + "its expected value (expected: %2, actual: %3)") + .arg(property, expected, playerActual) + .toStdString(); + EXPECT_QSTRING_EQ(expected, slotActual) << QString( + "engine.getPlayer(...).%1Changed slot didn't produce the " + "expected value (expected: %2, actual: %3)") + .arg(property, expected, playerActual) + .toStdString(); + } +} + #ifdef MIXXX_USE_QML class MockScreenRender : public ControllerRenderingEngine { public: MockScreenRender(const LegacyControllerMapping::ScreenInfo& info) - : ControllerRenderingEngine(info, new ControllerEngineThreadControl){}; + : ControllerRenderingEngine(info, new ControllerEngineThreadControl) {}; MOCK_METHOD(void, requestSendingFrameData, (Controller * controller, const QByteArray& frame), diff --git a/src/test/id3-test-data/all.mp3 b/src/test/id3-test-data/all.mp3 new file mode 100644 index 000000000000..2a383fc1fe68 Binary files /dev/null and b/src/test/id3-test-data/all.mp3 differ diff --git a/src/test/qmlcontrolproxytest.cpp b/src/test/qmlcontrolproxytest.cpp new file mode 100644 index 000000000000..9d481ecda05c --- /dev/null +++ b/src/test/qmlcontrolproxytest.cpp @@ -0,0 +1,58 @@ +#include +#include + +#include +#include +#include + +#include "control/controlobject.h" +#include "qml/qmlcontrolproxy.h" +#include "test/mixxxtest.h" + +using namespace mixxx::qml; +using ::testing::ElementsAre; + +namespace { + +class QmlControlProxyTest : public MixxxTest { + protected: + void SetUp() override { + // Use a unique key for this test + m_key = ConfigKey("[TestQmlProxy]", "trigger_test"); + co = std::make_unique(m_key); + m_proxy = std::make_unique(); + m_proxy->setGroup(m_key.group); + m_proxy->setKey(m_key.item); + m_proxy->componentComplete(); + } + + void processEvents() { + // Ensure all queued events are processed + application()->processEvents(); + application()->processEvents(); + } + + ConfigKey m_key; + std::unique_ptr co; + std::unique_ptr m_proxy; +}; + +TEST_F(QmlControlProxyTest, TriggerEmitsValueChanged1Then0) { + QSignalSpy valueSpy(m_proxy.get(), &mixxx::qml::QmlControlProxy::valueChanged); + + // Initial value should be 0 + EXPECT_DOUBLE_EQ(m_proxy->getValue(), 0.0); + + m_proxy->trigger(); + QmlControlProxyTest::processEvents(); + + // The first emission should be 1, the second should be 0 + ASSERT_GE(valueSpy.size(), 2); + EXPECT_DOUBLE_EQ(valueSpy.at(0).at(0).toDouble(), 1.0); + EXPECT_DOUBLE_EQ(valueSpy.at(1).at(0).toDouble(), 0.0); + + // The final value should be 0 + EXPECT_DOUBLE_EQ(m_proxy->getValue(), 0.0); +} + +} // namespace diff --git a/src/test/readaheadmanager_test.cpp b/src/test/readaheadmanager_test.cpp index 3680a7d08d70..ece027526603 100644 --- a/src/test/readaheadmanager_test.cpp +++ b/src/test/readaheadmanager_test.cpp @@ -1,12 +1,14 @@ +#include "engine/readaheadmanager.h" + #include -#include #include +#include -#include "engine/cachingreader/cachingreader.h" #include "control/controlobject.h" +#include "engine/cachingreader/cachingreader.h" +#include "engine/controls/cuecontrol.h" #include "engine/controls/loopingcontrol.h" -#include "engine/readaheadmanager.h" #include "test/mixxxtest.h" #include "util/assert.h" #include "util/defs.h" @@ -41,14 +43,11 @@ class StubLoopControl : public LoopingControl { : LoopingControl(kGroup, UserSettingsPointer()) { } - void pushTriggerReturnValue(double value) { + void pushValues(double trigger, double target) { m_triggerReturnValues.push_back( - mixxx::audio::FramePos::fromEngineSamplePosMaybeInvalid(value)); - } - - void pushTargetReturnValue(double value) { + mixxx::audio::FramePos::fromEngineSamplePosMaybeInvalid(trigger)); m_targetReturnValues.push_back( - mixxx::audio::FramePos::fromEngineSamplePosMaybeInvalid(value)); + mixxx::audio::FramePos::fromEngineSamplePosMaybeInvalid(target)); } mixxx::audio::FramePos nextTrigger(bool reverse, @@ -68,6 +67,35 @@ class StubLoopControl : public LoopingControl { QList m_targetReturnValues; }; +class StubCueControl : public CueControl { + public: + StubCueControl() + : CueControl(kGroup, UserSettingsPointer()) { + } + + void pushValues(double trigger, double target) { + m_triggerReturnValues.push_back( + mixxx::audio::FramePos::fromEngineSamplePosMaybeInvalid(trigger)); + + m_targetReturnValues.push_back( + mixxx::audio::FramePos::fromEngineSamplePosMaybeInvalid(target)); + } + + mixxx::audio::FramePos nextTrigger(bool, + mixxx::audio::FramePos, + mixxx::audio::FramePos* pTargetPosition, + mixxx::audio::FrameDiff_t) override { + RELEASE_ASSERT(!m_targetReturnValues.isEmpty()); + *pTargetPosition = m_targetReturnValues.takeFirst(); + RELEASE_ASSERT(!m_triggerReturnValues.isEmpty()); + return m_triggerReturnValues.takeFirst(); + } + + protected: + QList m_triggerReturnValues; + QList m_targetReturnValues; +}; + class ReadAheadManagerTest : public MixxxTest { public: ReadAheadManagerTest() @@ -75,6 +103,12 @@ class ReadAheadManagerTest : public MixxxTest { m_beatNextCO(ConfigKey(kGroup, "beat_next")), m_beatPrevCO(ConfigKey(kGroup, "beat_prev")), m_playCO(ConfigKey(kGroup, "play")), + m_stopCO(ConfigKey(kGroup, "stop")), + m_vinylControlCO(ConfigKey(kGroup, "vinylcontrol_enabled")), + m_vinylControlModeCO(ConfigKey(kGroup, "vinylcontrol_mode")), + m_passthroughCO(ConfigKey(kGroup, "passthrough")), + m_indicator250msCO(ConfigKey("[App]", "indicator_250ms")), + m_indicator500msCO(ConfigKey("[App]", "indicator_500ms")), m_quantizeCO(ConfigKey(kGroup, "quantize")), m_repeatCO(ConfigKey(kGroup, "repeat")), m_slipEnabledCO(ConfigKey(kGroup, "slip_enabled")), @@ -87,14 +121,22 @@ class ReadAheadManagerTest : public MixxxTest { SampleUtil::clear(m_pBuffer, MAX_BUFFER_LEN); m_pReader.reset(new StubReader()); m_pLoopControl.reset(new StubLoopControl()); + m_pCueControl.reset(new StubCueControl()); m_pReadAheadManager.reset(new ReadAheadManager(m_pReader.data(), - m_pLoopControl.data())); + m_pLoopControl.data(), + m_pCueControl.data())); } ControlObject m_beatClosestCO; ControlObject m_beatNextCO; ControlObject m_beatPrevCO; ControlObject m_playCO; + ControlObject m_stopCO; + ControlObject m_vinylControlCO; + ControlObject m_vinylControlModeCO; + ControlObject m_passthroughCO; + ControlObject m_indicator250msCO; + ControlObject m_indicator500msCO; ControlObject m_quantizeCO; ControlObject m_repeatCO; ControlObject m_slipEnabledCO; @@ -102,27 +144,72 @@ class ReadAheadManagerTest : public MixxxTest { CSAMPLE* m_pBuffer; QScopedPointer m_pReader; QScopedPointer m_pLoopControl; + QScopedPointer m_pCueControl; QScopedPointer m_pReadAheadManager; }; +TEST_F(ReadAheadManagerTest, SavedJump) { + m_pReadAheadManager->notifySeek(0.5); + + for (int i = 0; i < 2; i++) { + m_pLoopControl->pushValues(kNoTrigger, kNoTrigger); + } + + m_pCueControl->pushValues(20, 6); + m_pCueControl->pushValues(kNoTrigger, kNoTrigger); + + EXPECT_EQ(20, + m_pReadAheadManager->getNextSamples( + 1.0, m_pBuffer, 30, mixxx::audio::ChannelCount::stereo())); + EXPECT_NEAR(6.5, m_pReadAheadManager->getPlaypos(), 1); + EXPECT_EQ(80, + m_pReadAheadManager->getNextSamples( + 1.0, m_pBuffer, 80, mixxx::audio::ChannelCount::stereo())); + + EXPECT_NEAR(86.5, m_pReadAheadManager->getPlaypos(), 1); +} + +TEST_F(ReadAheadManagerTest, TriggerOnJumpOrLoop) { + m_pReadAheadManager->notifySeek(0); + + // The jump trigger is located before the loop end + m_pLoopControl->pushValues(50, 10); + m_pCueControl->pushValues(40, 20); + + EXPECT_EQ(40, + m_pReadAheadManager->getNextSamples( + 1.0, m_pBuffer, 100, mixxx::audio::ChannelCount::stereo())); + EXPECT_NEAR(20, m_pReadAheadManager->getPlaypos(), 1); + + m_pReadAheadManager->notifySeek(0); + + // The jump trigger is located after the loop end + m_pLoopControl->pushValues(50, 40); + m_pCueControl->pushValues(60, 30); + + EXPECT_EQ(50, + m_pReadAheadManager->getNextSamples( + 1.0, m_pBuffer, 100, mixxx::audio::ChannelCount::stereo())); + EXPECT_NEAR(40, m_pReadAheadManager->getPlaypos(), 1); +} + TEST_F(ReadAheadManagerTest, FractionalFrameLoop) { // If we are in reverse, a loop is enabled, and the current playposition // is before of the loop, we should seek to the out point of the loop. m_pReadAheadManager->notifySeek(0.5); - // Trigger value means, the sample that triggers the loop (loop in) - m_pLoopControl->pushTriggerReturnValue(20.2); - m_pLoopControl->pushTriggerReturnValue(20.2); - m_pLoopControl->pushTriggerReturnValue(20.2); - m_pLoopControl->pushTriggerReturnValue(20.2); - m_pLoopControl->pushTriggerReturnValue(20.2); - m_pLoopControl->pushTriggerReturnValue(20.2); - // Process value is the sample we should seek to. - m_pLoopControl->pushTargetReturnValue(3.3); - m_pLoopControl->pushTargetReturnValue(3.3); - m_pLoopControl->pushTargetReturnValue(3.3); - m_pLoopControl->pushTargetReturnValue(3.3); - m_pLoopControl->pushTargetReturnValue(3.3); - m_pLoopControl->pushTargetReturnValue(kNoTrigger); + // Trigger value means, the sample that triggers the loop (loop in) and the + // sample we should seek to. + m_pLoopControl->pushValues(20.2, 3.3); + m_pLoopControl->pushValues(20.2, 3.3); + m_pLoopControl->pushValues(20.2, 3.3); + m_pLoopControl->pushValues(20.2, 3.3); + m_pLoopControl->pushValues(20.2, 3.3); + m_pLoopControl->pushValues(20.2, kNoTrigger); + + for (int i = 0; i < 6; i++) { + m_pCueControl->pushValues(kNoTrigger, kNoTrigger); + } + // read from start to loop trigger, overshoot 0.3 EXPECT_EQ(20, m_pReadAheadManager->getNextSamples( diff --git a/src/test/waveform_upgrade_test.cpp b/src/test/waveform_upgrade_test.cpp index 44387755bca8..21386e1ec3f1 100644 --- a/src/test/waveform_upgrade_test.cpp +++ b/src/test/waveform_upgrade_test.cpp @@ -23,7 +23,7 @@ TEST_F(UpgradeTest, useCorrectWaveformType) { int oldTypeId; WaveformWidgetType::Type expectedType; WaveformWidgetBackend expectedBackend; - allshader::WaveformRendererSignalBase::Options expectedOptions; + WaveformRendererSignalBase::Options expectedOptions; }; QList testCases = { @@ -31,132 +31,132 @@ TEST_F(UpgradeTest, useCorrectWaveformType) { 0, WaveformWidgetType::Empty, WaveformWidgetBackend::None, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"SoftwareWaveform", 2, // Filtered WaveformWidgetType::Filtered, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"QtSimpleWaveform", 3, // Simple Qt WaveformWidgetType::Simple, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"QtWaveform", 4, // Filtered Qt WaveformWidgetType::Filtered, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLSimpleWaveform", 5, // Simple GL WaveformWidgetType::Simple, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLFilteredWaveform", 6, // Filtered GL WaveformWidgetType::Filtered, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLSLFilteredWaveform", 7, // Filtered GLSL WaveformWidgetType::Filtered, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::HighDetail}, + WaveformRendererSignalBase::Option::HighDetail}, test_case{"HSVWaveform", 8, // HSV WaveformWidgetType::HSV, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLVSyncTest", 9, // VSync GL WaveformWidgetType::VSyncTest, WaveformWidgetBackend::None, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"RGBWaveform", 10, // RGB WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLRGBWaveform", 11, // RGB GL WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLSLRGBWaveform", 12, // RGB GLSL WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::HighDetail}, + WaveformRendererSignalBase::Option::HighDetail}, test_case{"QtVSyncTest", 13, // VSync Qt WaveformWidgetType::VSyncTest, WaveformWidgetBackend::None, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"QtHSVWaveform", 14, // HSV Qt WaveformWidgetType::HSV, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"QtRGBWaveform", 15, // RGB Qt WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"GLSLRGBStackedWaveform", 16, // RGB Stacked WaveformWidgetType::Stacked, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::HighDetail}, + WaveformRendererSignalBase::Option::HighDetail}, test_case{"AllShaderRGBWaveform", 17, // RGB (all-shaders) WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"AllShaderLRRGBWaveform", 18, // L/R RGB (all-shaders) WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::SplitStereoSignal}, + WaveformRendererSignalBase::Option::SplitStereoSignal}, test_case{"AllShaderFilteredWaveform", 19, // Filtered (all-shaders) WaveformWidgetType::Filtered, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"AllShaderSimpleWaveform", 20, // Simple (all-shaders) WaveformWidgetType::Simple, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"AllShaderHSVWaveform", 21, // HSV (all-shaders) WaveformWidgetType::HSV, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"AllShaderTexturedFiltered", 22, // Filtered (textured) (all-shaders) WaveformWidgetType::Filtered, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::HighDetail}, + WaveformRendererSignalBase::Option::HighDetail}, test_case{"AllShaderTexturedRGB", 23, // RGB (textured) (all-shaders) WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::HighDetail}, + WaveformRendererSignalBase::Option::HighDetail}, test_case{"AllShaderTexturedStacked", 24, // Stacked (textured) (all-shaders) WaveformWidgetType::Stacked, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::HighDetail}, + WaveformRendererSignalBase::Option::HighDetail}, test_case{"AllShaderRGBStackedWaveform", 26, // Stacked (all-shaders) WaveformWidgetType::Stacked, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}, + WaveformRendererSignalBase::Option::None}, test_case{"Count_WaveformwidgetType", 27, // Also used as invalid value WaveformWidgetType::RGB, WaveformWidgetBackend::AllShader, - allshader::WaveformRendererSignalBase::Option::None}}; + WaveformRendererSignalBase::Option::None}}; for (const auto& testCase : testCases) { int waveformType = testCase.oldTypeId; diff --git a/src/util/cmdlineargs.cpp b/src/util/cmdlineargs.cpp index 8432ea55731f..64f6cda57127 100644 --- a/src/util/cmdlineargs.cpp +++ b/src/util/cmdlineargs.cpp @@ -1,5 +1,6 @@ #include "util/cmdlineargs.h" +#include #include #ifndef __WINDOWS__ #include @@ -69,10 +70,12 @@ CmdlineArgs::CmdlineArgs() m_logFlushLevel(mixxx::kLogFlushLevelDefault), m_logMaxFileSize(mixxx::kLogMaxFileSizeDefault), // We are not ready to switch to XDG folders under Linux, so keeping $HOME/.mixxx as preferences folder. see #8090 +#if defined(__LINUX__) #ifdef MIXXX_SETTINGS_PATH m_settingsPath(QDir::homePath().append("/").append(MIXXX_SETTINGS_PATH)) -#elif defined(__LINUX__) +#else #error "We are not ready to switch to XDG folders under Linux" +#endif #elif defined(Q_OS_IOS) // On iOS we intentionally use a user-accessible subdirectory of the sandbox // documents directory rather than the default app data directory. Specifically @@ -280,11 +283,29 @@ bool CmdlineArgs::parse(const QStringList& arguments, CmdlineArgs::ParseMode mod parser.addOption(developer); #ifdef MIXXX_USE_QML - const QCommandLineOption qml(QStringLiteral("qml"), - forUserFeedback ? QCoreApplication::translate("CmdlineArgs", - "Loads experimental QML GUI instead of legacy QWidget skin") - : QString()); + const QCommandLineOption qml(QStringLiteral("new-ui"), + forUserFeedback + ? QCoreApplication::translate("CmdlineArgs", + "Loads the highly unstable 3.0 Mixxx interface, " + "based on QML. You need to use a new setting " + "profile, or run with " + "'allow-dangerous-data-corruption-risk' to use " + "with the current one. We highly recommend " + "backing up your data if you do so.") + : QString()); + QCommandLineOption qmlDeprecated( + QStringLiteral("qml")); + qmlDeprecated.setFlags(QCommandLineOption::HiddenFromHelp); + parser.addOption(qmlDeprecated); parser.addOption(qml); + const QCommandLineOption awareOfRisk( + QStringLiteral("allow-dangerous-data-corruption-risk"), + forUserFeedback + ? QCoreApplication::translate("CmdlineArgs", + "Force Mixxx to load an unstable version with an " + "existing user profile from a stable version") + : QString()); + parser.addOption(awareOfRisk); #endif const QCommandLineOption safeMode(QStringLiteral("safe-mode"), forUserFeedback ? QCoreApplication::translate("CmdlineArgs", @@ -459,6 +480,12 @@ bool CmdlineArgs::parse(const QStringList& arguments, CmdlineArgs::ParseMode mod m_developer = parser.isSet(developer); #ifdef MIXXX_USE_QML m_qml = parser.isSet(qml); + if (parser.isSet(qmlDeprecated)) { + m_qml |= true; + qWarning() << "The argument '--qml' is deprecated and will be soon " + "removed. Please use '--new-ui' instead!"; + } + m_awareOfRisk = parser.isSet(awareOfRisk); #endif m_safeMode = parser.isSet(safeMode) || parser.isSet(safeModeDeprecated); m_debugAssertBreak = parser.isSet(debugAssertBreak) || parser.isSet(debugAssertBreakDeprecated); diff --git a/src/util/cmdlineargs.h b/src/util/cmdlineargs.h index 9e42f27cb56b..85713cd29b2a 100644 --- a/src/util/cmdlineargs.h +++ b/src/util/cmdlineargs.h @@ -50,6 +50,9 @@ class CmdlineArgs final { bool isQml() const { return m_qml; } + bool isAwareOfRisk() const { + return m_awareOfRisk; + } #endif bool getSafeMode() const { return m_safeMode; } bool useColors() const { @@ -106,6 +109,7 @@ class CmdlineArgs final { bool m_developer; // Developer Mode #ifdef MIXXX_USE_QML bool m_qml; + bool m_awareOfRisk; #endif bool m_safeMode; bool m_useLegacyVuMeter; diff --git a/src/util/desktophelper.cpp b/src/util/desktophelper.cpp index 8cf849ba68ac..8124d27d7a0f 100644 --- a/src/util/desktophelper.cpp +++ b/src/util/desktophelper.cpp @@ -7,7 +7,7 @@ #include #include -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) #include #include #include @@ -24,6 +24,9 @@ QString getSelectInFileBrowserCommand() { return "open -R"; #elif defined(Q_OS_WIN) return "explorer.exe /select,"; +#elif defined(Q_OS_ANDROID) + // TODO emit android intent + return ""; #elif defined(Q_OS_LINUX) QProcess proc; QString output; @@ -58,7 +61,7 @@ QString removeChildDir(const QString& path) { return path.left(index); } -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) bool selectInFreedesktop(const QString& path) { const QUrl fileurl = QUrl::fromLocalFile(path); const QStringList args(fileurl.toString()); @@ -125,7 +128,7 @@ void DesktopHelper::openInFileBrowser(const QStringList& paths) { if (fileInfo.exists()) { // Tryto select the file -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) if (sSelectInFileBrowserCommand == kSelectInFreedesktop) { if (selectInFreedesktop(path)) { openedDirs.insert(dirPath); diff --git a/src/util/font.cpp b/src/util/font.cpp index cb15ad7ca082..a50ade7ff594 100644 --- a/src/util/font.cpp +++ b/src/util/font.cpp @@ -67,16 +67,16 @@ void FontUtils::initializeFonts(const QString& resourcePath) { return; } - const QList files = fontsDir.entryList( + const QFileInfoList files = fontsDir.entryInfoList( QDir::NoDotAndDotDot | QDir::Files | QDir::Readable); - for (const QString& path : files) { + for (const QFileInfo& file : files) { // Skip text files (e.g. license files). For all others we let Qt tell // us whether the font format is supported since there is no way to // check other than adding. - if (path.endsWith(QStringLiteral(".txt"), Qt::CaseInsensitive)) { + if (file.suffix().toLower() == QStringLiteral("txt")) { continue; } - addFont(path); + addFont(file.canonicalFilePath()); } } diff --git a/src/util/screensaver.cpp b/src/util/screensaver.cpp index 45bee125053c..896fb52dd714 100644 --- a/src/util/screensaver.cpp +++ b/src/util/screensaver.cpp @@ -26,6 +26,10 @@ With the help of the following source codes: # include "util/mac.h" #elif defined(Q_OS_IOS) #include "util/screensaverios.h" +#elif defined(Q_OS_ANDROID) +#include +#include +#define HAS_XWINDOW_SCREENSAVER 0 #elif defined(_WIN32) # include #elif defined(__LINUX__) @@ -36,7 +40,8 @@ With the help of the following source codes: # include #endif -#if defined(__LINUX__) || (defined(HAVE_XSCREENSAVER_SUSPEND) && HAVE_XSCREENSAVER_SUSPEND) +#if (defined(__LINUX__) && defined(__X11__)) || \ + (defined(HAVE_XSCREENSAVER_SUSPEND) && HAVE_XSCREENSAVER_SUSPEND) # define None XNone # define Window XWindow # include @@ -146,7 +151,7 @@ void ScreenSaverHelper::uninhibitInternal() s_enabled = false; } -#elif defined(Q_OS_LINUX) +#elif (defined(Q_OS_LINUX) && defined(__X11__)) const char *SCREENSAVERS[][4] = { // org.freedesktop.ScreenSaver is the standard. should work for gnome and kde too, // but I add their specific names too @@ -346,6 +351,52 @@ void ScreenSaverHelper::inhibitInternal() { } void ScreenSaverHelper::uninhibitInternal() { } +#elif defined(Q_OS_ANDROID) + +QJniObject ScreenSaverHelper::s_wakeLock = {}; +// Screensavers are not supported +void ScreenSaverHelper::triggerUserActivity() { +} +void ScreenSaverHelper::inhibitInternal() { + if (!ScreenSaverHelper::s_wakeLock.isValid()) { + QJniObject context = QNativeInterface::QAndroidApplication::context(); + QJniObject POWER_SERVICE = + QJniObject::getStaticObjectField( + "android/content/Context", + "POWER_SERVICE", + "Ljava/lang/String;"); + auto powerService = context.callObjectMethod("getSystemService", + "(Ljava/lang/String;)Ljava/lang/Object;", + POWER_SERVICE.object()); + if (!powerService.isValid()) { + qDebug() << "powerService invalid"; + return; + } + + jint FULL_WAKE_LOCK = + QJniObject::getStaticField( + "android/os/PowerManager", + "FULL_WAKE_LOCK"); + ScreenSaverHelper::s_wakeLock = + powerService.callObjectMethod("newWakeLock", + "(ILjava/lang/String;)Landroid/os/PowerManager$WakeLock;", + FULL_WAKE_LOCK, + QJniObject::fromString("Mixxx").object()); + if (!ScreenSaverHelper::s_wakeLock.isValid()) { + __android_log_print(ANDROID_LOG_WARN, "mixxx", "powerService wakeLock invalid"); + qWarning() << "ScreenSaverHelper::inhibitInternal - wakeLock invalid"; + return; + } + } + ScreenSaverHelper::s_wakeLock.callMethod("acquire"); +} +void ScreenSaverHelper::uninhibitInternal() { + // QNativeInterface::QAndroidApplication::runOnAndroidMainThread([]() { + if (ScreenSaverHelper::s_wakeLock.isValid()) { + ScreenSaverHelper::s_wakeLock.callMethod("release"); + } + // }).waitForFinished(); +} #else void ScreenSaverHelper::triggerUserActivity() { diff --git a/src/util/screensaver.h b/src/util/screensaver.h index a1f5048d6aba..191a103caa44 100644 --- a/src/util/screensaver.h +++ b/src/util/screensaver.h @@ -29,6 +29,8 @@ class ScreenSaverHelper { /* sleep management */ static IOPMAssertionID s_systemSleepAssertionID; static IOPMAssertionID s_userActivityAssertionID; +#elif defined(Q_OS_ANDROID) + static QJniObject s_wakeLock; #elif defined(Q_OS_LINUX) static uint32_t s_cookie; static int s_saverindex; diff --git a/src/util/versionstore.h b/src/util/versionstore.h index 6b6834ab1c5e..e8aabd44aab6 100644 --- a/src/util/versionstore.h +++ b/src/util/versionstore.h @@ -5,6 +5,9 @@ #include namespace VersionStore { +/// Constant to store the future unreleased Mixxx 3.0 +static QString FUTURE_UNSTABLE = QStringLiteral("3.0-unstable"); + /// Returns the current Mixxx version string (e.g. 1.12.0-alpha) QString version(); diff --git a/src/vinylcontrol/defs_vinylcontrol.h b/src/vinylcontrol/defs_vinylcontrol.h index 2c03d2fc3022..500dd34a7ee2 100644 --- a/src/vinylcontrol/defs_vinylcontrol.h +++ b/src/vinylcontrol/defs_vinylcontrol.h @@ -13,6 +13,9 @@ constexpr int VINYL_STATUS_ERROR = 3; #define MIXXX_VINYL_SERATOCD "Serato CD" #define MIXXX_VINYL_TRAKTORSCRATCHSIDEA "Traktor Scratch MK1 Vinyl, Side A" #define MIXXX_VINYL_TRAKTORSCRATCHSIDEB "Traktor Scratch MK1 Vinyl, Side B" +#define MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA "Traktor Scratch MK2 Vinyl, Side A (beta)" +#define MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB "Traktor Scratch MK2 Vinyl, Side B (beta)" +#define MIXXX_VINYL_TRAKTORSCRATCHMK2CD "Traktor Scratch MK2 CD (beta)" #define MIXXX_VINYL_MIXVIBESDVS "MixVibes DVS V2 Vinyl" #define MIXXX_VINYL_MIXVIBES7INCH "MixVibes 7 inch" #define MIXXX_VINYL_PIONEERA "Pioneer RekordBox DVS Control Vinyl, Side A" @@ -23,6 +26,9 @@ constexpr int VINYL_STATUS_ERROR = 3; #define MIXXX_VINYL_SERATOCD_XWAX_NAME "serato_cd" #define MIXXX_VINYL_TRAKTORSCRATCHSIDEA_XWAX_NAME "traktor_a" #define MIXXX_VINYL_TRAKTORSCRATCHSIDEB_XWAX_NAME "traktor_b" +#define MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA_XWAX_NAME "traktor_mk2_a" +#define MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB_XWAX_NAME "traktor_mk2_b" +#define MIXXX_VINYL_TRAKTORSCRATCHMK2CD_XWAX_NAME "traktor_mk2_cd" #define MIXXX_VINYL_MIXVIBESDVS_XWAX_NAME "mixvibes_v2" #define MIXXX_VINYL_MIXVIBES7INCH_XWAX_NAME "mixvibes_7inch" #define MIXXX_VINYL_PIONEERA_XWAX_NAME "pioneer_a" @@ -36,6 +42,9 @@ constexpr int VINYL_STATUS_ERROR = 3; #define MIXXX_VINYL_SERATOCD_LEADIN 0 #define MIXXX_VINYL_TRAKTORSCRATCHSIDEA_LEADIN 10 #define MIXXX_VINYL_TRAKTORSCRATCHSIDEB_LEADIN 10 +#define MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA_LEADIN 10 +#define MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB_LEADIN 10 +#define MIXXX_VINYL_TRAKTORSCRATCHMK2CD_LEADIN 10 #define MIXXX_VINYL_MIXVIBESDVS_LEADIN 0 #define MIXXX_VINYL_MIXVIBES7INCH_LEADIN 0 #define MIXXX_VINYL_PIONEERA_LEADIN 10 diff --git a/src/vinylcontrol/vinylcontrolxwax.cpp b/src/vinylcontrol/vinylcontrolxwax.cpp index 35c507c2eb21..c5cb8e9139ac 100644 --- a/src/vinylcontrol/vinylcontrolxwax.cpp +++ b/src/vinylcontrol/vinylcontrolxwax.cpp @@ -92,6 +92,12 @@ VinylControlXwax::VinylControlXwax(UserSettingsPointer pConfig, const QString& g timecode = MIXXX_VINYL_TRAKTORSCRATCHSIDEA_XWAX_NAME; } else if (strVinylType == MIXXX_VINYL_TRAKTORSCRATCHSIDEB) { timecode = MIXXX_VINYL_TRAKTORSCRATCHSIDEB_XWAX_NAME; + } else if (strVinylType == MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA) { + timecode = MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEA_XWAX_NAME; + } else if (strVinylType == MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB) { + timecode = MIXXX_VINYL_TRAKTORSCRATCHMK2SIDEB_XWAX_NAME; + } else if (strVinylType == MIXXX_VINYL_TRAKTORSCRATCHMK2CD) { + timecode = MIXXX_VINYL_TRAKTORSCRATCHMK2CD_XWAX_NAME; } else if (strVinylType == MIXXX_VINYL_MIXVIBESDVS) { timecode = MIXXX_VINYL_MIXVIBESDVS_XWAX_NAME; } else if (strVinylType == MIXXX_VINYL_MIXVIBES7INCH) { @@ -113,12 +119,22 @@ VinylControlXwax::VinylControlXwax(UserSettingsPointer pConfig, const QString& g m_pSteadyGross = new SteadyPitch(0.5, false); } - timecode_def* tc_def = timecoder_find_definition(timecode); + // Determine the config folder path + std::string lut_dir_string; + const char* lut_dir_path = nullptr; + + if (!getLutDir().isEmpty()) { + lut_dir_string = getLutDir().toStdString(); + lut_dir_path = lut_dir_string.c_str(); + } + + // Pass the config folder path to the timecoder + timecode_def* tc_def = timecoder_find_definition(timecode, lut_dir_path); if (tc_def == nullptr) { qDebug() << "Error finding timecode definition for " << timecode << ", defaulting to" << MIXXX_VINYL_DEFAULT_XWAX_NAME; timecode = MIXXX_VINYL_DEFAULT_XWAX_NAME; - tc_def = timecoder_find_definition(timecode); + tc_def = timecoder_find_definition(timecode, lut_dir_path); } double speed = 1.0; @@ -194,6 +210,18 @@ void VinylControlXwax::freeLUTs() { s_xwaxLUTMutex.unlock(); } +QString VinylControlXwax::getLutDir() { + QDir lutPath(m_pConfig->getSettingsPath().append("/lut/")); + + if (!lutPath.exists()) { + if (!lutPath.mkpath(".")) { + qWarning() << "Failed to create LUT directory at" << lutPath; + return QString{}; + } + } + + return lutPath.absolutePath(); +} bool VinylControlXwax::writeQualityReport(VinylSignalQualityReport* pReport) { if (pReport) { diff --git a/src/vinylcontrol/vinylcontrolxwax.h b/src/vinylcontrol/vinylcontrolxwax.h index cc5460b84d67..24b96e9d06df 100644 --- a/src/vinylcontrol/vinylcontrolxwax.h +++ b/src/vinylcontrol/vinylcontrolxwax.h @@ -29,6 +29,7 @@ class VinylControlXwax : public VinylControl { virtual ~VinylControlXwax(); static void freeLUTs(); + QString getLutDir(); void analyzeSamples(CSAMPLE* pSamples, size_t nFrames); virtual bool writeQualityReport(VinylSignalQualityReport* qualityReportFifo); diff --git a/src/waveform/renderers/allshader/digitsrenderer.cpp b/src/waveform/renderers/allshader/digitsrenderer.cpp index 9cab55a95f46..7d23419a3c5c 100644 --- a/src/waveform/renderers/allshader/digitsrenderer.cpp +++ b/src/waveform/renderers/allshader/digitsrenderer.cpp @@ -186,12 +186,12 @@ void allshader::DigitsRenderNode::updateTexture(rendergraph::Context* pContext, blur->setBlurRadius(static_cast(m_penWidth) / 3); QGraphicsScene scene; - QGraphicsPixmapItem item; - item.setPixmap(QPixmap::fromImage(image)); - item.setGraphicsEffect(blur.release()); + auto item = std::make_unique(); + item->setPixmap(QPixmap::fromImage(image)); + item->setGraphicsEffect(blur.release()); image.fill(Qt::transparent); QPainter painter(&image); - scene.addItem(&item); + scene.addItem(item.release()); scene.render(&painter, QRectF(), QRectF(0, 0, image.width(), image.height())); } diff --git a/src/waveform/renderers/allshader/waveformrenderbeat.cpp b/src/waveform/renderers/allshader/waveformrenderbeat.cpp index 3056321e7a68..5d2340da4599 100644 --- a/src/waveform/renderers/allshader/waveformrenderbeat.cpp +++ b/src/waveform/renderers/allshader/waveformrenderbeat.cpp @@ -56,14 +56,20 @@ bool WaveformRenderBeat::preprocessInner() { return false; } +#ifndef __SCENEGRAPH__ int alpha = m_waveformRenderer->getBeatGridAlpha(); if (alpha == 0) { return false; } + m_color.setAlphaF(alpha / 100.0f); +#endif - const float devicePixelRatio = m_waveformRenderer->getDevicePixelRatio(); + if (!m_color.alpha()) { + // Don't render the beatgrid lines is there are fully transparent + return true; + } - m_color.setAlphaF(alpha / 100.0f); + const float devicePixelRatio = m_waveformRenderer->getDevicePixelRatio(); const double trackSamples = m_waveformRenderer->getTrackSamples(); if (trackSamples <= 0.0) { diff --git a/src/waveform/renderers/allshader/waveformrendererendoftrack.cpp b/src/waveform/renderers/allshader/waveformrendererendoftrack.cpp index 478c7629a41b..fa998de33bc5 100644 --- a/src/waveform/renderers/allshader/waveformrendererendoftrack.cpp +++ b/src/waveform/renderers/allshader/waveformrendererendoftrack.cpp @@ -44,6 +44,12 @@ void WaveformRendererEndOfTrack::draw(QPainter* painter, QPaintEvent* event) { bool WaveformRendererEndOfTrack::init() { m_timer.restart(); + if (m_waveformRenderer->getGroup().isEmpty()) { + m_pEndOfTrackControl.reset(); + m_pTimeRemainingControl.reset(); + return true; + } + m_pEndOfTrackControl.reset(new ControlProxy( m_waveformRenderer->getGroup(), "end_of_track")); m_pTimeRemainingControl.reset(new ControlProxy( @@ -70,7 +76,7 @@ void WaveformRendererEndOfTrack::preprocess() { } bool WaveformRendererEndOfTrack::preprocessInner() { - if (!m_pEndOfTrackControl->toBool()) { + if (!m_pEndOfTrackControl || !m_pEndOfTrackControl->toBool()) { return false; } diff --git a/src/waveform/renderers/allshader/waveformrendererfiltered.cpp b/src/waveform/renderers/allshader/waveformrendererfiltered.cpp index efab7bdd60ad..13c14ea5582c 100644 --- a/src/waveform/renderers/allshader/waveformrendererfiltered.cpp +++ b/src/waveform/renderers/allshader/waveformrendererfiltered.cpp @@ -13,8 +13,9 @@ namespace allshader { WaveformRendererFiltered::WaveformRendererFiltered( WaveformWidgetRenderer* waveformWidget, - bool bRgbStacked) - : WaveformRendererSignalBase(waveformWidget), + bool bRgbStacked, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidget, options), m_bRgbStacked(bRgbStacked) { initForRectangles(0); setUsePreprocess(true); @@ -56,7 +57,7 @@ bool WaveformRendererFiltered::preprocessInner() { #ifdef __STEM__ auto stemInfo = pTrack->getStemInfo(); // If this track is a stem track, skip the rendering - if (!stemInfo.isEmpty() && waveform->hasStem()) { + if (!stemInfo.isEmpty() && waveform->hasStem() && !m_ignoreStem) { return false; } #endif diff --git a/src/waveform/renderers/allshader/waveformrendererfiltered.h b/src/waveform/renderers/allshader/waveformrendererfiltered.h index e807d32a83ee..5317358b924b 100644 --- a/src/waveform/renderers/allshader/waveformrendererfiltered.h +++ b/src/waveform/renderers/allshader/waveformrendererfiltered.h @@ -13,7 +13,8 @@ class allshader::WaveformRendererFiltered final public rendergraph::GeometryNode { public: explicit WaveformRendererFiltered(WaveformWidgetRenderer* waveformWidget, - bool rgbStacked); + bool rgbStacked, + ::WaveformRendererSignalBase::Options options); // Pure virtual from WaveformRendererSignalBase, not used void onSetup(const QDomNode& node) override; diff --git a/src/waveform/renderers/allshader/waveformrendererhsv.cpp b/src/waveform/renderers/allshader/waveformrendererhsv.cpp index bbf367407477..db48a960790a 100644 --- a/src/waveform/renderers/allshader/waveformrendererhsv.cpp +++ b/src/waveform/renderers/allshader/waveformrendererhsv.cpp @@ -12,8 +12,9 @@ using namespace rendergraph; namespace allshader { -WaveformRendererHSV::WaveformRendererHSV(WaveformWidgetRenderer* waveformWidget) - : WaveformRendererSignalBase(waveformWidget) { +WaveformRendererHSV::WaveformRendererHSV(WaveformWidgetRenderer* waveformWidget, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidget, options) { initForRectangles(0); setUsePreprocess(true); } @@ -54,7 +55,7 @@ bool WaveformRendererHSV::preprocessInner() { #ifdef __STEM__ auto stemInfo = pTrack->getStemInfo(); // If this track is a stem track, skip the rendering - if (!stemInfo.isEmpty() && waveform->hasStem()) { + if (!stemInfo.isEmpty() && waveform->hasStem() && !m_ignoreStem) { return false; } #endif @@ -80,9 +81,7 @@ bool WaveformRendererHSV::preprocessInner() { getGains(&allGain, false, nullptr, nullptr, nullptr); // Get base color of waveform in the HSV format (s and v isn't use) - float h, s, v; - getHsvF(m_waveformRenderer->getWaveformSignalColors()->getLowColor(), &h, &s, &v); - + float h = m_signalColor_h; const float breadth = static_cast(m_waveformRenderer->getBreadth()); const float halfBreadth = breadth / 2.0f; diff --git a/src/waveform/renderers/allshader/waveformrendererhsv.h b/src/waveform/renderers/allshader/waveformrendererhsv.h index d308a269eaf6..678d0809b193 100644 --- a/src/waveform/renderers/allshader/waveformrendererhsv.h +++ b/src/waveform/renderers/allshader/waveformrendererhsv.h @@ -12,7 +12,8 @@ class allshader::WaveformRendererHSV final : public allshader::WaveformRendererSignalBase, public rendergraph::GeometryNode { public: - explicit WaveformRendererHSV(WaveformWidgetRenderer* waveformWidget); + explicit WaveformRendererHSV(WaveformWidgetRenderer* waveformWidget, + ::WaveformRendererSignalBase::Options options); // Pure virtual from WaveformRendererSignalBase, not used void onSetup(const QDomNode& node) override; diff --git a/src/waveform/renderers/allshader/waveformrendererrgb.cpp b/src/waveform/renderers/allshader/waveformrendererrgb.cpp index 88daccb60cfd..d1c97e575d43 100644 --- a/src/waveform/renderers/allshader/waveformrendererrgb.cpp +++ b/src/waveform/renderers/allshader/waveformrendererrgb.cpp @@ -20,30 +20,14 @@ inline float math_pow2(float x) { WaveformRendererRGB::WaveformRendererRGB(WaveformWidgetRenderer* waveformWidget, ::WaveformRendererAbstract::PositionSource type, - WaveformRendererSignalBase::Options options) - : WaveformRendererSignalBase(waveformWidget), + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidget, options), m_isSlipRenderer(type == ::WaveformRendererAbstract::Slip), m_options(options) { initForRectangles(0); setUsePreprocess(true); } -void WaveformRendererRGB::setAxesColor(const QColor& axesColor) { - getRgbF(axesColor, &m_axesColor_r, &m_axesColor_g, &m_axesColor_b, &m_axesColor_a); -} - -void WaveformRendererRGB::setLowColor(const QColor& lowColor) { - getRgbF(lowColor, &m_rgbLowColor_r, &m_rgbLowColor_g, &m_rgbLowColor_b); -} - -void WaveformRendererRGB::setMidColor(const QColor& midColor) { - getRgbF(midColor, &m_rgbMidColor_r, &m_rgbMidColor_g, &m_rgbMidColor_b); -} - -void WaveformRendererRGB::setHighColor(const QColor& highColor) { - getRgbF(highColor, &m_rgbHighColor_r, &m_rgbHighColor_g, &m_rgbHighColor_b); -} - void WaveformRendererRGB::onSetup(const QDomNode&) { } @@ -83,7 +67,7 @@ bool WaveformRendererRGB::preprocessInner() { #ifdef __STEM__ auto stemInfo = pTrack->getStemInfo(); // If this track is a stem track, skip the rendering - if (!stemInfo.isEmpty() && waveform->hasStem()) { + if (!stemInfo.isEmpty() && waveform->hasStem() && !m_ignoreStem) { return false; } #endif @@ -115,7 +99,7 @@ bool WaveformRendererRGB::preprocessInner() { const float heightFactorAbs = allGain * halfBreadth / m_maxValue; const float heightFactor[2] = {-heightFactorAbs, heightFactorAbs}; - const bool splitLeftRight = m_options & WaveformRendererSignalBase::Option::SplitStereoSignal; + const bool splitLeftRight = m_options & ::WaveformRendererSignalBase::Option::SplitStereoSignal; const float low_r = static_cast(m_rgbLowColor_r); const float mid_r = static_cast(m_rgbMidColor_r); diff --git a/src/waveform/renderers/allshader/waveformrendererrgb.h b/src/waveform/renderers/allshader/waveformrendererrgb.h index 7451f65c1254..132c86b71916 100644 --- a/src/waveform/renderers/allshader/waveformrendererrgb.h +++ b/src/waveform/renderers/allshader/waveformrendererrgb.h @@ -15,7 +15,8 @@ class allshader::WaveformRendererRGB final explicit WaveformRendererRGB(WaveformWidgetRenderer* waveformWidget, ::WaveformRendererAbstract::PositionSource type = ::WaveformRendererAbstract::Play, - WaveformRendererSignalBase::Options options = WaveformRendererSignalBase::Option::None); + ::WaveformRendererSignalBase::Options options = + ::WaveformRendererSignalBase::Option::None); // Pure virtual from WaveformRendererSignalBase, not used void onSetup(const QDomNode& node) override; @@ -27,15 +28,9 @@ class allshader::WaveformRendererRGB final // Virtuals for rendergraph::Node void preprocess() override; - public slots: - void setAxesColor(const QColor& axesColor); - void setLowColor(const QColor& lowColor); - void setMidColor(const QColor& midColor); - void setHighColor(const QColor& highColor); - private: bool m_isSlipRenderer; - WaveformRendererSignalBase::Options m_options; + ::WaveformRendererSignalBase::Options m_options; bool preprocessInner(); diff --git a/src/waveform/renderers/allshader/waveformrenderersignalbase.cpp b/src/waveform/renderers/allshader/waveformrenderersignalbase.cpp index ea906dba69ea..1e48cdbc0edf 100644 --- a/src/waveform/renderers/allshader/waveformrenderersignalbase.cpp +++ b/src/waveform/renderers/allshader/waveformrenderersignalbase.cpp @@ -1,14 +1,41 @@ #include "waveform/renderers/allshader/waveformrenderersignalbase.h" +#include "util/colorcomponents.h" + namespace allshader { WaveformRendererSignalBase::WaveformRendererSignalBase( - WaveformWidgetRenderer* waveformWidget) - : ::WaveformRendererSignalBase(waveformWidget) { + WaveformWidgetRenderer* waveformWidget, ::WaveformRendererSignalBase::Options options) + : ::WaveformRendererSignalBase(waveformWidget, options), + m_ignoreStem(false) { } void WaveformRendererSignalBase::draw(QPainter*, QPaintEvent*) { DEBUG_ASSERT(false); } +void WaveformRendererSignalBase::setAxesColor(const QColor& axesColor) { + getRgbF(axesColor, &m_axesColor_r, &m_axesColor_g, &m_axesColor_b, &m_axesColor_a); +} + +void WaveformRendererSignalBase::setColor(const QColor& color) { + getRgbF(color, &m_signalColor_r, &m_signalColor_g, &m_signalColor_b); + getHsvF(color, &m_signalColor_h, &m_signalColor_s, &m_signalColor_v); +} + +void WaveformRendererSignalBase::setLowColor(const QColor& lowColor) { + getRgbF(lowColor, &m_rgbLowColor_r, &m_rgbLowColor_g, &m_rgbLowColor_b); + getRgbF(lowColor, &m_lowColor_r, &m_lowColor_g, &m_lowColor_b); +} + +void WaveformRendererSignalBase::setMidColor(const QColor& midColor) { + getRgbF(midColor, &m_rgbMidColor_r, &m_rgbMidColor_g, &m_rgbMidColor_b); + getRgbF(midColor, &m_midColor_r, &m_midColor_g, &m_midColor_b); +} + +void WaveformRendererSignalBase::setHighColor(const QColor& highColor) { + getRgbF(highColor, &m_rgbHighColor_r, &m_rgbHighColor_g, &m_rgbHighColor_b); + getRgbF(highColor, &m_highColor_r, &m_highColor_g, &m_highColor_b); +} + } // namespace allshader diff --git a/src/waveform/renderers/allshader/waveformrenderersignalbase.h b/src/waveform/renderers/allshader/waveformrenderersignalbase.h index 1299fe04fa86..a7214f6969b9 100644 --- a/src/waveform/renderers/allshader/waveformrenderersignalbase.h +++ b/src/waveform/renderers/allshader/waveformrenderersignalbase.h @@ -15,23 +15,30 @@ class WaveformRendererSignalBase; class allshader::WaveformRendererSignalBase : public ::WaveformRendererSignalBase { public: - enum class Option { - None = 0b0, - SplitStereoSignal = 0b1, - HighDetail = 0b10, - AllOptionsCombined = SplitStereoSignal | HighDetail, - }; - Q_DECLARE_FLAGS(Options, Option) - void draw(QPainter* painter, QPaintEvent* event) override final; static constexpr float m_maxValue{static_cast(std::numeric_limits::max())}; - explicit WaveformRendererSignalBase(WaveformWidgetRenderer* waveformWidget); + explicit WaveformRendererSignalBase(WaveformWidgetRenderer* waveformWidget, + ::WaveformRendererSignalBase::Options options); virtual bool supportsSlip() const { return false; } + public slots: + void setAxesColor(const QColor& axesColor); + void setColor(const QColor& lowColor); + void setLowColor(const QColor& lowColor); + void setMidColor(const QColor& midColor); + void setHighColor(const QColor& highColor); + + void setIgnoreStem(bool value) { + m_ignoreStem = value; + } + + protected: + bool m_ignoreStem; + DISALLOW_COPY_AND_ASSIGN(WaveformRendererSignalBase); }; diff --git a/src/waveform/renderers/allshader/waveformrenderersimple.cpp b/src/waveform/renderers/allshader/waveformrenderersimple.cpp index 2626e80e4311..3d50774018a7 100644 --- a/src/waveform/renderers/allshader/waveformrenderersimple.cpp +++ b/src/waveform/renderers/allshader/waveformrenderersimple.cpp @@ -12,8 +12,8 @@ using namespace rendergraph; namespace allshader { WaveformRendererSimple::WaveformRendererSimple( - WaveformWidgetRenderer* waveformWidget) - : WaveformRendererSignalBase(waveformWidget) { + WaveformWidgetRenderer* waveformWidget, ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidget, options) { initForRectangles(0); setUsePreprocess(true); } @@ -54,7 +54,7 @@ bool WaveformRendererSimple::preprocessInner() { #ifdef __STEM__ auto stemInfo = pTrack->getStemInfo(); // If this track is a stem track, skip the rendering - if (!stemInfo.isEmpty() && waveform->hasStem()) { + if (!stemInfo.isEmpty() && waveform->hasStem() && !m_ignoreStem) { return false; } #endif @@ -82,8 +82,7 @@ bool WaveformRendererSimple::preprocessInner() { // Per-band gain from the EQ knobs. float allGain{1.0}; - float bandGain[3] = {1.0, 1.0, 1.0}; - getGains(&allGain, false, &bandGain[0], &bandGain[1], &bandGain[2]); + getGains(&allGain, false, nullptr, nullptr, nullptr); const float breadth = static_cast(m_waveformRenderer->getBreadth()); const float halfBreadth = breadth / 2.0f; diff --git a/src/waveform/renderers/allshader/waveformrenderersimple.h b/src/waveform/renderers/allshader/waveformrenderersimple.h index 10c9418186b0..91bcf4303b0c 100644 --- a/src/waveform/renderers/allshader/waveformrenderersimple.h +++ b/src/waveform/renderers/allshader/waveformrenderersimple.h @@ -12,7 +12,8 @@ class allshader::WaveformRendererSimple final : public allshader::WaveformRendererSignalBase, public rendergraph::GeometryNode { public: - explicit WaveformRendererSimple(WaveformWidgetRenderer* waveformWidget); + explicit WaveformRendererSimple(WaveformWidgetRenderer* waveformWidget, + ::WaveformRendererSignalBase::Options options); // Pure virtual from WaveformRendererSignalBase, not used void onSetup(const QDomNode& node) override; diff --git a/src/waveform/renderers/allshader/waveformrendererslipmode.cpp b/src/waveform/renderers/allshader/waveformrendererslipmode.cpp index af122d2d5bf9..08a37653e65c 100644 --- a/src/waveform/renderers/allshader/waveformrendererslipmode.cpp +++ b/src/waveform/renderers/allshader/waveformrendererslipmode.cpp @@ -44,6 +44,11 @@ void WaveformRendererSlipMode::draw(QPainter* painter, QPaintEvent* event) { bool WaveformRendererSlipMode::init() { m_timer.restart(); + if (m_waveformRenderer->getGroup().isEmpty()) { + m_pSlipModeControl.reset(); + return true; + } + m_pSlipModeControl.reset(new ControlProxy( m_waveformRenderer->getGroup(), QStringLiteral("slip_enabled"))); @@ -79,7 +84,8 @@ void WaveformRendererSlipMode::preprocess() { } bool WaveformRendererSlipMode::preprocessInner() { - if (!m_pSlipModeControl->toBool() || !m_waveformRenderer->isSlipActive()) { + if (!m_pSlipModeControl || !m_pSlipModeControl->toBool() || + !m_waveformRenderer->isSlipActive()) { return false; } diff --git a/src/waveform/renderers/allshader/waveformrendererstem.cpp b/src/waveform/renderers/allshader/waveformrendererstem.cpp index 014c72f6676b..47b90c103e33 100644 --- a/src/waveform/renderers/allshader/waveformrendererstem.cpp +++ b/src/waveform/renderers/allshader/waveformrendererstem.cpp @@ -33,8 +33,9 @@ namespace allshader { WaveformRendererStem::WaveformRendererStem( WaveformWidgetRenderer* waveformWidget, - ::WaveformRendererAbstract::PositionSource type) - : WaveformRendererSignalBase(waveformWidget), + ::WaveformRendererAbstract::PositionSource type, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidget, options), m_isSlipRenderer(type == ::WaveformRendererAbstract::Slip), m_splitStemTracks(false), m_outlineOpacity(0.15f), @@ -47,6 +48,11 @@ void WaveformRendererStem::onSetup(const QDomNode&) { } bool WaveformRendererStem::init() { + m_pStemGain.clear(); + m_pStemMute.clear(); + if (m_waveformRenderer->getGroup().isEmpty()) { + return true; + } for (int stemIdx = 0; stemIdx < mixxx::kMaxSupportedStems; stemIdx++) { QString stemGroup = EngineDeck::getGroupForStem(m_waveformRenderer->getGroup(), stemIdx); m_pStemGain.emplace_back( @@ -219,7 +225,7 @@ bool WaveformRendererStem::preprocessInner() { } // Cast to float - float max = static_cast(u8max); + float max = static_cast(u8max) * allGain; // Apply the gains if (layerIdx) { diff --git a/src/waveform/renderers/allshader/waveformrendererstem.h b/src/waveform/renderers/allshader/waveformrendererstem.h index d9ad7b873ca6..bac42434a718 100644 --- a/src/waveform/renderers/allshader/waveformrendererstem.h +++ b/src/waveform/renderers/allshader/waveformrendererstem.h @@ -19,7 +19,9 @@ class allshader::WaveformRendererStem final public: explicit WaveformRendererStem(WaveformWidgetRenderer* waveformWidget, ::WaveformRendererAbstract::PositionSource type = - ::WaveformRendererAbstract::Play); + ::WaveformRendererAbstract::Play, + ::WaveformRendererSignalBase::Options options = + ::WaveformRendererSignalBase::Option::None); // Pure virtual from WaveformRendererSignalBase, not used void onSetup(const QDomNode& node) override; diff --git a/src/waveform/renderers/allshader/waveformrenderertextured.cpp b/src/waveform/renderers/allshader/waveformrenderertextured.cpp index 6245204825f8..f5ee356b958d 100644 --- a/src/waveform/renderers/allshader/waveformrenderertextured.cpp +++ b/src/waveform/renderers/allshader/waveformrenderertextured.cpp @@ -31,8 +31,8 @@ WaveformRendererTextured::WaveformRendererTextured( WaveformWidgetRenderer* waveformWidget, ::WaveformWidgetType::Type t, ::WaveformRendererAbstract::PositionSource type, - WaveformRendererSignalBase::Options options) - : WaveformRendererSignalBase(waveformWidget), + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidget, options), m_unitQuadListId(-1), m_textureId(0), m_textureRenderedWaveformCompletion(0), @@ -380,7 +380,7 @@ void WaveformRendererTextured::paintGL() { if (m_type == ::WaveformWidgetType::RGB) { m_frameShaderProgram->setUniformValue("splitStereoSignal", - m_options & WaveformRendererSignalBase::Option::SplitStereoSignal); + m_options & ::WaveformRendererSignalBase::Option::SplitStereoSignal); } m_frameShaderProgram->setUniformValue("axesColor", diff --git a/src/waveform/renderers/allshader/waveformrenderertextured.h b/src/waveform/renderers/allshader/waveformrenderertextured.h index 3769ae6d09c8..600119587567 100644 --- a/src/waveform/renderers/allshader/waveformrenderertextured.h +++ b/src/waveform/renderers/allshader/waveformrenderertextured.h @@ -24,8 +24,8 @@ class allshader::WaveformRendererTextured final : public allshader::WaveformRend WaveformWidgetType::Type t, ::WaveformRendererAbstract::PositionSource type = ::WaveformRendererAbstract::Play, - WaveformRendererSignalBase::Options options = - WaveformRendererSignalBase::Option::None); + ::WaveformRendererSignalBase::Options options = + ::WaveformRendererSignalBase::Option::None); ~WaveformRendererTextured() override; // override ::WaveformRendererSignalBase @@ -72,7 +72,7 @@ class allshader::WaveformRendererTextured final : public allshader::WaveformRend // shaders bool m_isSlipRenderer; - WaveformRendererSignalBase::Options m_options; + ::WaveformRendererSignalBase::Options m_options; bool m_shadersValid; WaveformWidgetType::Type m_type; const QString m_pFragShader; diff --git a/src/waveform/renderers/allshader/waveformrendermark.cpp b/src/waveform/renderers/allshader/waveformrendermark.cpp index 7bd519498568..3ef2175efe42 100644 --- a/src/waveform/renderers/allshader/waveformrendermark.cpp +++ b/src/waveform/renderers/allshader/waveformrendermark.cpp @@ -12,6 +12,7 @@ #include "rendergraph/vertexupdaters/rgbavertexupdater.h" #include "rendergraph/vertexupdaters/texturedvertexupdater.h" #include "track/track.h" +#include "util/assert.h" #include "util/colorcomponents.h" #include "util/roundtopixel.h" #include "waveform/renderers/allshader/digitsrenderer.h" @@ -34,9 +35,14 @@ namespace { class WaveformMarkNode : public rendergraph::GeometryNode { public: WaveformMark* m_pOwner{}; + bool m_isEndMark{false}; - WaveformMarkNode(WaveformMark* pOwner, rendergraph::Context* pContext, const QImage& image) - : m_pOwner(pOwner) { + WaveformMarkNode(WaveformMark* pOwner, + bool isEndMark, + rendergraph::Context* pContext, + const QImage& image) + : m_pOwner(pOwner), + m_isEndMark(isEndMark) { initForRectangles(1); updateTexture(pContext, image); } @@ -68,6 +74,10 @@ class WaveformMarkNode : public rendergraph::GeometryNode { return m_textureHeight; } + void setAlpha(float alpha) { + material().setUniform(1, alpha); + } + public: float m_textureWidth{}; float m_textureHeight{}; @@ -76,10 +86,11 @@ class WaveformMarkNode : public rendergraph::GeometryNode { class WaveformMarkNodeGraphics : public WaveformMark::Graphics { public: WaveformMarkNodeGraphics(WaveformMark* pOwner, + bool isEndMark, rendergraph::Context* pContext, const QImage& image) : m_pNode(std::make_unique( - pOwner, pContext, image)) { + pOwner, isEndMark, pContext, image)) { } void updateTexture(rendergraph::Context* pContext, const QImage& image) { waveformMarkNode()->updateTexture(pContext, image); @@ -93,6 +104,9 @@ class WaveformMarkNodeGraphics : public WaveformMark::Graphics { float textureHeight() const { return waveformMarkNode()->textureHeight(); } + void setAlpha(float alpha) { + waveformMarkNode()->setAlpha(alpha); + } void attachNode(std::unique_ptr pNode) { DEBUG_ASSERT(!m_pNode); m_pNode = std::move(pNode); @@ -176,7 +190,7 @@ allshader::WaveformRenderMark::WaveformRenderMark( m_pPlayPosNode->initForRectangles(1); appendChildNode(std::move(pNode)); } - +#ifndef __SCENEGRAPH__ auto* pWaveformWidgetFactory = WaveformWidgetFactory::instance(); connect(pWaveformWidgetFactory, &WaveformWidgetFactory::untilMarkShowBeatsChanged, @@ -198,6 +212,7 @@ allshader::WaveformRenderMark::WaveformRenderMark( &WaveformWidgetFactory::untilMarkTextHeightLimitChanged, this, &WaveformRenderMark::setUntilMarkTextHeightLimit); +#endif } void allshader::WaveformRenderMark::draw(QPainter*, QPaintEvent*) { @@ -224,8 +239,12 @@ void allshader::WaveformRenderMark::setup(const QDomNode& node, const SkinContex } bool allshader::WaveformRenderMark::init() { - m_pTimeRemainingControl = std::make_unique( - m_waveformRenderer->getGroup(), "time_remaining"); + if (!m_waveformRenderer->getGroup().isEmpty()) { + m_pTimeRemainingControl = std::make_unique( + m_waveformRenderer->getGroup(), "time_remaining"); + } else { + m_pTimeRemainingControl.reset(); + } ::WaveformRenderMarkBase::init(); return true; } @@ -277,8 +296,10 @@ void allshader::WaveformRenderMark::update() { WaveformMarkNode* pWaveformMarkNode = static_cast(pNode.get()); // Determine its WaveformMark auto* pMark = pWaveformMarkNode->m_pOwner; - auto* pGraphics = static_cast(pMark->m_pGraphics.get()); - // Store the node with the WaveformMark + auto* pGraphics = static_cast( + pWaveformMarkNode->m_isEndMark ? pMark->m_pEndGraphics.get() + : pMark->m_pGraphics.get()); + // Store the nodes with the WaveformMark pGraphics->attachNode(std::move(pNode)); } @@ -321,13 +342,19 @@ void allshader::WaveformRenderMark::update() { auto* pMarkGraphics = pMark->m_pGraphics.get(); auto* pMarkNodeGraphics = static_cast(pMarkGraphics); - if (!pMarkGraphics) { // is this even possible? + if (!pMarkNodeGraphics) { // is this even possible? continue; } const float currentMarkPos = static_cast( m_waveformRenderer->transformSamplePositionInRendererWorld( samplePosition, positionType)); + auto* pMarkEndGraphics = pMark->m_pEndGraphics.get(); + auto* pMarkEndNodeGraphics = static_cast(pMarkEndGraphics); + VERIFY_OR_DEBUG_ASSERT(pMarkEndNodeGraphics) { + continue; + } + if (pMark->isShowUntilNext() && samplePosition >= playPosition + 1.0 && samplePosition < nextMarkPosition) { @@ -357,30 +384,47 @@ void allshader::WaveformRenderMark::update() { // Check if the range needs to be displayed. if (samplePosition != sampleEndPosition && sampleEndPosition != Cue::kNoPosition) { - DEBUG_ASSERT(samplePosition < sampleEndPosition); const float currentMarkEndPos = static_cast( m_waveformRenderer->transformSamplePositionInRendererWorld( sampleEndPosition, positionType)); + if (visible || currentMarkEndPos > 0.f) { - QColor color = pMark->fillColor(); - color.setAlphaF(0.4f); - - // Reuse, or create new when needed - if (!pRangeChild) { - auto pNode = std::make_unique(); - pNode->initForRectangles(2); - pRangeChild = pNode.get(); - m_pRangeNodesParent->appendChildNode(std::move(pNode)); + if (pMark->isLoop()) { + // Reuse, or create new when needed + if (!pRangeChild) { + auto pNode = std::make_unique(); + pNode->initForRectangles(2); + pRangeChild = pNode.get(); + m_pRangeNodesParent->appendChildNode(std::move(pNode)); + } + + QColor color = pMark->fillColor(); + color.setAlphaF(0.4f); + updateRangeNode(pRangeChild, + QRectF(QPointF(roundToPixel(currentMarkPos), + !m_isSlipRenderer && slipActive + ? roundToPixel( + m_waveformRenderer + ->getBreadth() / + 2) + : 0.f), + QPointF(roundToPixel(currentMarkEndPos), + roundToPixel(m_waveformRenderer + ->getBreadth()))), + color); + pRangeChild = static_cast(pRangeChild->nextSibling()); + } else { + pMarkEndNodeGraphics->update( + roundToPixel(currentMarkEndPos - markWidth / 2.f), + !m_isSlipRenderer && slipActive + ? roundToPixel(m_waveformRenderer->getBreadth() / 2) + : 0, + devicePixelRatio); + pMarkEndNodeGraphics->setAlpha(static_cast(pMark->opacity())); + // transfer back to m_pMarkNodesParent children, for rendering + m_pMarkNodesParent->appendChildNode(pMarkEndNodeGraphics->detachNode()); } - - updateRangeNode(pRangeChild, - QRectF(QPointF(roundToPixel(currentMarkPos), 0.f), - QPointF(roundToPixel(currentMarkEndPos), - roundToPixel(m_waveformRenderer->getBreadth()))), - color); - visible = true; - pRangeChild = static_cast(pRangeChild->nextSibling()); } } @@ -559,6 +603,7 @@ void allshader::WaveformRenderMark::updateMarkImage(WaveformMarkPointer pMark) { if (!pMark->m_pGraphics) { pMark->m_pGraphics = std::make_unique(pMark.get(), + false, m_waveformRenderer->getContext(), pMark->generateImage( m_waveformRenderer->getDevicePixelRatio())); @@ -569,6 +614,21 @@ void allshader::WaveformRenderMark::updateMarkImage(WaveformMarkPointer pMark) { m_waveformRenderer->getDevicePixelRatio())); } } +void allshader::WaveformRenderMark::updateEndMarkImage(WaveformMarkPointer pMark) { + if (!pMark->m_pEndGraphics) { + pMark->m_pEndGraphics = + std::make_unique(pMark.get(), + true, + m_waveformRenderer->getContext(), + pMark->generateEndImage( + m_waveformRenderer->getDevicePixelRatio())); + } else { + auto* pGraphics = static_cast(pMark->m_pEndGraphics.get()); + pGraphics->updateTexture(m_waveformRenderer->getContext(), + pMark->generateEndImage( + m_waveformRenderer->getDevicePixelRatio())); + } +} void allshader::WaveformRenderMark::updateUntilMark( double playPosition, double nextMarkPosition) { @@ -585,7 +645,7 @@ void allshader::WaveformRenderMark::updateUntilMark( } const double endPosition = m_waveformRenderer->getTrackSamples(); - const double remainingTime = m_pTimeRemainingControl->get(); + const double remainingTime = m_pTimeRemainingControl ? m_pTimeRemainingControl->get() : 0; mixxx::BeatsPointer trackBeats = trackInfo->getBeats(); if (!trackBeats) { diff --git a/src/waveform/renderers/allshader/waveformrendermark.h b/src/waveform/renderers/allshader/waveformrendermark.h index ab583f9d76be..cf9d41c22bc2 100644 --- a/src/waveform/renderers/allshader/waveformrendermark.h +++ b/src/waveform/renderers/allshader/waveformrendermark.h @@ -62,6 +62,7 @@ class allshader::WaveformRenderMark : public ::WaveformRenderMarkBase, private: void updateMarkImage(WaveformMarkPointer pMark) override; + void updateEndMarkImage(WaveformMarkPointer pMark) override; void updatePlayPosMarkTexture(rendergraph::Context* pContext); diff --git a/src/waveform/renderers/deprecated/glwaveformrenderersignal.h b/src/waveform/renderers/deprecated/glwaveformrenderersignal.h index 76532a120145..57539bc91d27 100644 --- a/src/waveform/renderers/deprecated/glwaveformrenderersignal.h +++ b/src/waveform/renderers/deprecated/glwaveformrenderersignal.h @@ -12,8 +12,9 @@ /// QPainter API which Qt translates to OpenGL under the hood. class GLWaveformRendererSignal : public WaveformRendererSignalBase, public GLWaveformRenderer { public: - GLWaveformRendererSignal(WaveformWidgetRenderer* waveformWidgetRenderer) - : WaveformRendererSignalBase(waveformWidgetRenderer) { + GLWaveformRendererSignal(WaveformWidgetRenderer* waveformWidgetRenderer, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidgetRenderer, options) { } }; diff --git a/src/waveform/renderers/glvsynctestrenderer.cpp b/src/waveform/renderers/glvsynctestrenderer.cpp index a1d1cb7da275..b93f623092b0 100644 --- a/src/waveform/renderers/glvsynctestrenderer.cpp +++ b/src/waveform/renderers/glvsynctestrenderer.cpp @@ -7,7 +7,8 @@ GLVSyncTestRenderer::GLVSyncTestRenderer( WaveformWidgetRenderer* waveformWidgetRenderer) - : GLWaveformRendererSignal(waveformWidgetRenderer), + : GLWaveformRendererSignal(waveformWidgetRenderer, + WaveformRendererSignalBase::Option::None), m_drawcount(0) { } diff --git a/src/waveform/renderers/qtvsynctestrenderer.cpp b/src/waveform/renderers/qtvsynctestrenderer.cpp index d6b84441f598..1ca4b6c63ff0 100644 --- a/src/waveform/renderers/qtvsynctestrenderer.cpp +++ b/src/waveform/renderers/qtvsynctestrenderer.cpp @@ -9,8 +9,9 @@ QtVSyncTestRenderer::QtVSyncTestRenderer( WaveformWidgetRenderer* waveformWidgetRenderer) - : WaveformRendererSignalBase(waveformWidgetRenderer), - m_drawcount(0) { + : WaveformRendererSignalBase(waveformWidgetRenderer, + ::WaveformRendererSignalBase::Option::None), + m_drawcount(0) { } QtVSyncTestRenderer::~QtVSyncTestRenderer() { diff --git a/src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp b/src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp index e58ebd5a54ad..1fc93604401f 100644 --- a/src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp +++ b/src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp @@ -12,8 +12,9 @@ #include QtWaveformRendererFilteredSignal::QtWaveformRendererFilteredSignal( - WaveformWidgetRenderer* waveformWidgetRenderer) - : WaveformRendererSignalBase(waveformWidgetRenderer) { + WaveformWidgetRenderer* waveformWidgetRenderer, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidgetRenderer, options) { } QtWaveformRendererFilteredSignal::~QtWaveformRendererFilteredSignal() { diff --git a/src/waveform/renderers/qtwaveformrendererfilteredsignal.h b/src/waveform/renderers/qtwaveformrendererfilteredsignal.h index c7fed5db4b4d..945bd2af04ed 100644 --- a/src/waveform/renderers/qtwaveformrendererfilteredsignal.h +++ b/src/waveform/renderers/qtwaveformrendererfilteredsignal.h @@ -9,7 +9,9 @@ class ControlObject; class QtWaveformRendererFilteredSignal : public WaveformRendererSignalBase { public: - explicit QtWaveformRendererFilteredSignal(WaveformWidgetRenderer* waveformWidgetRenderer); + explicit QtWaveformRendererFilteredSignal( + WaveformWidgetRenderer* waveformWidgetRenderer, + ::WaveformRendererSignalBase::Options options); virtual ~QtWaveformRendererFilteredSignal(); virtual void onSetup(const QDomNode &node); diff --git a/src/waveform/renderers/waveformmark.cpp b/src/waveform/renderers/waveformmark.cpp index ae4e09e41593..c114f4d74390 100644 --- a/src/waveform/renderers/waveformmark.cpp +++ b/src/waveform/renderers/waveformmark.cpp @@ -2,6 +2,8 @@ #include #include +#include +#include #include #include "skin/legacy/skincontext.h" @@ -93,7 +95,8 @@ bool isShowUntilNextPositionControl(const QString& positionControl) { } // anonymous namespace -WaveformMark::WaveformMark(const QString& group, +WaveformMark::WaveformMark( + const QString& group, QString positionControl, const QString& visibilityControl, const QString& textColor, @@ -104,37 +107,50 @@ WaveformMark::WaveformMark(const QString& group, QColor color, int priority, int hotCue, - const WaveformSignalColors& signalColors) + const WaveformSignalColors& signalColors, + const QString& endPixmapPath, + const QString& endIconPath, + float disabledOpacity, + float enabledOpacity) : m_textColor(textColor), m_pixmapPath(pixmapPath), + m_endPixmapPath(endPixmapPath), m_iconPath(iconPath), + m_endIconPath(endIconPath), + m_enabledOpacity(enabledOpacity), + m_disabledOpacity(disabledOpacity), m_linePosition{}, m_breadth{}, m_level{}, + m_typeCO{}, + m_statusCO{}, m_iPriority(priority), m_iHotCue(hotCue), m_showUntilNext{} { QString endPositionControl; QString typeControl; + QString statusControl; if (hotCue != Cue::kNoHotCue) { QString hotcueNumber = QString::number(hotCue + 1); positionControl = QStringLiteral("hotcue_%1_position").arg(hotcueNumber); endPositionControl = QStringLiteral("hotcue_%1_endposition").arg(hotcueNumber); + statusControl = QStringLiteral("hotcue_%1_status").arg(hotcueNumber); typeControl = QStringLiteral("hotcue_%1_type").arg(hotcueNumber); m_showUntilNext = true; } else { m_showUntilNext = isShowUntilNextPositionControl(positionControl); } - if (!positionControl.isEmpty()) { + if (!positionControl.isEmpty() && !group.isEmpty()) { m_pPositionCO = std::make_unique(group, positionControl); } - if (!endPositionControl.isEmpty()) { + if (!endPositionControl.isEmpty() && !group.isEmpty()) { m_pEndPositionCO = std::make_unique(group, endPositionControl); - m_pTypeCO = std::make_unique(group, typeControl); + m_statusCO = std::make_unique(group, statusControl); + m_typeCO = std::make_unique(group, typeControl); } - if (!visibilityControl.isEmpty()) { + if (!visibilityControl.isEmpty() && !group.isEmpty()) { ConfigKey key = ConfigKey::parseCommaSeparated(visibilityControl); m_pVisibleCO = std::make_unique(key); } @@ -179,10 +195,12 @@ WaveformMark::WaveformMark(const QString& group, QString positionControl; QString endPositionControl; QString typeControl; + QString statusControl; if (hotCue != Cue::kNoHotCue) { positionControl = "hotcue_" + QString::number(hotCue + 1) + "_position"; endPositionControl = "hotcue_" + QString::number(hotCue + 1) + "_endposition"; typeControl = "hotcue_" + QString::number(hotCue + 1) + "_type"; + statusControl = "hotcue_" + QString::number(hotCue + 1) + "_status"; m_showUntilNext = true; } else { positionControl = context.selectString(node, "Control"); @@ -194,7 +212,8 @@ WaveformMark::WaveformMark(const QString& group, } if (!endPositionControl.isEmpty()) { m_pEndPositionCO = std::make_unique(group, endPositionControl); - m_pTypeCO = std::make_unique(group, typeControl); + m_typeCO = std::make_unique(group, typeControl); + m_statusCO = std::make_unique(group, statusControl); } QString visibilityControl = context.selectString(node, "VisibilityControl"); @@ -234,10 +253,23 @@ WaveformMark::WaveformMark(const QString& group, m_pixmapPath = context.makeSkinPath(m_pixmapPath); } + m_endPixmapPath = context.selectString(node, "EndPixmap"); + if (!m_endPixmapPath.isEmpty()) { + m_endPixmapPath = context.makeSkinPath(m_endPixmapPath); + } + m_iconPath = context.selectString(node, "Icon"); if (!m_iconPath.isEmpty()) { m_iconPath = context.makeSkinPath(m_iconPath); } + + m_endIconPath = context.selectString(node, "EndIcon"); + if (!m_endIconPath.isEmpty()) { + m_endIconPath = context.makeSkinPath(m_endIconPath); + } + + m_enabledOpacity = context.selectDouble(node, "EnabledOpacity", 1); + m_disabledOpacity = context.selectDouble(node, "DisabledOpacity", 0.5); } WaveformMark::~WaveformMark() = default; @@ -406,9 +438,11 @@ class MarkerGeometry { QSizeF m_imageSize; }; -QImage WaveformMark::generateImage(float devicePixelRatio) { - DEBUG_ASSERT(needsImageUpdate()); - +QImage WaveformMark::performImageGeneration(float devicePixelRatio, + const QString& pixmapPath, + const QString& text, + WaveformMarkLabel* labelMark, + const QString& iconPath) { if (m_breadth == 0.0f) { return {}; } @@ -416,8 +450,8 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { // Load the pixmap from file. // If that succeeds loading the text and stroke is skipped. - if (!m_pixmapPath.isEmpty()) { - QString path = m_pixmapPath; + if (!pixmapPath.isEmpty()) { + QString path = pixmapPath; // Use devicePixelRatio to properly scale the image QImage image = *WImageStore::getImage(path, devicePixelRatio); // If loading the image didn't fail, then we're done. Otherwise fall @@ -448,24 +482,37 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { return image; } } + const bool useIcon = iconPath != ""; - QString label = m_text; - - // Determine mark text. - if (getHotCue() >= 0) { - if (!label.isEmpty()) { - label.prepend(": "); + // Determine drawing geometries + const MarkerGeometry markerGeometry{text, useIcon, m_align, m_breadth, m_level}; + + float linePos; + if (labelMark) { + labelMark->setAreaRect(markerGeometry.labelRect()); + + const Qt::Alignment alignH = m_align & Qt::AlignHorizontal_Mask; + const float imgw = static_cast(markerGeometry.imageSize().width()); + switch (alignH) { + case Qt::AlignHCenter: + m_linePosition = imgw / 2.f; + m_offset = -(imgw - 1.f) / 2.f; + break; + case Qt::AlignLeft: + m_linePosition = imgw - 1.5f; + m_offset = -imgw + 2.f; + break; + case Qt::AlignRight: + default: + m_linePosition = 1.5f; + m_offset = -1.f; + break; } - label.prepend(QString::number(getHotCue() + 1)); + linePos = m_linePosition; + } else { + linePos = static_cast(markerGeometry.imageSize().width()) / 2.f; } - const bool useIcon = m_iconPath != ""; - - // Determine drawing geometries - const MarkerGeometry markerGeometry{label, useIcon, m_align, m_breadth, m_level}; - - m_label.setAreaRect(markerGeometry.labelRect()); - const QSize size{markerGeometry.getImageSize(devicePixelRatio)}; if (size.width() <= 0 || size.height() <= 0) { @@ -489,26 +536,7 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { painter.setWorldMatrixEnabled(false); - const Qt::Alignment alignH = m_align & Qt::AlignHorizontal_Mask; - const float imgw = static_cast(markerGeometry.imageSize().width()); - switch (alignH) { - case Qt::AlignHCenter: - m_linePosition = imgw / 2.f; - m_offset = -(imgw - 1.f) / 2.f; - break; - case Qt::AlignLeft: - m_linePosition = imgw - 1.5f; - m_offset = -imgw + 2.f; - break; - case Qt::AlignRight: - default: - m_linePosition = 1.5f; - m_offset = -1.f; - break; - } - // Note: linePos has to be at integer + 0.5 to draw correctly - const float linePos = m_linePosition; [[maybe_unused]] const float epsilon = 1e-6f; DEBUG_ASSERT(std::abs(linePos - std::floor(linePos) - 0.5) < epsilon); @@ -526,7 +554,7 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { linePos + 1.f, markerGeometry.imageSize().height())); - if (useIcon || label.length() != 0) { + if (useIcon || text.length() != 0) { painter.setPen(borderColor()); // Draw the label rounded rect with border @@ -535,7 +563,7 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { painter.fillPath(path, fillColor()); painter.drawPath(path); - // Center m_contentRect.width() and m_contentRect.height() inside m_labelRect + // Center m_contentRect.width() and m_contentRect.height() inside labelRectMarl // and apply the offset x,y so the text ends up in the centered width,height. QPointF pos(markerGeometry.labelRect().x() + (markerGeometry.labelRect().width() - @@ -549,7 +577,7 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { markerGeometry.contentRect().y()); if (useIcon) { - QSvgRenderer svgRenderer(m_iconPath); + QSvgRenderer svgRenderer(iconPath); svgRenderer.render(&painter, QRectF(pos, markerGeometry.contentRect().size())); } else { // Draw the text @@ -557,7 +585,7 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { painter.setPen(labelColor()); painter.setFont(markerGeometry.font()); - painter.drawText(pos, label); + painter.drawText(pos, text); } } @@ -565,3 +593,34 @@ QImage WaveformMark::generateImage(float devicePixelRatio) { return image; } + +QImage WaveformMark::generateImage(float devicePixelRatio) { + DEBUG_ASSERT(needsImageUpdate()); + + QString label = m_text; + + // Determine mark text. + if (getHotCue() >= 0) { + if (!label.isEmpty()) { + label.prepend(": "); + } + label.prepend(QString::number(getHotCue() + 1)); + } + + return performImageGeneration(devicePixelRatio, m_pixmapPath, label, &m_label, m_iconPath); +} + +QImage WaveformMark::generateEndImage(float devicePixelRatio) { + assert(needsEndImageUpdate()); + + QString direction = QStringLiteral("forward"); + + if (isJump() && getSampleEndPosition() > getSamplePosition()) { + direction = QStringLiteral("backward"); + } + return performImageGeneration(devicePixelRatio, + m_endPixmapPath, + "", + nullptr, + m_endIconPath.contains("%1") ? m_endIconPath.arg(direction) : m_endIconPath); +} diff --git a/src/waveform/renderers/waveformmark.h b/src/waveform/renderers/waveformmark.h index 9dcd71d698a2..ac2ddcfa1c4a 100644 --- a/src/waveform/renderers/waveformmark.h +++ b/src/waveform/renderers/waveformmark.h @@ -1,9 +1,12 @@ #pragma once #include +#include #include #include #include "control/controlproxy.h" +#include "control/pollingcontrolproxy.h" +#include "engine/controls/cuecontrol.h" #include "track/cue.h" #include "waveform/renderers/waveformsignalcolors.h" #include "waveform/waveformmarklabel.h" @@ -22,6 +25,14 @@ class WaveformMark { // To indicate that the image for the mark needs to be regenerated, // when the text, color, breadth or level are changed. bool m_obsolete{}; + Graphics() = default; + virtual ~Graphics() = default; + // non-copyable + Graphics(const Graphics&) = delete; + Graphics& operator=(const Graphics&) = delete; + // non-movable + Graphics(Graphics&&) = delete; + Graphics& operator=(Graphics&&) = delete; }; WaveformMark( @@ -44,7 +55,11 @@ class WaveformMark { QColor color, int priority, int hotCue = Cue::kNoHotCue, - const WaveformSignalColors& signalColors = {}); + const WaveformSignalColors& signalColors = {}, + const QString& endPixmapPath = {}, + const QString& endIconPath = {}, + float disabledOpacity = 1.0f, + float enabledOpacity = 1.0f); ~WaveformMark(); // Disable copying @@ -61,6 +76,12 @@ class WaveformMark { int getPriority() const { return m_iPriority; }; + mixxx::CueType getType() const { + if (!m_typeCO) { + return mixxx::CueType::Invalid; + } + return static_cast(m_typeCO->get()); + } // The m_pPositionCO related function bool isValid() const { @@ -77,18 +98,44 @@ class WaveformMark { m_pEndPositionCO->connectValueChanged(receiver, slot, Qt::AutoConnection); } }; + template + void connectTypeChanged(Receiver receiver, Slot slot) const { + if (m_typeCO) { + m_typeCO->connectValueChanged(receiver, slot, Qt::AutoConnection); + } + }; + template + void connectStatusChanged(Receiver receiver, Slot slot) const { + if (m_statusCO) { + m_statusCO->connectValueChanged(receiver, slot, Qt::AutoConnection); + } + }; + double getSamplePosition() const { return m_pPositionCO->get(); } + bool isJump() const { + return m_typeCO && + static_cast(m_typeCO->get()) == + mixxx::CueType::Jump; + } + bool isLoop() const { + return m_typeCO && + static_cast(m_typeCO->get()) == + mixxx::CueType::Loop; + } + bool isStandard() const { + // A Waveform mark should always have either `isJump`, `isLoop` or + // `isNormal` returning true! + return !isLoop() && !isJump(); + } double getSampleEndPosition() const { if (!m_pEndPositionCO || // A hotcue may have an end position although it isn't a saved - // loop anymore. This happens when the user changes the cue + // loop or jump anymore. This happens when the user changes the cue // type. However, we persist the end position if the user wants // to restore the cue to a saved loop - (m_pTypeCO && - static_cast(m_pTypeCO->get()) != - mixxx::CueType::Loop)) { + isStandard()) { return Cue::kNoPosition; } return m_pEndPositionCO->get(); @@ -107,6 +154,13 @@ class WaveformMark { } return m_pVisibleCO->toBool(); } + // A cue is always considered active if it isn't a saved loop or a saved + // jump (a.k.a a "standard" cue) + bool isActive() const { + return !m_statusCO || + static_cast(m_statusCO->get()) == + HotcueControl::Status::Active; + } bool isShowUntilNext() const { return m_showUntilNext; } @@ -138,16 +192,27 @@ class WaveformMark { return m_labelColor; } + double opacity() const { + return isActive() ? m_enabledOpacity : m_disabledOpacity; + } + void setNeedsImageUpdate() { if (m_pGraphics) { m_pGraphics->m_obsolete = true; } + if (m_pEndGraphics) { + m_pEndGraphics->m_obsolete = true; + } } bool needsImageUpdate() const { return !m_pGraphics || m_pGraphics->m_obsolete; } + bool needsEndImageUpdate() const { + return !m_pEndGraphics || m_pEndGraphics->m_obsolete; + } + void setBreadth(float breadth) { if (m_breadth != breadth) { m_breadth = breadth; @@ -168,12 +233,18 @@ class WaveformMark { bool contains(QPoint point, Qt::Orientation orientation) const; QImage generateImage(float devicePixelRatio); + QImage generateEndImage(float devicePixelRatio); QColor m_textColor; QString m_text; Qt::Alignment m_align; QString m_pixmapPath; + QString m_endPixmapPath; QString m_iconPath; + QString m_endIconPath; + + double m_enabledOpacity; + double m_disabledOpacity; float m_linePosition; float m_offset; @@ -187,12 +258,20 @@ class WaveformMark { WaveformMarkLabel m_label; private: + QImage performImageGeneration(float devicePixelRatio, + const QString& pixmapPath, + const QString& text, + WaveformMarkLabel* labelMark, + const QString& iconPath); + std::unique_ptr m_pPositionCO; std::unique_ptr m_pEndPositionCO; - std::unique_ptr m_pTypeCO; std::unique_ptr m_pVisibleCO; + std::unique_ptr m_typeCO; + std::unique_ptr m_statusCO; std::unique_ptr m_pGraphics; + std::unique_ptr m_pEndGraphics; int m_iPriority; int m_iHotCue; diff --git a/src/waveform/renderers/waveformmarkset.cpp b/src/waveform/renderers/waveformmarkset.cpp index 8624680535f6..bfe7eb9f87f4 100644 --- a/src/waveform/renderers/waveformmarkset.cpp +++ b/src/waveform/renderers/waveformmarkset.cpp @@ -69,7 +69,6 @@ void WaveformMarkSet::setDefault(const QString& group, const DefaultMarkerStyle& model, const WaveformSignalColors& signalColors) { m_pDefaultMark = WaveformMarkPointer::create( - group, model.positionControl, model.visibilityControl, @@ -85,7 +84,6 @@ void WaveformMarkSet::setDefault(const QString& group, for (int i = 0; i < kMaxNumberOfHotcues; ++i) { if (m_hotCueMarks.value(i).isNull()) { auto pMark = WaveformMarkPointer::create( - group, model.positionControl, model.visibilityControl, @@ -97,7 +95,11 @@ void WaveformMarkSet::setDefault(const QString& group, model.color, i, i, - signalColors); + signalColors, + model.endPixmapPath, + model.endIconPath, + model.enabledOpacity, + model.disabledOpacity); m_marks.push_front(pMark); m_hotCueMarks.insert(pMark->getHotCue(), pMark); } diff --git a/src/waveform/renderers/waveformmarkset.h b/src/waveform/renderers/waveformmarkset.h index d0d4607219c6..8d07fd266f70 100644 --- a/src/waveform/renderers/waveformmarkset.h +++ b/src/waveform/renderers/waveformmarkset.h @@ -18,8 +18,12 @@ class WaveformMarkSet { QString markAlign; QString text; QString pixmapPath; + QString endPixmapPath; QString iconPath; + QString endIconPath; QColor color; + float enabledOpacity; + float disabledOpacity; }; WaveformMarkSet(); @@ -56,6 +60,24 @@ class WaveformMarkSet { } } + template + void connectTypeChanged(Receiver receiver, Slot slot) const { + for (const auto& pMark : std::as_const(m_marks)) { + if (pMark->isValid()) { + pMark->connectTypeChanged(receiver, slot); + } + } + } + + template + void connectStatusChanged(Receiver receiver, Slot slot) const { + for (const auto& pMark : std::as_const(m_marks)) { + if (pMark->isValid()) { + pMark->connectStatusChanged(receiver, slot); + } + } + } + inline QList::const_iterator begin() const { return m_marksToRender.begin(); } diff --git a/src/waveform/renderers/waveformrendererfilteredsignal.cpp b/src/waveform/renderers/waveformrendererfilteredsignal.cpp index 15b6c2d7e38f..97b11b1583c0 100644 --- a/src/waveform/renderers/waveformrendererfilteredsignal.cpp +++ b/src/waveform/renderers/waveformrendererfilteredsignal.cpp @@ -7,8 +7,9 @@ #include "util/painterscope.h" WaveformRendererFilteredSignal::WaveformRendererFilteredSignal( - WaveformWidgetRenderer* waveformWidgetRenderer) - : WaveformRendererSignalBase(waveformWidgetRenderer) { + WaveformWidgetRenderer* waveformWidgetRenderer, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidgetRenderer, options) { } WaveformRendererFilteredSignal::~WaveformRendererFilteredSignal() { diff --git a/src/waveform/renderers/waveformrendererfilteredsignal.h b/src/waveform/renderers/waveformrendererfilteredsignal.h index ba8e41a2eba9..00c3510e4496 100644 --- a/src/waveform/renderers/waveformrendererfilteredsignal.h +++ b/src/waveform/renderers/waveformrendererfilteredsignal.h @@ -9,7 +9,7 @@ class WaveformRendererFilteredSignal : public WaveformRendererSignalBase { public: explicit WaveformRendererFilteredSignal( - WaveformWidgetRenderer* waveformWidget); + WaveformWidgetRenderer* waveformWidget, ::WaveformRendererSignalBase::Options options); virtual ~WaveformRendererFilteredSignal(); virtual void onSetup(const QDomNode& node); diff --git a/src/waveform/renderers/waveformrendererhsv.cpp b/src/waveform/renderers/waveformrendererhsv.cpp index 0efba33e8451..2951421108cf 100644 --- a/src/waveform/renderers/waveformrendererhsv.cpp +++ b/src/waveform/renderers/waveformrendererhsv.cpp @@ -8,8 +8,9 @@ #include "waveformwidgetrenderer.h" WaveformRendererHSV::WaveformRendererHSV( - WaveformWidgetRenderer* waveformWidgetRenderer) - : WaveformRendererSignalBase(waveformWidgetRenderer) { + WaveformWidgetRenderer* waveformWidgetRenderer, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidgetRenderer, options) { } WaveformRendererHSV::~WaveformRendererHSV() { diff --git a/src/waveform/renderers/waveformrendererhsv.h b/src/waveform/renderers/waveformrendererhsv.h index 4c13b61c9a33..55693ba56638 100644 --- a/src/waveform/renderers/waveformrendererhsv.h +++ b/src/waveform/renderers/waveformrendererhsv.h @@ -6,7 +6,7 @@ class WaveformRendererHSV : public WaveformRendererSignalBase { public: explicit WaveformRendererHSV( - WaveformWidgetRenderer* waveformWidget); + WaveformWidgetRenderer* waveformWidget, ::WaveformRendererSignalBase::Options options); virtual ~WaveformRendererHSV(); virtual void onSetup(const QDomNode& node); diff --git a/src/waveform/renderers/waveformrendererrgb.cpp b/src/waveform/renderers/waveformrendererrgb.cpp index c6b948335f2e..ba521a74ce86 100644 --- a/src/waveform/renderers/waveformrendererrgb.cpp +++ b/src/waveform/renderers/waveformrendererrgb.cpp @@ -6,8 +6,9 @@ #include "util/painterscope.h" WaveformRendererRGB::WaveformRendererRGB( - WaveformWidgetRenderer* waveformWidgetRenderer) - : WaveformRendererSignalBase(waveformWidgetRenderer) { + WaveformWidgetRenderer* waveformWidgetRenderer, + ::WaveformRendererSignalBase::Options options) + : WaveformRendererSignalBase(waveformWidgetRenderer, options) { } WaveformRendererRGB::~WaveformRendererRGB() { diff --git a/src/waveform/renderers/waveformrendererrgb.h b/src/waveform/renderers/waveformrendererrgb.h index fa8e8bbc12f9..9d452f9aa6a0 100644 --- a/src/waveform/renderers/waveformrendererrgb.h +++ b/src/waveform/renderers/waveformrendererrgb.h @@ -6,7 +6,7 @@ class WaveformRendererRGB : public WaveformRendererSignalBase { public: explicit WaveformRendererRGB( - WaveformWidgetRenderer* waveformWidget); + WaveformWidgetRenderer* waveformWidget, ::WaveformRendererSignalBase::Options options); virtual ~WaveformRendererRGB(); virtual void onSetup(const QDomNode& node); diff --git a/src/waveform/renderers/waveformrenderersignalbase.cpp b/src/waveform/renderers/waveformrenderersignalbase.cpp index ed2a75abe084..a38043aa1acc 100644 --- a/src/waveform/renderers/waveformrenderersignalbase.cpp +++ b/src/waveform/renderers/waveformrenderersignalbase.cpp @@ -12,7 +12,7 @@ const QString kEffectGroupFormat = QStringLiteral("[EqualizerRack1_%1_Effect1]") } // namespace WaveformRendererSignalBase::WaveformRendererSignalBase( - WaveformWidgetRenderer* waveformWidgetRenderer) + WaveformWidgetRenderer* waveformWidgetRenderer, Options) : WaveformRendererAbstract(waveformWidgetRenderer), m_pEQEnabled(nullptr), m_pLowFilterControlObject(nullptr), @@ -54,47 +54,35 @@ WaveformRendererSignalBase::WaveformRendererSignalBase( m_rgbHighColor_b(0) { } -WaveformRendererSignalBase::~WaveformRendererSignalBase() { - deleteControls(); -} - -void WaveformRendererSignalBase::deleteControls() { - if (m_pEQEnabled) { - delete m_pEQEnabled; - } - if (m_pLowFilterControlObject) { - delete m_pLowFilterControlObject; - } - if (m_pMidFilterControlObject) { - delete m_pMidFilterControlObject; - } - if (m_pHighFilterControlObject) { - delete m_pHighFilterControlObject; - } - if (m_pLowKillControlObject) { - delete m_pLowKillControlObject; - } - if (m_pMidKillControlObject) { - delete m_pMidKillControlObject; - } - if (m_pHighKillControlObject) { - delete m_pHighKillControlObject; - } -} +WaveformRendererSignalBase::~WaveformRendererSignalBase() = default; bool WaveformRendererSignalBase::init() { - deleteControls(); - - //create controls - m_pEQEnabled = new ControlProxy( - m_waveformRenderer->getGroup(), "filterWaveformEnable"); - const QString effectGroup = kEffectGroupFormat.arg(m_waveformRenderer->getGroup()); - m_pLowFilterControlObject = new ControlProxy(effectGroup, QStringLiteral("parameter1")); - m_pMidFilterControlObject = new ControlProxy(effectGroup, QStringLiteral("parameter2")); - m_pHighFilterControlObject = new ControlProxy(effectGroup, QStringLiteral("parameter3")); - m_pLowKillControlObject = new ControlProxy(effectGroup, QStringLiteral("button_parameter1")); - m_pMidKillControlObject = new ControlProxy(effectGroup, QStringLiteral("button_parameter2")); - m_pHighKillControlObject = new ControlProxy(effectGroup, QStringLiteral("button_parameter3")); + if (!m_waveformRenderer->getGroup().isEmpty()) { + // create controls + m_pEQEnabled = std::make_unique( + m_waveformRenderer->getGroup(), "filterWaveformEnable"); + const QString effectGroup = kEffectGroupFormat.arg(m_waveformRenderer->getGroup()); + m_pLowFilterControlObject = std::make_unique( + effectGroup, QStringLiteral("parameter1")); + m_pMidFilterControlObject = std::make_unique( + effectGroup, QStringLiteral("parameter2")); + m_pHighFilterControlObject = std::make_unique( + effectGroup, QStringLiteral("parameter3")); + m_pLowKillControlObject = std::make_unique( + effectGroup, QStringLiteral("button_parameter1")); + m_pMidKillControlObject = std::make_unique( + effectGroup, QStringLiteral("button_parameter2")); + m_pHighKillControlObject = std::make_unique( + effectGroup, QStringLiteral("button_parameter3")); + } else { + m_pEQEnabled.reset(); + m_pLowFilterControlObject.reset(); + m_pMidFilterControlObject.reset(); + m_pHighFilterControlObject.reset(); + m_pLowKillControlObject.reset(); + m_pMidKillControlObject.reset(); + m_pHighKillControlObject.reset(); + } return onInit(); } @@ -195,7 +183,7 @@ void WaveformRendererSignalBase::getGains(float* pAllGain, CSAMPLE_GAIN lowVisualGain = 1.0, midVisualGain = 1.0, highVisualGain = 1.0; // Only adjust low/mid/high gains if EQs are enabled. - if (m_pEQEnabled->get() > 0.0) { + if (m_pEQEnabled && m_pEQEnabled->get() > 0.0) { if (m_pLowFilterControlObject && m_pMidFilterControlObject && m_pHighFilterControlObject) { diff --git a/src/waveform/renderers/waveformrenderersignalbase.h b/src/waveform/renderers/waveformrenderersignalbase.h index 3611136bc7e2..fbbafd0ee3c9 100644 --- a/src/waveform/renderers/waveformrenderersignalbase.h +++ b/src/waveform/renderers/waveformrenderersignalbase.h @@ -1,5 +1,7 @@ #pragma once +#include + #include "skin/legacy/skincontext.h" #include "util/span.h" #include "util/types.h" @@ -12,8 +14,16 @@ class WaveformSignalColors; class WaveformRendererSignalBase : public QObject, public WaveformRendererAbstract { Q_OBJECT public: + enum class Option { + None = 0b0, + SplitStereoSignal = 0b1, + HighDetail = 0b10, + AllOptionsCombined = SplitStereoSignal | HighDetail, + }; + Q_DECLARE_FLAGS(Options, Option) + explicit WaveformRendererSignalBase( - WaveformWidgetRenderer* waveformWidgetRenderer); + WaveformWidgetRenderer* waveformWidgetRenderer, Options options); virtual ~WaveformRendererSignalBase(); virtual bool init(); @@ -39,8 +49,6 @@ class WaveformRendererSignalBase : public QObject, public WaveformRendererAbstra } protected: - void deleteControls(); - void getGains(float* pAllGain, bool applyCompensation, float* pLowGain, @@ -48,13 +56,13 @@ class WaveformRendererSignalBase : public QObject, public WaveformRendererAbstra float* highGain); protected: - ControlProxy* m_pEQEnabled; - ControlProxy* m_pLowFilterControlObject; - ControlProxy* m_pMidFilterControlObject; - ControlProxy* m_pHighFilterControlObject; - ControlProxy* m_pLowKillControlObject; - ControlProxy* m_pMidKillControlObject; - ControlProxy* m_pHighKillControlObject; + std::unique_ptr m_pEQEnabled; + std::unique_ptr m_pLowFilterControlObject; + std::unique_ptr m_pMidFilterControlObject; + std::unique_ptr m_pHighFilterControlObject; + std::unique_ptr m_pLowKillControlObject; + std::unique_ptr m_pMidKillControlObject; + std::unique_ptr m_pHighKillControlObject; Qt::Alignment m_alignment; Qt::Orientation m_orientation; @@ -66,6 +74,7 @@ class WaveformRendererSignalBase : public QObject, public WaveformRendererAbstra float m_axesColor_r, m_axesColor_g, m_axesColor_b, m_axesColor_a; float m_signalColor_r, m_signalColor_g, m_signalColor_b; + float m_signalColor_h, m_signalColor_s, m_signalColor_v; float m_lowColor_r, m_lowColor_g, m_lowColor_b; float m_midColor_r, m_midColor_g, m_midColor_b; float m_highColor_r, m_highColor_g, m_highColor_b; diff --git a/src/waveform/renderers/waveformrendermark.cpp b/src/waveform/renderers/waveformrendermark.cpp index fb8688b9138b..3637af96f38c 100644 --- a/src/waveform/renderers/waveformrendermark.cpp +++ b/src/waveform/renderers/waveformrendermark.cpp @@ -140,3 +140,13 @@ void WaveformRenderMark::updateMarkImage(WaveformMarkPointer pMark) { .transformed(QTransform().rotate(90))); } } +void WaveformRenderMark::updateEndMarkImage(WaveformMarkPointer pMark) { + if (m_waveformRenderer->getOrientation() == Qt::Horizontal) { + pMark->m_pEndGraphics = std::make_unique( + pMark->generateEndImage(m_waveformRenderer->getDevicePixelRatio())); + } else { + pMark->m_pEndGraphics = std::make_unique( + pMark->generateEndImage(m_waveformRenderer->getDevicePixelRatio()) + .transformed(QTransform().rotate(90))); + } +} diff --git a/src/waveform/renderers/waveformrendermark.h b/src/waveform/renderers/waveformrendermark.h index 2bf284223f18..e5ef50bb87fc 100644 --- a/src/waveform/renderers/waveformrendermark.h +++ b/src/waveform/renderers/waveformrendermark.h @@ -10,6 +10,7 @@ class WaveformRenderMark : public WaveformRenderMarkBase { private: void updateMarkImage(WaveformMarkPointer pMark) override; + void updateEndMarkImage(WaveformMarkPointer pMark) override; DISALLOW_COPY_AND_ASSIGN(WaveformRenderMark); }; diff --git a/src/waveform/renderers/waveformrendermarkbase.cpp b/src/waveform/renderers/waveformrendermarkbase.cpp index b2293d1448d4..3f04cf81cdd3 100644 --- a/src/waveform/renderers/waveformrendermarkbase.cpp +++ b/src/waveform/renderers/waveformrendermarkbase.cpp @@ -20,6 +20,8 @@ bool WaveformRenderMarkBase::init() { m_marks.connectSamplePositionChanged(this, &WaveformRenderMarkBase::onMarkChanged); m_marks.connectSampleEndPositionChanged(this, &WaveformRenderMarkBase::onMarkChanged); m_marks.connectVisibleChanged(this, &WaveformRenderMarkBase::onMarkChanged); + m_marks.connectTypeChanged(this, &WaveformRenderMarkBase::onMarkChanged); + m_marks.connectStatusChanged(this, &WaveformRenderMarkBase::onMarkChanged); return true; } @@ -79,6 +81,9 @@ void WaveformRenderMarkBase::updateMarksFromCues() { QColor newColor = mixxx::RgbColor::toQColor(pCue->getColor()); pMark->setText(newLabel); pMark->setBaseColor(newColor, dimBrightThreshold); + if (pMark->isJump()) { + pMark->setNeedsImageUpdate(); + } } updateMarks(); @@ -96,5 +101,8 @@ void WaveformRenderMarkBase::updateMarkImages() { if (pMark->needsImageUpdate()) { updateMarkImage(pMark); } + if (pMark->needsEndImageUpdate()) { + updateEndMarkImage(pMark); + } } } diff --git a/src/waveform/renderers/waveformrendermarkbase.h b/src/waveform/renderers/waveformrendermarkbase.h index 398a92f7aadc..ec3bae93e8ec 100644 --- a/src/waveform/renderers/waveformrendermarkbase.h +++ b/src/waveform/renderers/waveformrendermarkbase.h @@ -60,6 +60,7 @@ class WaveformRenderMarkBase : public QObject, public WaveformRendererAbstract { private: virtual void updateMarkImage(WaveformMarkPointer pMark) = 0; + virtual void updateEndMarkImage(WaveformMarkPointer pMark) = 0; DISALLOW_COPY_AND_ASSIGN(WaveformRenderMarkBase); }; diff --git a/src/waveform/renderers/waveformwidgetrenderer.cpp b/src/waveform/renderers/waveformwidgetrenderer.cpp index 60e86243cfdf..1a11c1b30e84 100644 --- a/src/waveform/renderers/waveformwidgetrenderer.cpp +++ b/src/waveform/renderers/waveformwidgetrenderer.cpp @@ -103,18 +103,23 @@ bool WaveformWidgetRenderer::init() { m_truePosSample[type] = -1.0; } - VERIFY_OR_DEBUG_ASSERT(!m_group.isEmpty()) { - return false; + // It is possible for a renderer to be defined with no group. This usually + // indicate that the position and track will be controlled by the owner. + // This is used in QML currently. + if (!m_group.isEmpty()) { + m_pRateRatioCO = std::make_unique( + m_group, QStringLiteral("rate_ratio")); + m_pGainControlObject = std::make_unique( + m_group, QStringLiteral("total_gain")); + m_pTrackSamplesControlObject = std::make_unique( + m_group, QStringLiteral("track_samples")); + + m_visualPlayPosition = VisualPlayPosition::getVisualPlayPosition(m_group); } - m_visualPlayPosition = VisualPlayPosition::getVisualPlayPosition(m_group); - - m_pRateRatioCO = std::make_unique( - m_group, QStringLiteral("rate_ratio")); - m_pGainControlObject = std::make_unique( - m_group, QStringLiteral("total_gain")); - m_pTrackSamplesControlObject = std::make_unique( - m_group, QStringLiteral("track_samples")); + VERIFY_OR_DEBUG_ASSERT(m_visualPlayPosition) { + return false; + } for (int i = 0; i < m_rendererStack.size(); ++i) { if (!m_rendererStack[i]->init()) { @@ -137,15 +142,17 @@ void WaveformWidgetRenderer::onPreRender(VSyncTimeProvider* vsyncThread) { } // For a valid track to render we need - m_trackSamples = m_pTrackSamplesControlObject->get(); + m_trackSamples = m_pTrackSamplesControlObject + ? m_pTrackSamplesControlObject->get() + : m_pTrack->getSampleRate() * m_pTrack->getDuration(); if (m_trackSamples <= 0) { return; } //Fetch parameters before rendering in order the display all sub-renderers with the same values - double rateRatio = m_pRateRatioCO->get(); + double rateRatio = m_pRateRatioCO ? m_pRateRatioCO->get() : 1.0; - m_gain = m_pGainControlObject->get(); + m_gain = m_pGainControlObject ? m_pGainControlObject->get() : 1.0; // Compute visual sample to pixel ratio // Allow waveform to spread one visual sample across a hundred pixels diff --git a/src/waveform/renderers/waveformwidgetrenderer.h b/src/waveform/renderers/waveformwidgetrenderer.h index 9e1996051a4a..3541dcc9010e 100644 --- a/src/waveform/renderers/waveformwidgetrenderer.h +++ b/src/waveform/renderers/waveformwidgetrenderer.h @@ -42,6 +42,10 @@ class WaveformWidgetRenderer { void onPreRender(VSyncTimeProvider* vsyncThread); void draw(QPainter* painter, QPaintEvent* event); + void setVisualPlayPosition(const QSharedPointer& value) { + m_visualPlayPosition = value; + } + const QString& getGroup() const { return m_group; } diff --git a/src/waveform/visualplayposition.cpp b/src/waveform/visualplayposition.cpp index 6fce7f1bf3f4..758f1a37d095 100644 --- a/src/waveform/visualplayposition.cpp +++ b/src/waveform/visualplayposition.cpp @@ -17,7 +17,9 @@ VisualPlayPosition::VisualPlayPosition(const QString& key) } VisualPlayPosition::~VisualPlayPosition() { - m_listVisualPlayPosition.remove(m_key); + if (!m_key.isEmpty()) { + m_listVisualPlayPosition.remove(m_key); + } } void VisualPlayPosition::set( diff --git a/src/waveform/visualplayposition.h b/src/waveform/visualplayposition.h index 9b94c91571a4..bded14a5f38e 100644 --- a/src/waveform/visualplayposition.h +++ b/src/waveform/visualplayposition.h @@ -49,7 +49,7 @@ class VisualPlayPositionData { class VisualPlayPosition : public QObject { Q_OBJECT public: - VisualPlayPosition(const QString& m_key); + VisualPlayPosition(const QString& m_key = {}); virtual ~VisualPlayPosition(); // WARNING: Not thread safe. This function must be called only from the diff --git a/src/waveform/waveformwidgetfactory.cpp b/src/waveform/waveformwidgetfactory.cpp index 933c33a86e7a..5f59e5045102 100644 --- a/src/waveform/waveformwidgetfactory.cpp +++ b/src/waveform/waveformwidgetfactory.cpp @@ -1,5 +1,6 @@ #include "waveform/waveformwidgetfactory.h" +#include "waveform/renderers/waveformrendererabstract.h" #include "waveform/waveform.h" #ifdef MIXXX_USE_QOPENGL @@ -9,6 +10,9 @@ #include #include #endif +#ifdef Q_OS_ANDROID +#include +#endif #include #include @@ -995,7 +999,7 @@ void WaveformWidgetFactory::evaluateWidgets() { m_waveformWidgetHandles.clear(); QHash> collectedHandles; QHash + WaveformRendererSignalBase::Options> supportedOptions; for (WaveformWidgetType::Type type : WaveformWidgetType::kValues) { switch (type) { @@ -1059,81 +1063,83 @@ void WaveformWidgetFactory::evaluateWidgets() { m_waveformWidgetHandles.push_back(WaveformWidgetAbstractHandle(type, backends #ifdef MIXXX_USE_QOPENGL , - supportedOptions.value(type, allshader::WaveformRendererSignalBase::Option::None) + supportedOptions.value(type, WaveformRendererSignalBase::Option::None) #endif )); } } WaveformWidgetAbstract* WaveformWidgetFactory::createAllshaderWaveformWidget( - WaveformWidgetType::Type type, WWaveformViewer* viewer) { - allshader::WaveformRendererSignalBase::Options options = - m_config->getValue(ConfigKey("[Waveform]", "waveform_options"), - allshader::WaveformRendererSignalBase::Option::None); + WaveformWidgetType::Type type, + WWaveformViewer* viewer, + WaveformRendererSignalBase::Options options) { return new allshader::WaveformWidget(viewer, type, viewer->getGroup(), options); } WaveformWidgetAbstract* WaveformWidgetFactory::createFilteredWaveformWidget( - WWaveformViewer* viewer) { + WWaveformViewer* viewer, WaveformRendererSignalBase::Options options) { WaveformWidgetBackend backend = getBackendFromConfig(); switch (backend) { #ifdef MIXXX_USE_QOPENGL case WaveformWidgetBackend::AllShader: { - return createAllshaderWaveformWidget(WaveformWidgetType::Type::Filtered, viewer); + return createAllshaderWaveformWidget(WaveformWidgetType::Type::Filtered, viewer, options); } #endif default: - return new SoftwareWaveformWidget(viewer->getGroup(), viewer); + return new SoftwareWaveformWidget(viewer->getGroup(), viewer, options); } } -WaveformWidgetAbstract* WaveformWidgetFactory::createHSVWaveformWidget(WWaveformViewer* viewer) { +WaveformWidgetAbstract* WaveformWidgetFactory::createHSVWaveformWidget( + WWaveformViewer* viewer, WaveformRendererSignalBase::Options options) { WaveformWidgetBackend backend = getBackendFromConfig(); switch (backend) { #ifdef MIXXX_USE_QOPENGL case WaveformWidgetBackend::AllShader: - return createAllshaderWaveformWidget(WaveformWidgetType::HSV, viewer); + return createAllshaderWaveformWidget(WaveformWidgetType::HSV, viewer, options); #endif default: - return new HSVWaveformWidget(viewer->getGroup(), viewer); + return new HSVWaveformWidget(viewer->getGroup(), viewer, options); } } -WaveformWidgetAbstract* WaveformWidgetFactory::createRGBWaveformWidget(WWaveformViewer* viewer) { +WaveformWidgetAbstract* WaveformWidgetFactory::createRGBWaveformWidget( + WWaveformViewer* viewer, WaveformRendererSignalBase::Options options) { WaveformWidgetBackend backend = getBackendFromConfig(); switch (backend) { #ifdef MIXXX_USE_QOPENGL case WaveformWidgetBackend::AllShader: - return createAllshaderWaveformWidget(WaveformWidgetType::Type::RGB, viewer); + return createAllshaderWaveformWidget(WaveformWidgetType::Type::RGB, viewer, options); #endif default: - return new RGBWaveformWidget(viewer->getGroup(), viewer); + return new RGBWaveformWidget(viewer->getGroup(), viewer, options); } } WaveformWidgetAbstract* WaveformWidgetFactory::createStackedWaveformWidget( - WWaveformViewer* viewer) { + WWaveformViewer* viewer, WaveformRendererSignalBase::Options options) { #ifdef MIXXX_USE_QOPENGL WaveformWidgetBackend backend = getBackendFromConfig(); switch (backend) { case WaveformWidgetBackend::AllShader: - return createAllshaderWaveformWidget(WaveformWidgetType::Type::Stacked, viewer); + return createAllshaderWaveformWidget(WaveformWidgetType::Type::Stacked, viewer, options); #endif default: return new EmptyWaveformWidget(viewer->getGroup(), viewer); } } -WaveformWidgetAbstract* WaveformWidgetFactory::createSimpleWaveformWidget(WWaveformViewer* viewer) { +WaveformWidgetAbstract* WaveformWidgetFactory::createSimpleWaveformWidget( + WWaveformViewer* viewer, WaveformRendererSignalBase::Options options) { WaveformWidgetBackend backend = getBackendFromConfig(); switch (backend) { #ifdef MIXXX_USE_QOPENGL case WaveformWidgetBackend::AllShader: - return createAllshaderWaveformWidget(WaveformWidgetType::Type::Simple, viewer); + return createAllshaderWaveformWidget(WaveformWidgetType::Type::Simple, viewer, options); #endif default: return new EmptyWaveformWidget(viewer->getGroup(), viewer); @@ -1157,24 +1163,28 @@ WaveformWidgetAbstract* WaveformWidgetFactory::createWaveformWidget( type = WaveformWidgetType::Empty; } + WaveformRendererSignalBase::Options options = + m_config->getValue(ConfigKey("[Waveform]", "waveform_options"), + WaveformRendererSignalBase::Option::None); + switch (type) { case WaveformWidgetType::Simple: - widget = createSimpleWaveformWidget(viewer); + widget = createSimpleWaveformWidget(viewer, options); break; case WaveformWidgetType::Filtered: - widget = createFilteredWaveformWidget(viewer); + widget = createFilteredWaveformWidget(viewer, options); break; case WaveformWidgetType::HSV: - widget = createHSVWaveformWidget(viewer); + widget = createHSVWaveformWidget(viewer, options); break; case WaveformWidgetType::VSyncTest: widget = createVSyncTestWaveformWidget(viewer); break; case WaveformWidgetType::RGB: - widget = createRGBWaveformWidget(viewer); + widget = createRGBWaveformWidget(viewer, options); break; case WaveformWidgetType::Stacked: - widget = createStackedWaveformWidget(viewer); + widget = createStackedWaveformWidget(viewer, options); break; default: widget = new EmptyWaveformWidget(viewer->getGroup(), viewer); diff --git a/src/waveform/waveformwidgetfactory.h b/src/waveform/waveformwidgetfactory.h index a18dd2dcc76d..c9fc36445eb3 100644 --- a/src/waveform/waveformwidgetfactory.h +++ b/src/waveform/waveformwidgetfactory.h @@ -10,6 +10,7 @@ #include "util/performancetimer.h" #include "util/singleton.h" #include "waveform/renderers/allshader/waveformrenderersignalbase.h" +#include "waveform/renderers/waveformrenderersignalbase.h" #include "waveform/widgets/waveformwidgettype.h" #include "waveform/widgets/waveformwidgetvars.h" @@ -61,11 +62,11 @@ class WaveformWidgetAbstractHandle { } #ifdef MIXXX_USE_QOPENGL - allshader::WaveformRendererSignalBase::Options supportedOptions( + WaveformRendererSignalBase::Options supportedOptions( WaveformWidgetBackend backend) const { return backend == WaveformWidgetBackend::AllShader ? m_supportedOption - : allshader::WaveformRendererSignalBase::Option::None; + : WaveformRendererSignalBase::Option::None; } #endif @@ -77,7 +78,7 @@ class WaveformWidgetAbstractHandle { QList m_backends; #ifdef MIXXX_USE_QOPENGL // Only relevant for Allshader (accelerated) backend. Other backends don't implement options - allshader::WaveformRendererSignalBase::Options m_supportedOption; + WaveformRendererSignalBase::Options m_supportedOption; #endif friend class WaveformWidgetFactory; @@ -288,7 +289,9 @@ class WaveformWidgetFactory : public QObject, template QString buildWidgetDisplayName() const; WaveformWidgetAbstract* createAllshaderWaveformWidget( - WaveformWidgetType::Type type, WWaveformViewer* viewer); + WaveformWidgetType::Type type, + WWaveformViewer* viewer, + WaveformRendererSignalBase::Options option); WaveformWidgetAbstract* createWaveformWidget(WaveformWidgetType::Type type, WWaveformViewer* viewer); int findIndexOf(WWaveformViewer* viewer) const; @@ -335,11 +338,17 @@ class WaveformWidgetFactory : public QObject, VisualsManager* m_pVisualsManager; // not owned // TODO(#13245): Migrate the following methods to smart pointer. - WaveformWidgetAbstract* createFilteredWaveformWidget(WWaveformViewer* viewer); - WaveformWidgetAbstract* createHSVWaveformWidget(WWaveformViewer* viewer); - WaveformWidgetAbstract* createRGBWaveformWidget(WWaveformViewer* viewer); - WaveformWidgetAbstract* createStackedWaveformWidget(WWaveformViewer* viewer); - WaveformWidgetAbstract* createSimpleWaveformWidget(WWaveformViewer* viewer); + WaveformWidgetAbstract* createFilteredWaveformWidget( + WWaveformViewer* viewer, + WaveformRendererSignalBase::Options option); + WaveformWidgetAbstract* createHSVWaveformWidget(WWaveformViewer* viewer, + WaveformRendererSignalBase::Options option); + WaveformWidgetAbstract* createRGBWaveformWidget(WWaveformViewer* viewer, + WaveformRendererSignalBase::Options option); + WaveformWidgetAbstract* createStackedWaveformWidget(WWaveformViewer* viewer, + WaveformRendererSignalBase::Options option); + WaveformWidgetAbstract* createSimpleWaveformWidget(WWaveformViewer* viewer, + WaveformRendererSignalBase::Options option); WaveformWidgetAbstract* createVSyncTestWaveformWidget(WWaveformViewer* viewer); //Debug diff --git a/src/waveform/widgets/allshader/waveformwidget.cpp b/src/waveform/widgets/allshader/waveformwidget.cpp index 9ee446e87d29..fb84dfdf8a4e 100644 --- a/src/waveform/widgets/allshader/waveformwidget.cpp +++ b/src/waveform/widgets/allshader/waveformwidget.cpp @@ -25,7 +25,7 @@ namespace allshader { WaveformWidget::WaveformWidget(QWidget* parent, WaveformWidgetType::Type type, const QString& group, - WaveformRendererSignalBase::Options options) + ::WaveformRendererSignalBase::Options options) : WGLWidget(parent), WaveformWidgetAbstract(group), m_type(type), @@ -102,10 +102,10 @@ WaveformWidget::~WaveformWidget() { std::unique_ptr WaveformWidget::addWaveformSignalRenderer(WaveformWidgetType::Type type, - WaveformRendererSignalBase::Options options, + ::WaveformRendererSignalBase::Options options, ::WaveformRendererAbstract::PositionSource positionSource) { #ifndef QT_OPENGL_ES_2 - if (options & WaveformRendererSignalBase::Option::HighDetail) { + if (options & ::WaveformRendererSignalBase::Option::HighDetail) { switch (type) { case ::WaveformWidgetType::RGB: case ::WaveformWidgetType::Filtered: @@ -120,16 +120,16 @@ WaveformWidget::addWaveformSignalRenderer(WaveformWidgetType::Type type, switch (type) { case ::WaveformWidgetType::Simple: - return addWaveformSignalRenderer(); + return addWaveformSignalRenderer(options); case ::WaveformWidgetType::RGB: return addWaveformSignalRenderer(positionSource, options); case ::WaveformWidgetType::HSV: - return addWaveformSignalRenderer(); + return addWaveformSignalRenderer(options); case ::WaveformWidgetType::Filtered: - return addWaveformSignalRenderer(false); + return addWaveformSignalRenderer(false, options); case ::WaveformWidgetType::Stacked: return addWaveformSignalRenderer( - true); // true for RGB Stacked + true, options); // true for RGB Stacked default: break; } @@ -199,16 +199,16 @@ void WaveformWidget::leaveEvent(QEvent* pEvent) { /* static */ WaveformRendererSignalBase::Options WaveformWidget::supportedOptions( WaveformWidgetType::Type type) { - WaveformRendererSignalBase::Options options = WaveformRendererSignalBase::Option::None; + ::WaveformRendererSignalBase::Options options = ::WaveformRendererSignalBase::Option::None; switch (type) { case WaveformWidgetType::Type::RGB: - options = WaveformRendererSignalBase::Option::AllOptionsCombined; + options = ::WaveformRendererSignalBase::Option::AllOptionsCombined; break; case WaveformWidgetType::Type::Filtered: - options = WaveformRendererSignalBase::Option::HighDetail; + options = ::WaveformRendererSignalBase::Option::HighDetail; break; case WaveformWidgetType::Type::Stacked: - options = WaveformRendererSignalBase::Option::HighDetail; + options = ::WaveformRendererSignalBase::Option::HighDetail; break; default: break; diff --git a/src/waveform/widgets/allshader/waveformwidget.h b/src/waveform/widgets/allshader/waveformwidget.h index 88a871f1fe78..fd5246e31adb 100644 --- a/src/waveform/widgets/allshader/waveformwidget.h +++ b/src/waveform/widgets/allshader/waveformwidget.h @@ -20,7 +20,7 @@ class allshader::WaveformWidget final : public ::WGLWidget, explicit WaveformWidget(QWidget* parent, WaveformWidgetType::Type type, const QString& group, - WaveformRendererSignalBase::Options options); + ::WaveformRendererSignalBase::Options options); ~WaveformWidget() override; WaveformWidgetType::Type getType() const override { @@ -40,7 +40,7 @@ class allshader::WaveformWidget final : public ::WGLWidget, return this; } static WaveformWidgetVars vars(); - static WaveformRendererSignalBase::Options supportedOptions(WaveformWidgetType::Type type); + static ::WaveformRendererSignalBase::Options supportedOptions(WaveformWidgetType::Type type); private: void castToQWidget() override; @@ -61,7 +61,7 @@ class allshader::WaveformWidget final : public ::WGLWidget, std::unique_ptr addWaveformSignalRenderer( WaveformWidgetType::Type type, - WaveformRendererSignalBase::Options options, + ::WaveformRendererSignalBase::Options options, ::WaveformRendererAbstract::PositionSource positionSource); WaveformWidgetType::Type m_type; diff --git a/src/waveform/widgets/hsvwaveformwidget.cpp b/src/waveform/widgets/hsvwaveformwidget.cpp index c3316889ff88..e66530c4671a 100644 --- a/src/waveform/widgets/hsvwaveformwidget.cpp +++ b/src/waveform/widgets/hsvwaveformwidget.cpp @@ -11,13 +11,15 @@ #include "waveform/renderers/waveformrendermark.h" #include "waveform/renderers/waveformrendermarkrange.h" -HSVWaveformWidget::HSVWaveformWidget(const QString& group, QWidget* parent) +HSVWaveformWidget::HSVWaveformWidget(const QString& group, + QWidget* parent, + ::WaveformRendererSignalBase::Options options) : NonGLWaveformWidgetAbstract(group, parent) { addRenderer(); addRenderer(); addRenderer(); addRenderer(); - addRenderer(); + addRenderer(options); addRenderer(); addRenderer(); diff --git a/src/waveform/widgets/hsvwaveformwidget.h b/src/waveform/widgets/hsvwaveformwidget.h index 64770edaf10f..5f4a1a6f197d 100644 --- a/src/waveform/widgets/hsvwaveformwidget.h +++ b/src/waveform/widgets/hsvwaveformwidget.h @@ -1,6 +1,7 @@ #pragma once #include "nonglwaveformwidgetabstract.h" +#include "waveform/renderers/waveformrenderersignalbase.h" class QWidget; @@ -28,6 +29,8 @@ class HSVWaveformWidget : public NonGLWaveformWidgetAbstract { virtual void paintEvent(QPaintEvent* event); private: - HSVWaveformWidget(const QString& group, QWidget* parent); + HSVWaveformWidget(const QString& group, + QWidget* parent, + WaveformRendererSignalBase::Options options); friend class WaveformWidgetFactory; }; diff --git a/src/waveform/widgets/rgbwaveformwidget.cpp b/src/waveform/widgets/rgbwaveformwidget.cpp index 3c7a61805d2e..72b907ede6af 100644 --- a/src/waveform/widgets/rgbwaveformwidget.cpp +++ b/src/waveform/widgets/rgbwaveformwidget.cpp @@ -11,13 +11,15 @@ #include "waveform/renderers/waveformrendermark.h" #include "waveform/renderers/waveformrendermarkrange.h" -RGBWaveformWidget::RGBWaveformWidget(const QString& group, QWidget* parent) +RGBWaveformWidget::RGBWaveformWidget(const QString& group, + QWidget* parent, + WaveformRendererSignalBase::Options options) : NonGLWaveformWidgetAbstract(group, parent) { addRenderer(); addRenderer(); addRenderer(); addRenderer(); - addRenderer(); + addRenderer(options); addRenderer(); addRenderer(); diff --git a/src/waveform/widgets/rgbwaveformwidget.h b/src/waveform/widgets/rgbwaveformwidget.h index 3c925c5359db..255415b697e2 100644 --- a/src/waveform/widgets/rgbwaveformwidget.h +++ b/src/waveform/widgets/rgbwaveformwidget.h @@ -1,6 +1,7 @@ #pragma once #include "nonglwaveformwidgetabstract.h" +#include "waveform/renderers/waveformrenderersignalbase.h" class QWidget; @@ -28,6 +29,8 @@ class RGBWaveformWidget : public NonGLWaveformWidgetAbstract { virtual void paintEvent(QPaintEvent* event); private: - RGBWaveformWidget(const QString& group, QWidget* parent); + RGBWaveformWidget(const QString& group, + QWidget* parent, + WaveformRendererSignalBase::Options options); friend class WaveformWidgetFactory; }; diff --git a/src/waveform/widgets/softwarewaveformwidget.cpp b/src/waveform/widgets/softwarewaveformwidget.cpp index 69099904e608..7f321b67a4d5 100644 --- a/src/waveform/widgets/softwarewaveformwidget.cpp +++ b/src/waveform/widgets/softwarewaveformwidget.cpp @@ -11,13 +11,15 @@ #include "waveform/renderers/waveformrendermark.h" #include "waveform/renderers/waveformrendermarkrange.h" -SoftwareWaveformWidget::SoftwareWaveformWidget(const QString& group, QWidget* parent) +SoftwareWaveformWidget::SoftwareWaveformWidget(const QString& group, + QWidget* parent, + WaveformRendererSignalBase::Options options) : NonGLWaveformWidgetAbstract(group, parent) { addRenderer(); addRenderer(); addRenderer(); addRenderer(); - addRenderer(); + addRenderer(options); addRenderer(); addRenderer(); diff --git a/src/waveform/widgets/softwarewaveformwidget.h b/src/waveform/widgets/softwarewaveformwidget.h index c79d0a545eaf..5227435f213f 100644 --- a/src/waveform/widgets/softwarewaveformwidget.h +++ b/src/waveform/widgets/softwarewaveformwidget.h @@ -1,6 +1,7 @@ #pragma once #include "nonglwaveformwidgetabstract.h" +#include "waveform/renderers/waveformrenderersignalbase.h" class QWidget; @@ -29,6 +30,8 @@ class SoftwareWaveformWidget : public NonGLWaveformWidgetAbstract { virtual void paintEvent(QPaintEvent* event); private: - SoftwareWaveformWidget(const QString& groupp, QWidget* parent); + SoftwareWaveformWidget(const QString& groupp, + QWidget* parent, + WaveformRendererSignalBase::Options options); friend class WaveformWidgetFactory; }; diff --git a/src/widget/wbpmeditor.cpp b/src/widget/wbpmeditor.cpp new file mode 100644 index 000000000000..225ccead981f --- /dev/null +++ b/src/widget/wbpmeditor.cpp @@ -0,0 +1,326 @@ +#include + +#include +#include +#include + +#include "control/controlobject.h" +#include "moc_wbpmeditor.cpp" +#include "skin/legacy/skincontext.h" + +namespace { +// Intervals for the hide timer +// Use same timeout as the WTrackProperty select timer for consistency +const int kHoverLeaveTimeout = 2000; +const int kInactiveTimeout = 5000; + +// Property name for the BPM/rate spinbox +const char* kOrigVal("originalValue"); +const double kBpmStepSize = 1.0; +const double kRateStepSize = 0.01; // +- 1 % + +} // anonymous namespace + +void TapPushButton::mousePressEvent(QMouseEvent* e) { + if (e->type() == QEvent::MouseButtonPress && e->button() == Qt::RightButton) { + emit rightClicked(); + return; + } + QPushButton::mousePressEvent(e); +} + +void BpmSpinBox::stepBy(int steps) { + QDoubleSpinBox::stepBy(steps); + emit stepped(steps); +} + +WBpmEditor::WBpmEditor(const QString& group, QWidget* pParent) + : WWidget(pParent), + m_tempoTapCO(group, QStringLiteral("tempo_tap")), + m_bpmTapCO(group, QStringLiteral("bpm_tap")), + // FIXME make it a ControlProxy to quit editor when track is unloaded so we + // don't accidentally set the file BPM while 'somehow' the track is swapped? + m_trackLoadedCO(group, QStringLiteral("track_loaded")), + m_bpmCO(group, QStringLiteral("bpm")), + m_fileBpmCO(group, QStringLiteral("file_bpm")), + m_rateRatioCO(group, QStringLiteral("rate_ratio")), + m_pClickOverlay(nullptr), + m_pSelectWidget(nullptr), + m_pTapSelectButton(nullptr), + m_pEditSelectButton(nullptr), + m_pTapButton(nullptr), + m_pEditBox(nullptr), + m_spinboxDecimals(2) { + setContentsMargins(0, 0, 0, 0); + setFocusPolicy(Qt::NoFocus); + // Setup the layout with the mode selectors (Tap|Edit), tap button and + // tempo editor. Only one of these widgets can be visible. + m_pClickOverlay = make_parented(this); + m_pClickOverlay->setObjectName(QStringLiteral("BpmClickOverlay")); + m_pClickOverlay->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + m_pClickOverlay->setFocusPolicy(Qt::NoFocus); + m_pClickOverlay->installEventFilter(this); + connect(m_pClickOverlay.get(), + &QPushButton::clicked, + this, + [this]() { switchMode(Mode::Select); }); + + m_pTapSelectButton = make_parented(this); + m_pTapSelectButton->setObjectName(QStringLiteral("BpmTapSelectButton")); + m_pTapSelectButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + m_pTapSelectButton->setFocusPolicy(Qt::NoFocus); + m_pTapSelectButton->installEventFilter(this); + connect(m_pTapSelectButton.get(), + &QPushButton::clicked, + this, + [this]() { switchMode(Mode::Tap); }); + + m_pEditSelectButton = make_parented(this); + m_pEditSelectButton->setObjectName(QStringLiteral("BpmEditSelectButton")); + m_pEditSelectButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + m_pEditSelectButton->setFocusPolicy(Qt::NoFocus); + m_pEditSelectButton->installEventFilter(this); + connect(m_pEditSelectButton.get(), + &QPushButton::clicked, + this, + [this]() { switchMode(Mode::Edit); }); + + m_pSelectWidget = make_parented(this); + m_pSelectWidget->installEventFilter(this); + m_pSelectWidget->setFocusPolicy(Qt::NoFocus); + auto pSelectLayout = std::make_unique(); + pSelectLayout->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter); + pSelectLayout->setContentsMargins(0, 0, 0, 0); + pSelectLayout->setSpacing(0); + pSelectLayout->setSizeConstraint(QLayout::SetNoConstraint); + pSelectLayout->addWidget(m_pTapSelectButton.get()); + pSelectLayout->addWidget(m_pEditSelectButton.get()); + pSelectLayout->update(); + pSelectLayout->activate(); + m_pSelectWidget->setLayout(pSelectLayout.release()); + + m_pTapButton = make_parented(this); + m_pTapButton->setObjectName(QStringLiteral("BpmTapButton")); + m_pTapButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + connect(m_pTapButton.get(), + &QPushButton::clicked, + this, + [this]() { + // Tap engine BPM + m_hideTimer.start(kInactiveTimeout); + m_tempoTapCO.set(1.0); + m_tempoTapCO.set(0.0); + }); + connect(m_pTapButton.get(), + &TapPushButton::rightClicked, + this, + [this]() { + // Tap file BPM + m_hideTimer.start(kInactiveTimeout); + m_bpmTapCO.set(1.0); + m_bpmTapCO.set(0.0); + }); + + m_pEditBox = make_parented(this); + m_pEditBox->setObjectName(QStringLiteral("EditBox")); + m_pEditBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + m_pEditBox->setLineeditAlignment(Qt::AlignHCenter | Qt::AlignTop); + // Step size, min and max are set when the spinbox is set up in switchMode(). + // Stepping via Up/Down or scroll wheel is applied immediately. + connect(m_pEditBox.get(), + &BpmSpinBox::stepped, + this, + &WBpmEditor::applySpinboxSteps); + // Use the event filter to catch Enter/Return presses to apply manually + // entered values and close the editor, as well as Esc to quit. + m_pEditBox->installEventFilter(this); + // Note: don't connect to &QDoubleSpinBox::editingFinished as that would call + // the apply slot twice: first when Enter is pressed and again when the spinbox + // is hidden (FocusOut/hide event when the current widget is switched). + + m_pModeLayout = make_parented(this); + m_pModeLayout->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter); + m_pModeLayout->setContentsMargins(0, 0, 0, 0); + m_pModeLayout->setSpacing(0); + m_pModeLayout->setSizeConstraint(QLayout::SetNoConstraint); + m_pModeLayout->addWidget(m_pClickOverlay.get()); + m_pModeLayout->addWidget(m_pSelectWidget.get()); + m_pModeLayout->addWidget(m_pTapButton.get()); + m_pModeLayout->addWidget(m_pEditBox.get()); + m_pModeLayout->setCurrentWidget(m_pClickOverlay.get()); + setLayout(m_pModeLayout.get()); + layout()->update(); + layout()->activate(); + + // The hide timer is started when switching to Select mode, in Tap mode when + // the cursor leaves the Tap button or after N seconds of inactivity. + m_hideTimer.setSingleShot(true); + m_hideTimer.callOnTimeout(this, [this]() { switchMode(Mode::Listen); }); + installEventFilter(this); +} + +void WBpmEditor::setup(const QDomNode& node, const SkinContext& context) { + Q_UNUSED(context); + + // Number of digits after the decimal. + context.hasNodeSelectInt(node, "NumberOfDigits", &m_spinboxDecimals); + m_pEditBox->setDecimals(m_spinboxDecimals); + + // TODO Check if we need to set the scale factor for the spinbox + // double scaleFactor = context.getScaleFactor(); + // setScaleFactor(scaleFactor); + // m_pEditBox->setsc >setScaleFactor(scaleFactor); +} + +void WBpmEditor::setTapButtonTooltip(const QString& tooltip) { + m_pTapSelectButton.get()->setToolTip(tooltip); + m_pTapButton.get()->setToolTip(tooltip); +} + +void WBpmEditor::setEditButtonTooltip(const QString& tooltip) { + m_pEditSelectButton.get()->setToolTip(tooltip); + m_pEditBox.get()->setToolTip(tooltip); +} + +bool WBpmEditor::eventFilter(QObject* pObj, QEvent* pEvent) { + if (pObj == m_pEditBox.get() && pEvent->type() == QEvent::KeyPress) { + // Esc will close & reset. + // Any other keypress is forwarded. + QKeyEvent* keyEvent = static_cast(pEvent); + if (keyEvent->key() == Qt::Key_Escape) { + switchMode(Mode::Listen); + return true; + } else if (keyEvent->key() == Qt::Key_Enter || + keyEvent->key() == Qt::Key_Return) { + applySpinboxValueAndQuit(); + } + } else if (pEvent->type() == QEvent::HoverEnter) { + m_hideTimer.stop(); + } else if (pEvent->type() == QEvent::HoverLeave && + pObj != m_pEditBox.get()) { + // Don't auto-quit the spinbox when while it focus + m_hideTimer.start(kHoverLeaveTimeout); + } else if (pEvent->type() == QEvent::FocusOut) { + // Only the spinbox can have focus - quit and discard pending changes + switchMode(Mode::Listen); + } + return QWidget::eventFilter(pObj, pEvent); +} + +void WBpmEditor::startEditMode() { + double fileBpm = m_fileBpmCO.get(); + // The `rateRange` ControlPotmeter allows 1-400 %. + // For rate % these are the limits, for BPM the lower limit is 1 (to keep + // the track playing) + if (fileBpm == 0.0) { // Rate mode + // Track has currently no BPM so we'll control the rate. + // Note that this might change while we edit the rate, so we set + // the '%' suffix (and we'll use it to detect BPM/rate mode when + // committing the new value). + // Also, clamp like rateRange. + double currRate = m_rateRatioCO.get(); + m_pEditBox->setSuffix(" %"); + m_pEditBox->setMinimum(1); + m_pEditBox->setMaximum(400); + m_pEditBox->setSingleStep(kRateStepSize); + m_pEditBox->setValue(currRate * 100); + // The value may be cropped/rounded if the decimals don't fit in the box. + // Store the rounded value for comparison when committing + m_pEditBox->setProperty(kOrigVal, m_pEditBox->value()); + } else { // BPM mode + double currBpm = m_bpmCO.get(); + m_pEditBox->setSuffix(""); + m_pEditBox->setMinimum(1); + m_pEditBox->setMaximum(fileBpm * 4); + m_pEditBox->setSingleStep(kBpmStepSize); + m_pEditBox->setValue(currBpm); + // The value may be cropped/rounded if the decimals don't fit in the box. + // Store the rounded value for comparison when attempting to apply typed values. + m_pEditBox->setProperty(kOrigVal, m_pEditBox->value()); + } + + m_pModeLayout->setCurrentWidget(m_pEditBox.get()); + m_pEditBox->setFocus(); + m_pEditBox->selectAll(); +} + +void WBpmEditor::applySpinboxSteps(int steps) { + // This ignores the spinbox value after Up/Down steps and applies +- steps + // sto the COs directly. + // The purpose is to allow us to return to the initial BPM/rate, eg. center, + // with Up/Down steps (without intermediate manual changes). + // With default QDoubleSpinBox behavior this does not work due to rounding. + + if (m_pEditBox->suffix().isEmpty()) { + // No suffix means we're in BPM mode + double newValue = m_bpmCO.get() + (steps * kBpmStepSize); + m_bpmCO.set(newValue); + m_pEditBox->setValue(newValue); + } else { + // Rate mode + double newValue = m_rateRatioCO.get() + (steps * kRateStepSize); + m_rateRatioCO.set(newValue); + m_pEditBox->setValue(newValue * 100); + } + m_pEditBox->setProperty(kOrigVal, m_pEditBox->value()); +} + +void WBpmEditor::applySpinboxValueAndQuit() { + // Filter no-op: avoid shifting rate/BPM due to rounding when the + // original value has more decimals than the spinbox can display + const QVariant origValueVar = m_pEditBox->property(kOrigVal); + VERIFY_OR_DEBUG_ASSERT(origValueVar.isValid() && origValueVar.canConvert()) { + // Something went wrong during spinbox setup, quit. + // This property is cleared when switching to Listen mode. + switchMode(Mode::Listen); + return; + } + + double origValue = origValueVar.toDouble(); + double newValue = m_pEditBox->value(); + + // Note: this comparison should suffice, no need for epsilon check to + // account for floating point imprecision, eg. like this + // fabs(newValue - origValue) < (1 / pow(10, m_spinboxDecimals)) + if (newValue == origValue) { + switchMode(Mode::Listen); + return; + } + + if (m_pEditBox->suffix().isEmpty()) { + // No suffix means we're in BPM mode + m_bpmCO.set(newValue); + } else { + // Rate mode + m_rateRatioCO.set(newValue / 100); + } + + switchMode(Mode::Listen); +} + +void WBpmEditor::switchMode(Mode mode) { + m_hideTimer.stop(); + if (!m_trackLoadedCO.toBool()) { + mode = Mode::Listen; + } + switch (mode) { + case Mode::Select: + m_pModeLayout->setCurrentWidget(m_pSelectWidget.get()); + return; + case Mode::Tap: + m_pModeLayout->setCurrentWidget(m_pTapButton.get()); + return; + case Mode::Edit: { + startEditMode(); + return; + } + case Mode::Listen: + default: + m_pEditBox->setProperty(kOrigVal, QVariant()); + m_pModeLayout->setCurrentWidget(m_pClickOverlay.get()); + ControlObject::set(ConfigKey(QStringLiteral("[Library]"), + QStringLiteral("refocus_prev_widget")), + 1); + return; + } +} diff --git a/src/widget/wbpmeditor.h b/src/widget/wbpmeditor.h new file mode 100644 index 000000000000..c90522ab99cf --- /dev/null +++ b/src/widget/wbpmeditor.h @@ -0,0 +1,93 @@ +#pragma once + +#include +#include +#include +#include + +#include "control/pollingcontrolproxy.h" +#include "util/parented_ptr.h" +#include "widget/wwidget.h" + +class QPushButton; +class QDoubleSpinBox; +class QStackedLayout; +class SkinContext; + +// Custom PushButton which emits a custom signal when right-clicked +class TapPushButton : public QPushButton { + Q_OBJECT + public: + explicit TapPushButton(QWidget* parent = 0) + : QPushButton(parent) { + } + + protected: + void mousePressEvent(QMouseEvent* e) override; + + signals: + void rightClicked(); +}; + +class BpmSpinBox : public QDoubleSpinBox { + Q_OBJECT + public: + explicit BpmSpinBox(QWidget* pParent = 0) + : QDoubleSpinBox(pParent) { + } + + void setLineeditAlignment(QFlags flags) { + lineEdit()->setAlignment(flags); + } + signals: + void stepped(int steps); + + private: + void stepBy(int steps) override; +}; + +class WBpmEditor : public WWidget { + Q_OBJECT + public: + explicit WBpmEditor(const QString& group, QWidget* pParent = nullptr); + + void setup(const QDomNode& node, const SkinContext& context); + + enum class Mode { + Listen, + Select, + Tap, + Edit, + }; + + void setTapButtonTooltip(const QString& tooltip); + void setEditButtonTooltip(const QString& tooltip); + + private slots: + void switchMode(Mode mode); + + private: + bool eventFilter(QObject* pObj, QEvent* pEvent) override; + void startEditMode(); + void applySpinboxSteps(int steps); + void applySpinboxValueAndQuit(); + + PollingControlProxy m_tempoTapCO; + PollingControlProxy m_bpmTapCO; + PollingControlProxy m_trackLoadedCO; + PollingControlProxy m_bpmCO; + PollingControlProxy m_fileBpmCO; + PollingControlProxy m_rateRatioCO; + + parented_ptr m_pModeLayout; + parented_ptr m_pClickOverlay; + parented_ptr m_pSelectWidget; + parented_ptr m_pTapSelectButton; + parented_ptr m_pEditSelectButton; + parented_ptr m_pTapButton; + parented_ptr m_pEditBox; + + QTimer m_hideTimer; + + int m_spinboxDecimals; +}; diff --git a/src/widget/wcuemenupopup.cpp b/src/widget/wcuemenupopup.cpp index 6f8f1cab5ee3..1e69059f89b7 100644 --- a/src/widget/wcuemenupopup.cpp +++ b/src/widget/wcuemenupopup.cpp @@ -2,12 +2,21 @@ #include #include +#include #include "control/controlobject.h" #include "moc_wcuemenupopup.cpp" #include "track/track.h" -void CueTypePushButton::mousePressEvent(QMouseEvent* e) { +namespace { +const ConfigKey kHotcueDefaultColorIndexConfigKey("[Controls]", "HotcueDefaultColorIndex"); +const ConfigKey kLoopDefaultColorIndexConfigKey("[Controls]", "LoopDefaultColorIndex"); +const ConfigKey kJumpDefaultColorIndexConfigKey("[Controls]", "jump_default_color_index"); + +constexpr mixxx::audio::FrameDiff_t kMinimumAudibleLoopSizeFrames = 150; +} // namespace + +void CueMenuPushButton::mousePressEvent(QMouseEvent* e) { if (e->type() == QEvent::MouseButtonPress && e->button() == Qt::RightButton) { emit rightClicked(); return; @@ -15,8 +24,50 @@ void CueTypePushButton::mousePressEvent(QMouseEvent* e) { QPushButton::mousePressEvent(e); } +void WCueMenuPopup::updateTypeAndColorIfDefault(mixxx::CueType newType) { + auto hotcueColorPalette = + m_colorPaletteSettings.getHotcueColorPalette(); + int colorIndex; + switch (m_pCue->getType()) { + default: + colorIndex = m_pConfig->getValue(kHotcueDefaultColorIndexConfigKey, -1); + break; + case mixxx::CueType::Loop: + colorIndex = m_pConfig->getValue(kLoopDefaultColorIndexConfigKey, -1); + break; + case mixxx::CueType::Jump: + colorIndex = m_pConfig->getValue(kJumpDefaultColorIndexConfigKey, -1); + break; + } + auto defaultColor = + (colorIndex < 0 || colorIndex >= hotcueColorPalette.size()) + ? hotcueColorPalette.defaultColor() + : hotcueColorPalette.at(colorIndex); + m_pCue->setType(newType); + if (m_pCue->getColor() != defaultColor) { + return; + } + switch (newType) { + default: + colorIndex = m_pConfig->getValue(kHotcueDefaultColorIndexConfigKey, -1); + break; + case mixxx::CueType::Loop: + colorIndex = m_pConfig->getValue(kLoopDefaultColorIndexConfigKey, -1); + break; + case mixxx::CueType::Jump: + colorIndex = m_pConfig->getValue(kJumpDefaultColorIndexConfigKey, -1); + break; + } + if (colorIndex < 0 || colorIndex >= hotcueColorPalette.size()) { + m_pCue->setColor(hotcueColorPalette.defaultColor()); + } else { + m_pCue->setColor(hotcueColorPalette.at(colorIndex)); + } +} + WCueMenuPopup::WCueMenuPopup(UserSettingsPointer pConfig, QWidget* parent) : QWidget(parent), + m_pConfig(pConfig), m_colorPaletteSettings(ColorPaletteSettings(pConfig)), m_pBeatLoopSize(ControlFlag::AllowMissingOrInvalid), m_pPlayPos(ControlFlag::AllowMissingOrInvalid), @@ -54,29 +105,51 @@ WCueMenuPopup::WCueMenuPopup(UserSettingsPointer pConfig, QWidget* parent) this, &WCueMenuPopup::slotChangeCueColor); - m_pDeleteCue = std::make_unique("", this); + m_pDeleteCue = std::make_unique(this); m_pDeleteCue->setToolTip(tr("Delete this cue")); m_pDeleteCue->setObjectName("CueDeleteButton"); connect(m_pDeleteCue.get(), &QPushButton::clicked, this, &WCueMenuPopup::slotDeleteCue); - m_pSavedLoopCue = std::make_unique(this); - m_pSavedLoopCue->setToolTip( - tr("Toggle this cue type between normal cue and saved loop") + - "\n\n" + - tr("Left-click: Use the old size or the current beatloop size as the loop size") + + m_pStandardCue = std::make_unique(this); + m_pStandardCue->setToolTip( + tr("Turn this cue into a regular hotcue")); + m_pStandardCue->setObjectName("CueStandardButton"); + m_pStandardCue->setCheckable(true); + connect(m_pStandardCue.get(), + &CueMenuPushButton::clicked, + this, + &WCueMenuPopup::slotStandardCue); + + m_pSavedLoopCue = std::make_unique(this); + m_pSavedLoopCue->setToolTip(tr("Turn this cue into a saved loop") + "\n\n" + + tr("Left-click: Use the old size if known or the current beatloop " + "size as the loop size") + "\n" + - tr("Right-click: Use the current play position as loop end if it is after the cue")); + tr("Right-click: Use the current play position as new loop end if " + "it is after the cue")); m_pSavedLoopCue->setObjectName("CueSavedLoopButton"); m_pSavedLoopCue->setCheckable(true); connect(m_pSavedLoopCue.get(), - &CueTypePushButton::clicked, + &CueMenuPushButton::clicked, this, &WCueMenuPopup::slotSavedLoopCueAuto); connect(m_pSavedLoopCue.get(), - &CueTypePushButton::rightClicked, + &CueMenuPushButton::rightClicked, this, &WCueMenuPopup::slotSavedLoopCueManual); + m_pSavedJumpCue = std::make_unique(this); + m_pSavedJumpCue->setObjectName("CueSavedJumpButton"); + m_pSavedJumpCue->setCheckable(true); + connect(m_pSavedJumpCue.get(), + &CueMenuPushButton::clicked, + this, + &WCueMenuPopup::slotSavedJumpCueAuto); + connect(m_pSavedJumpCue.get(), + &CueMenuPushButton::rightClicked, + this, + &WCueMenuPopup::slotSavedJumpCueManual); + QHBoxLayout* pLabelLayout = new QHBoxLayout(); pLabelLayout->addWidget(m_pCueNumber.get()); pLabelLayout->addStretch(1); @@ -89,8 +162,11 @@ WCueMenuPopup::WCueMenuPopup(UserSettingsPointer pConfig, QWidget* parent) QVBoxLayout* pRightLayout = new QVBoxLayout(); pRightLayout->addWidget(m_pDeleteCue.get()); + pRightLayout->addWidget(m_pStandardCue.get()); pRightLayout->addStretch(1); pRightLayout->addWidget(m_pSavedLoopCue.get()); + pRightLayout->addStretch(1); + pRightLayout->addWidget(m_pSavedJumpCue.get()); QHBoxLayout* pMainLayout = new QHBoxLayout(); pMainLayout->addLayout(pLeftLayout); @@ -142,22 +218,83 @@ void WCueMenuPopup::slotUpdate() { QString positionText = ""; Cue::StartAndEndPositions pos = m_pCue->getStartAndEndPosition(); - if (pos.startPosition.isValid()) { + if (pos.startPosition.isValid() && pos.endPosition.isValid() && + m_pCue->getType() != mixxx::CueType::HotCue) { double startPositionSeconds = pos.startPosition.value() / m_pTrack->getSampleRate(); - positionText = mixxx::Duration::formatTime(startPositionSeconds, mixxx::Duration::Precision::CENTISECONDS); - if (pos.endPosition.isValid() && m_pCue->getType() != mixxx::CueType::HotCue) { - double endPositionSeconds = pos.endPosition.value() / m_pTrack->getSampleRate(); - positionText = QString("%1 - %2").arg( - positionText, - mixxx::Duration::formatTime(endPositionSeconds, mixxx::Duration::Precision::CENTISECONDS) - ); - } + double endPositionSeconds = pos.endPosition.value() / m_pTrack->getSampleRate(); + QString startPositionText = + mixxx::Duration::formatTime(std::min(startPositionSeconds, endPositionSeconds), + mixxx::Duration::Precision::CENTISECONDS); + QString endPositionText = mixxx::Duration::formatTime( + std::max(startPositionSeconds, endPositionSeconds), + mixxx::Duration::Precision:: + CENTISECONDS); + positionText = + QString("%1 %2 %3") + .arg(startPositionText, + m_pCue->getType() == mixxx::CueType::Loop + ? "-" + : (startPositionSeconds < endPositionSeconds + ? "⟵" + : "⟶"), + endPositionText); + } else { + double startPositionSeconds = pos.startPosition.value() / m_pTrack->getSampleRate(); + positionText = mixxx::Duration::formatTime(startPositionSeconds, + mixxx::Duration::Precision::CENTISECONDS); } m_pCuePosition->setText(positionText); m_pEditLabel->setText(m_pCue->getLabel()); m_pColorPicker->setSelectedColor(m_pCue->getColor()); + m_pStandardCue->setChecked(m_pCue->getType() == mixxx::CueType::HotCue); m_pSavedLoopCue->setChecked(m_pCue->getType() == mixxx::CueType::Loop); + m_pSavedJumpCue->setChecked(m_pCue->getType() == mixxx::CueType::Jump); + QString direction; + if (m_pCue->getType() == mixxx::CueType::HotCue) { + // Use forward/backward icon if the playposition is before/after + // the hotcue position + auto cueStartEnd = m_pCue->getStartAndEndPosition(); + auto newPosition = cueStartEnd.endPosition; + if (!newPosition.isValid()) { + newPosition = getCurrentPlayPositionWithQuantize(); + } + if (!newPosition.isValid() || + std::abs(newPosition - cueStartEnd.startPosition) <= + kMinimumAudibleLoopSizeFrames) { + direction = "impossible"; + } else if (newPosition < cueStartEnd.startPosition) { + direction = "forward"; + } else { + direction = "backward"; + } + } else { + const bool isforward = m_pCue->getType() != mixxx::CueType::Jump || + m_pCue->getPosition() > m_pCue->getEndPosition(); + // Use forward icon if this is a saved loop, or forward/back if this + // already is a jump cue + direction = isforward + ? "forward" + : "backward"; + m_pSavedJumpCue->setToolTip( + //: \n is a linebreak. Try to not to extend the translation + //: beyond the length of the longest source line so the + //: tooltip remains compact. + (isforward ? tr("Turn this cue into a saved forward jump.") + : tr("Turn this cue into a saved backward jump " + "(one shot loop).")) + + "\n\n" + + tr("Left-click: Use the old size if known or the current " + "play position as jump start position\n" + "If this is already a jump cue, swap the jump position " + "and the cue/target position.") + + "\n\n" + + tr("Right-click: use current play position as new jump " + "start position")); + } + m_pSavedJumpCue->setProperty("direction", direction); + m_pSavedJumpCue->style()->polish(m_pSavedJumpCue.get()); + m_pSavedJumpCue->repaint(); } else { m_pTrack.reset(); m_pCue.reset(); @@ -198,40 +335,20 @@ void WCueMenuPopup::slotDeleteCue() { hide(); } -void WCueMenuPopup::slotSavedLoopCueAuto() { +void WCueMenuPopup::slotStandardCue() { VERIFY_OR_DEBUG_ASSERT(m_pCue != nullptr) { return; } VERIFY_OR_DEBUG_ASSERT(m_pTrack != nullptr) { return; } - VERIFY_OR_DEBUG_ASSERT(m_pBeatLoopSize.valid()) { - return; - } - if (m_pCue->getType() == mixxx::CueType::Loop) { - m_pCue->setType(mixxx::CueType::HotCue); - } else { - auto cueStartEnd = m_pCue->getStartAndEndPosition(); - if (!cueStartEnd.endPosition.isValid() || - cueStartEnd.endPosition <= cueStartEnd.startPosition) { - double beatloopSize = m_pBeatLoopSize.get(); - const mixxx::BeatsPointer pBeats = m_pTrack->getBeats(); - if (beatloopSize <= 0 || !pBeats) { - return; - } - auto position = pBeats->findNBeatsFromPosition( - cueStartEnd.startPosition, beatloopSize); - if (position <= m_pCue->getPosition()) { - return; - } - m_pCue->setEndPosition(position); - } - m_pCue->setType(mixxx::CueType::Loop); + if (m_pCue->getType() != mixxx::CueType::HotCue) { + updateTypeAndColorIfDefault(mixxx::CueType::HotCue); } slotUpdate(); } -void WCueMenuPopup::slotSavedLoopCueManual() { +void WCueMenuPopup::slotSavedLoopCueAuto() { VERIFY_OR_DEBUG_ASSERT(m_pCue != nullptr) { return; } @@ -241,21 +358,121 @@ void WCueMenuPopup::slotSavedLoopCueManual() { VERIFY_OR_DEBUG_ASSERT(m_pBeatLoopSize.valid()) { return; } + auto cueStartEnd = m_pCue->getStartAndEndPosition(); + // If we are changing the cue type from a jump, we need to permute the positions + if (m_pCue->getType() == mixxx::CueType::Jump) { + auto endPosition = cueStartEnd.endPosition; + if (cueStartEnd.endPosition < cueStartEnd.startPosition) { + // Only swap value if this is a forward jump + cueStartEnd.endPosition = cueStartEnd.startPosition; + cueStartEnd.startPosition = endPosition; + } + m_pCue->setStartAndEndPosition(cueStartEnd.startPosition, cueStartEnd.endPosition); + } + if (!cueStartEnd.endPosition.isValid() || + cueStartEnd.endPosition <= cueStartEnd.startPosition) { + double beatloopSize = m_pBeatLoopSize.get(); + const mixxx::BeatsPointer pBeats = m_pTrack->getBeats(); + if (beatloopSize <= 0 || !pBeats) { + return; + } + auto position = pBeats->findNBeatsFromPosition( + cueStartEnd.startPosition, beatloopSize); + if (position <= m_pCue->getPosition()) { + return; + } + m_pCue->setEndPosition(position); + } + updateTypeAndColorIfDefault(mixxx::CueType::Loop); + slotUpdate(); +} + +mixxx::audio::FramePos WCueMenuPopup::getCurrentPlayPositionWithQuantize() const { const mixxx::BeatsPointer pBeats = m_pTrack->getBeats(); auto position = mixxx::audio::FramePos::fromEngineSamplePos( m_pPlayPos.get() * m_pTrackSample.get()); if (m_pQuantizeEnabled.toBool() && pBeats) { mixxx::audio::FramePos nextBeatPosition, prevBeatPosition; pBeats->findPrevNextBeats(position, &prevBeatPosition, &nextBeatPosition, false); - position = (nextBeatPosition - position > position - prevBeatPosition) + return (nextBeatPosition - position > position - prevBeatPosition) ? prevBeatPosition : nextBeatPosition; } - if (position <= m_pCue->getPosition()) { + return position; +} + +void WCueMenuPopup::slotSavedLoopCueManual() { + VERIFY_OR_DEBUG_ASSERT(m_pCue != nullptr) { + return; + } + VERIFY_OR_DEBUG_ASSERT(m_pTrack != nullptr) { + return; + } + // If we are changing the cue type from a jump, we need to permute the + // positions if it wasn't going backward + if (m_pCue->getType() == mixxx::CueType::Jump && + m_pCue->getPosition() > m_pCue->getEndPosition()) { + auto cueStartEnd = m_pCue->getStartAndEndPosition(); + auto endPosition = cueStartEnd.endPosition; + cueStartEnd.endPosition = cueStartEnd.startPosition; + cueStartEnd.startPosition = endPosition; + m_pCue->setStartAndEndPosition(cueStartEnd.startPosition, cueStartEnd.endPosition); + } + auto newPosition = getCurrentPlayPositionWithQuantize(); + if (newPosition <= m_pCue->getPosition()) { + return; + } + m_pCue->setEndPosition(newPosition); + updateTypeAndColorIfDefault(mixxx::CueType::Loop); + slotUpdate(); +} + +void WCueMenuPopup::slotSavedJumpCueAuto() { + VERIFY_OR_DEBUG_ASSERT(m_pCue != nullptr) { + slotUpdate(); + return; + } + VERIFY_OR_DEBUG_ASSERT(m_pTrack != nullptr) { + slotUpdate(); + return; + } + auto cueStartEnd = m_pCue->getStartAndEndPosition(); + // If we are changing the cue type from a loop, we need to permute the position + // Also, if the type is already a jump, we swap to the to/from point + if (m_pCue->getType() == mixxx::CueType::Loop || m_pCue->getType() == mixxx::CueType::Jump) { + auto endPosition = cueStartEnd.endPosition; + cueStartEnd.endPosition = cueStartEnd.startPosition; + cueStartEnd.startPosition = endPosition; + } + if (!cueStartEnd.endPosition.isValid()) { + auto newPosition = getCurrentPlayPositionWithQuantize(); + if (std::abs(newPosition - cueStartEnd.startPosition) <= + kMinimumAudibleLoopSizeFrames) { + slotUpdate(); + return; + } + cueStartEnd.endPosition = newPosition; + } + m_pCue->setStartAndEndPosition(cueStartEnd.startPosition, cueStartEnd.endPosition); + updateTypeAndColorIfDefault(mixxx::CueType::Jump); + slotUpdate(); +} + +void WCueMenuPopup::slotSavedJumpCueManual() { + VERIFY_OR_DEBUG_ASSERT(m_pCue != nullptr) { + return; + } + VERIFY_OR_DEBUG_ASSERT(m_pTrack != nullptr) { + return; + } + auto cueStartEnd = m_pCue->getStartAndEndPosition(); + auto newPosition = getCurrentPlayPositionWithQuantize(); + if (newPosition == cueStartEnd.startPosition) { return; } - m_pCue->setEndPosition(position); - m_pCue->setType(mixxx::CueType::Loop); + cueStartEnd.endPosition = newPosition; + m_pCue->setStartAndEndPosition(cueStartEnd.startPosition, cueStartEnd.endPosition); + updateTypeAndColorIfDefault(mixxx::CueType::Jump); slotUpdate(); } diff --git a/src/widget/wcuemenupopup.h b/src/widget/wcuemenupopup.h index 4f20d171ea5f..87617137263a 100644 --- a/src/widget/wcuemenupopup.h +++ b/src/widget/wcuemenupopup.h @@ -15,10 +15,10 @@ class ControlProxy; // Custom PushButton which emit a custom signal when right-clicked -class CueTypePushButton : public QPushButton { +class CueMenuPushButton : public QPushButton { Q_OBJECT public: - explicit CueTypePushButton(QWidget* parent = 0) + explicit CueMenuPushButton(QWidget* parent = 0) : QPushButton(parent) { } @@ -64,6 +64,9 @@ class WCueMenuPopup : public QWidget { void slotEditLabel(); void slotDeleteCue(); void slotUpdate(); + void slotStandardCue(); + void slotSavedJumpCueManual(); + void slotSavedJumpCueAuto(); /// This slot is called when the saved loop button is being left pressed, /// which effectively toggle the cue loop between standard cue and saved /// loop. If the cue was never a saved loop, it will use the current @@ -77,6 +80,10 @@ class WCueMenuPopup : public QWidget { void slotChangeCueColor(mixxx::RgbColor::optional_t color); private: + void updateTypeAndColorIfDefault(mixxx::CueType newType); + mixxx::audio::FramePos getCurrentPlayPositionWithQuantize() const; + + UserSettingsPointer m_pConfig; ColorPaletteSettings m_colorPaletteSettings; PollingControlProxy m_pBeatLoopSize; PollingControlProxy m_pPlayPos; @@ -89,8 +96,10 @@ class WCueMenuPopup : public QWidget { std::unique_ptr m_pCuePosition; std::unique_ptr m_pEditLabel; std::unique_ptr m_pColorPicker; - std::unique_ptr m_pDeleteCue; - std::unique_ptr m_pSavedLoopCue; + std::unique_ptr m_pDeleteCue; + std::unique_ptr m_pStandardCue; + std::unique_ptr m_pSavedLoopCue; + std::unique_ptr m_pSavedJumpCue; protected: void closeEvent(QCloseEvent* event) override; diff --git a/src/widget/whotcuebutton.cpp b/src/widget/whotcuebutton.cpp index 50308a2d0952..6de7c8469f60 100644 --- a/src/widget/whotcuebutton.cpp +++ b/src/widget/whotcuebutton.cpp @@ -9,6 +9,7 @@ #include #include +#include "engine/controls/cuecontrol.h" #include "mixer/playerinfo.h" #include "moc_whotcuebutton.cpp" #include "skin/legacy/skincontext.h" @@ -94,6 +95,23 @@ void WHotcueButton::setup(const QDomNode& node, const SkinContext& context) { m_pCoType->connectValueChanged(this, &WHotcueButton::slotTypeChanged); slotTypeChanged(m_pCoType->get()); + m_pCoPosition = make_parented( + createConfigKey(QStringLiteral("position")), + this, + ControlFlag::NoAssertIfMissing); + m_pCoPosition->connectValueChanged(this, &WHotcueButton::slotUpdateDirection); + m_pCoEndPosition = make_parented( + createConfigKey(QStringLiteral("endposition")), + this, + ControlFlag::NoAssertIfMissing); + m_pCoEndPosition->connectValueChanged(this, &WHotcueButton::slotUpdateDirection); + slotUpdateDirection(); + + m_pCoActive = make_parented( + createConfigKey(QStringLiteral("status")), + this, + ControlFlag::NoAssertIfMissing); + addConnection(std::make_unique( this, getLeftClickConfigKey(), // "activate" @@ -116,6 +134,12 @@ void WHotcueButton::setup(const QDomNode& node, const SkinContext& context) { } } +bool WHotcueButton::isActive() const { + return m_pCoActive && + m_pCoActive->get() == + static_cast(HotcueControl::Status::Active); +} + void WHotcueButton::mousePressEvent(QMouseEvent* pEvent) { const bool rightClick = pEvent->button() == Qt::RightButton; if (rightClick) { @@ -274,6 +298,13 @@ void WHotcueButton::slotColorChanged(double color) { restyleAndRepaint(); } +void WHotcueButton::slotUpdateDirection(double) { + m_direction = m_pCoPosition->get() >= m_pCoEndPosition->get() + ? QStringLiteral("forward") + : QStringLiteral("backward"); + restyleAndRepaint(); +} + void WHotcueButton::slotTypeChanged(double type) { switch (static_cast(static_cast(type))) { case mixxx::CueType::Invalid: diff --git a/src/widget/whotcuebutton.h b/src/widget/whotcuebutton.h index 0a95d264197b..f2f660b4aa7e 100644 --- a/src/widget/whotcuebutton.h +++ b/src/widget/whotcuebutton.h @@ -27,6 +27,10 @@ class WHotcueButton : public WPushButton { Q_PROPERTY(bool light MEMBER m_bCueColorIsLight); Q_PROPERTY(bool dark MEMBER m_bCueColorIsDark); Q_PROPERTY(QString type MEMBER m_type); + Q_PROPERTY(QString direction MEMBER m_direction); + Q_PROPERTY(bool active READ isActive); + + bool isActive() const; protected: void mousePressEvent(QMouseEvent* pEvent) override; @@ -39,6 +43,7 @@ class WHotcueButton : public WPushButton { private slots: void slotColorChanged(double color); void slotTypeChanged(double type); + void slotUpdateDirection(double = 0); private: ConfigKey createConfigKey(const QString& name); @@ -49,11 +54,15 @@ class WHotcueButton : public WPushButton { bool m_hoverCueColor; parented_ptr m_pCoColor; parented_ptr m_pCoType; + parented_ptr m_pCoPosition; + parented_ptr m_pCoEndPosition; + parented_ptr m_pCoActive; parented_ptr m_pCueMenuPopup; int m_cueColorDimThreshold; bool m_bCueColorDimmed; bool m_bCueColorIsLight; bool m_bCueColorIsDark; QString m_type; + QString m_direction; QMargins m_dndRectMargins; }; diff --git a/src/widget/wkey.cpp b/src/widget/wkey.cpp index 3186e2275340..b335f6b19e5d 100644 --- a/src/widget/wkey.cpp +++ b/src/widget/wkey.cpp @@ -1,28 +1,37 @@ #include "widget/wkey.h" +#include +#include + #include "library/library_prefs.h" #include "moc_wkey.cpp" +#include "preferences/usersettings.h" #include "skin/legacy/skincontext.h" #include "track/keyutils.h" -WKey::WKey(const QString& group, QWidget* pParent) +WKey::WKey(const QString& group, UserSettingsPointer pConfig, QWidget* pParent) : WLabel(pParent), - m_dOldValue(0), m_keyNotation(mixxx::library::prefs::kKeyNotationConfigKey, this), m_engineKeyDistance(group, "visual_key_distance", this, - ControlFlag::AllowMissingOrInvalid) { - setValue(m_dOldValue); + ControlFlag::AllowMissingOrInvalid), + m_engineKey(group, + "key", + this, + ControlFlag::AllowMissingOrInvalid), + m_colorPaletteSettings(pConfig) { + setValue(); m_keyNotation.connectValueChanged(this, &WKey::keyNotationChanged); m_engineKeyDistance.connectValueChanged(this, &WKey::setCents); } void WKey::onConnectedControlChanged(double dParameter, double dValue) { Q_UNUSED(dParameter); + Q_UNUSED(dValue); // Enums are not currently represented using parameter space so it doesn't // make sense to use the parameter here yet. - setValue(dValue); + setValue(); } void WKey::setup(const QDomNode& node, const SkinContext& context) { @@ -31,23 +40,21 @@ void WKey::setup(const QDomNode& node, const SkinContext& context) { m_displayKey = context.selectBool(node, "DisplayKey", true); } -void WKey::setValue(double dValue) { - m_dOldValue = dValue; - mixxx::track::io::key::ChromaticKey key = - KeyUtils::keyFromNumericValue(dValue); - if (key != mixxx::track::io::key::INVALID) { +void WKey::setValue() { + m_key = KeyUtils::keyFromNumericValue(m_engineKey.get()); + m_diff_cents = m_engineKeyDistance.get(); + if (m_key != mixxx::track::io::key::INVALID) { // Render this key with the user-provided notation. QString keyStr = ""; if (m_displayKey) { - keyStr = KeyUtils::keyToString(key); + keyStr = KeyUtils::keyToString(m_key); } if (m_displayCents) { - double diff_cents = m_engineKeyDistance.get(); - int cents_to_display = static_cast(diff_cents * 100); + int cents_to_display = static_cast(m_diff_cents * 100); char sign = ' '; - if (diff_cents < 0) { + if (m_diff_cents < 0) { sign = '-'; - } else if (diff_cents > 0) { + } else if (m_diff_cents > 0) { sign = '+'; } keyStr.append(QString(" %1%2c").arg(sign).arg(qAbs(cents_to_display))); @@ -56,15 +63,73 @@ void WKey::setValue(double dValue) { } else { setText(""); } + update(); } void WKey::setCents() { - setValue(m_dOldValue); + setValue(); } void WKey::keyNotationChanged(double dKeyNotationValue) { Q_UNUSED(dKeyNotationValue); // NOTE: dKeyNotationValue is the index of the key notation type, NOT the // key itself, so we intentionally set the old value again to update the UI. - setValue(m_dOldValue); + setValue(); +} + +void WKey::paintEvent(QPaintEvent* event) { + if (m_key == mixxx::track::io::key::INVALID || !m_colorPaletteSettings.getKeyColorsEnabled()) { + WLabel::paintEvent(event); + return; + } + + ColorPalette keyColorPalette = m_colorPaletteSettings.getConfigKeyColorPalette(); + + QColor colorTop, colorBottom; + double splitPoint = 0; // 'height' of top color + if (m_diff_cents < 0) { + colorTop = KeyUtils::keyToColor(m_key, keyColorPalette); + colorBottom = KeyUtils::keyToColor(KeyUtils::scaleKeySteps(m_key, -1), keyColorPalette); + splitPoint = m_diff_cents + 1; + } else { + colorTop = KeyUtils::keyToColor(KeyUtils::scaleKeySteps(m_key, 1), keyColorPalette); + colorBottom = KeyUtils::keyToColor(m_key, keyColorPalette); + splitPoint = m_diff_cents; + } + + QStyleOption option; + option.initFrom(this); + QStylePainter painter(this); + + const QStyle* pStyle = style(); + const QRect contRect = pStyle->subElementRect(QStyle::SE_FrameContents, &option, this); + + const int rectWidth = 4; + const int splitHeight = static_cast(contRect.height() * splitPoint); + + painter.fillRect(contRect.left(), + contRect.top(), + rectWidth, + splitHeight, + colorTop); + + painter.fillRect(contRect.left(), + splitHeight + 1, + rectWidth, + contRect.height() - splitHeight, + colorBottom); + + painter.setPen(option.palette.text().color()); + + QString elidedText = option.fontMetrics.elidedText( + text(), + Qt::ElideRight, + width() - rectWidth); + + painter.drawText(rectWidth, + contRect.top(), + contRect.width() - rectWidth, + contRect.height(), + Qt::AlignCenter, + elidedText); } diff --git a/src/widget/wkey.h b/src/widget/wkey.h index 99215b1fa9e1..23723316eb7c 100644 --- a/src/widget/wkey.h +++ b/src/widget/wkey.h @@ -1,25 +1,31 @@ #pragma once -#include "widget/wlabel.h" #include "control/controlproxy.h" +#include "preferences/colorpalettesettings.h" +#include "proto/keys.pb.h" +#include "widget/wlabel.h" class WKey : public WLabel { Q_OBJECT public: - explicit WKey(const QString& group, QWidget* pParent = nullptr); + explicit WKey(const QString& group, UserSettingsPointer pConfig, QWidget* pParent = nullptr); void onConnectedControlChanged(double dParameter, double dValue) override; void setup(const QDomNode& node, const SkinContext& context) override; private slots: - void setValue(double dValue); + void setValue(); void keyNotationChanged(double dValue); void setCents(); private: - double m_dOldValue; + double m_diff_cents; bool m_displayCents; bool m_displayKey; ControlProxy m_keyNotation; ControlProxy m_engineKeyDistance; + ControlProxy m_engineKey; + ColorPaletteSettings m_colorPaletteSettings; + mixxx::track::io::key::ChromaticKey m_key; + void paintEvent(QPaintEvent* event) override; }; diff --git a/src/widget/wlibrary.cpp b/src/widget/wlibrary.cpp index 0566e91a916f..17773df5138b 100644 --- a/src/widget/wlibrary.cpp +++ b/src/widget/wlibrary.cpp @@ -55,9 +55,6 @@ void WLibrary::switchToView(const QString& name) { const auto lock = lockMutex(&m_mutex); //qDebug() << "WLibrary::switchToView" << name; - LibraryView* pOldLibrartView = dynamic_cast( - currentWidget()); - QWidget* pWidget = m_viewMap.value(name, nullptr); if (pWidget != nullptr) { LibraryView* pLibraryView = dynamic_cast(pWidget); @@ -68,8 +65,10 @@ void WLibrary::switchToView(const QString& name) { return; } if (currentWidget() != pWidget) { - if (pOldLibrartView) { - pOldLibrartView->saveCurrentViewState(); + LibraryView* pOldLibraryView = dynamic_cast( + currentWidget()); + if (pOldLibraryView) { + pOldLibraryView->saveCurrentViewState(); } //qDebug() << "WLibrary::setCurrentWidget" << name; setCurrentWidget(pWidget); diff --git a/src/widget/wlibrary.h b/src/widget/wlibrary.h index ebce2f45fa63..64c68cfe6f38 100644 --- a/src/widget/wlibrary.h +++ b/src/widget/wlibrary.h @@ -61,7 +61,8 @@ class WLibrary : public QStackedWidget, public WBaseWidget { } signals: - FocusWidget setLibraryFocus(FocusWidget newFocus); + FocusWidget setLibraryFocus(FocusWidget newFocus, + Qt::FocusReason focusReason = Qt::OtherFocusReason); public slots: // Show the view registered with the given name. Does nothing if the current diff --git a/src/widget/wlibrarysidebar.cpp b/src/widget/wlibrarysidebar.cpp index 95c9e82ec3cb..2d418e29c310 100644 --- a/src/widget/wlibrarysidebar.cpp +++ b/src/widget/wlibrarysidebar.cpp @@ -351,8 +351,8 @@ void WLibrarySidebar::focusInEvent(QFocusEvent* event) { QTreeView::focusInEvent(event); } -void WLibrarySidebar::selectIndex(const QModelIndex& index) { - //qDebug() << "WLibrarySidebar::selectIndex" << index; +void WLibrarySidebar::selectIndex(const QModelIndex& index, bool scrollToIndex) { + // qDebug() << "WLibrarySidebar::selectIndex" << index << scrollToIndex; if (!index.isValid()) { return; } @@ -365,8 +365,18 @@ void WLibrarySidebar::selectIndex(const QModelIndex& index) { expand(index.parent()); } setSelectionModel(pModel); + if (!scrollToIndex) { + // With auto-scroll enabled, setCurrentIndex() would scroll there. + // Disable (and re-enable if we don't want to scroll, e.g. when selecting + // AutoDJ from the menubar or during startup + setAutoScroll(false); + } setCurrentIndex(index); - scrollTo(index); + if (scrollToIndex) { + scrollTo(index); + } else { + setAutoScroll(true); + } } /// Selects a child index from a feature and ensures visibility diff --git a/src/widget/wlibrarysidebar.h b/src/widget/wlibrarysidebar.h index f74345c5f22a..a521df6e4d96 100644 --- a/src/widget/wlibrarysidebar.h +++ b/src/widget/wlibrarysidebar.h @@ -30,7 +30,7 @@ class WLibrarySidebar : public QTreeView, public WBaseWidget { bool isFeatureRootIndexSelected(LibraryFeature* pFeature); public slots: - void selectIndex(const QModelIndex&); + void selectIndex(const QModelIndex& index, bool scrollToIndex = true); void selectChildIndex(const QModelIndex&, bool selectItem = true); void slotSetFont(const QFont& font); @@ -38,7 +38,8 @@ class WLibrarySidebar : public QTreeView, public WBaseWidget { void rightClicked(const QPoint&, const QModelIndex&); void renameItem(const QModelIndex&); void deleteItem(const QModelIndex&); - FocusWidget setLibraryFocus(FocusWidget newFocus); + FocusWidget setLibraryFocus(FocusWidget newFocus, + Qt::FocusReason focusReason = Qt::OtherFocusReason); protected: bool event(QEvent* pEvent) override; diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp index 0dbe8dad1b55..71a00aa61609 100644 --- a/src/widget/wmainmenubar.cpp +++ b/src/widget/wmainmenubar.cpp @@ -169,6 +169,34 @@ void WMainMenuBar::initialize() { pLibraryMenu->addSeparator(); + QString searchHereTitle = tr("Search in Current View..."); + QString searchHereText = tr("Search for tracks in the current library view"); + auto* pSearchHere = new QAction(searchHereTitle, this); + pSearchHere->setShortcut(QKeySequence(m_pKbdConfig->getValue( + ConfigKey("[KeyboardShortcuts]", "LibraryMenu_SearchInCurrentView"), + tr("Ctrl+f")))); + pSearchHere->setShortcutContext(Qt::ApplicationShortcut); + pSearchHere->setStatusTip(searchHereText); + pSearchHere->setWhatsThis(buildWhatsThis(searchHereTitle, searchHereText)); + connect(pSearchHere, &QAction::triggered, this, &WMainMenuBar::searchInCurrentView); + pLibraryMenu->addAction(pSearchHere); + + QString searchAllTitle = tr("Search in Tracks Library..."); + QString searchAllText = + tr("Search in the internal track collection under \"Tracks\" in " + "the library"); + auto* pSearchAll = new QAction(searchAllTitle, this); + pSearchAll->setShortcut(QKeySequence(m_pKbdConfig->getValue( + ConfigKey("[KeyboardShortcuts]", "LibraryMenu_SearchInAllTracks"), + tr("Ctrl+Shift+F")))); + pSearchAll->setShortcutContext(Qt::ApplicationShortcut); + pSearchAll->setStatusTip(searchAllText); + pSearchAll->setWhatsThis(buildWhatsThis(searchAllText, searchAllText)); + connect(pSearchAll, &QAction::triggered, this, &WMainMenuBar::searchInAllTracks); + pLibraryMenu->addAction(pSearchAll); + + pLibraryMenu->addSeparator(); + QString createPlaylistTitle = tr("Create &New Playlist"); QString createPlaylistText = tr("Create a new playlist"); auto* pLibraryCreatePlaylist = new QAction(createPlaylistTitle, this); @@ -349,6 +377,20 @@ void WMainMenuBar::initialize() { pViewMenu->addSeparator(); + QString autoDJTitle = tr("Show Auto DJ"); + QString autoDJText = tr("Switch to the Auto DJ view."); + auto* pViewAutoDJ = new QAction(autoDJTitle, this); + // pViewAutoDJ->setShortcut(QKeySequence(m_pKbdConfig->getValue( + // ConfigKey("[KeyboardShortcuts]", "ViewMenu_ShowAutoDJ"), + // tr("Ctrl+9", "Menubar|View|Show Auto DJ")))); + pViewAutoDJ->setStatusTip(autoDJText); + pViewAutoDJ->setWhatsThis(buildWhatsThis(autoDJTitle, autoDJText)); + pViewAutoDJ->setCheckable(false); + connect(pViewAutoDJ, &QAction::triggered, this, &WMainMenuBar::showAutoDJ); + pViewMenu->addAction(pViewAutoDJ); + + pViewMenu->addSeparator(); + QString fullScreenTitle = tr("&Full Screen"); QString fullScreenText = tr("Display Mixxx using the full screen"); auto* pViewFullScreen = new QAction(fullScreenTitle, this); diff --git a/src/widget/wmainmenubar.h b/src/widget/wmainmenubar.h index 10c6e790fb99..913cd1918cb8 100644 --- a/src/widget/wmainmenubar.h +++ b/src/widget/wmainmenubar.h @@ -67,6 +67,9 @@ class WMainMenuBar : public QMenuBar { #ifdef __ENGINEPRIME__ void exportLibrary(); #endif + void searchInCurrentView(); + void searchInAllTracks(); + void showAutoDJ(); void menubarAutoHideChanged(bool autohide); void showAbout(); void showKeywheel(bool visible); diff --git a/src/widget/woverview.cpp b/src/widget/woverview.cpp index 3fa8e52171d8..283348b45efe 100644 --- a/src/widget/woverview.cpp +++ b/src/widget/woverview.cpp @@ -195,6 +195,8 @@ void WOverview::setup(const QDomNode& node, const SkinContext& context) { m_marks.connectSamplePositionChanged(this, &WOverview::onMarkChanged); m_marks.connectSampleEndPositionChanged(this, &WOverview::onMarkChanged); m_marks.connectVisibleChanged(this, &WOverview::onMarkChanged); + m_marks.connectTypeChanged(this, &WOverview::onMarkChanged); + m_marks.connectStatusChanged(this, &WOverview::onMarkChanged); QDomNode child = node.firstChild(); while (!child.isNull()) { @@ -485,7 +487,8 @@ void WOverview::updateCues(const QList &loadedCues) { int hotcueNumber = currentCue->getHotCue(); if ((currentCue->getType() == mixxx::CueType::HotCue || - currentCue->getType() == mixxx::CueType::Loop) && + currentCue->getType() == mixxx::CueType::Loop || + currentCue->getType() == mixxx::CueType::Jump) && hotcueNumber != Cue::kNoHotCue) { // Prepend the hotcue number to hotcues' labels QString newLabel = currentCue->getLabel(); @@ -995,6 +998,7 @@ void WOverview::drawMarks(QPainter* pPainter, const float offset, const float ga offset + static_cast(samplePosition) * gain, 0.0f, static_cast(width())); + float markStartPosition = markPosition; pMark->m_linePosition = markPosition; QLineF line; @@ -1010,15 +1014,22 @@ void WOverview::drawMarks(QPainter* pPainter, const float offset, const float ga QRectF rect; double sampleEndPosition = pMark->getSampleEndPosition(); if (sampleEndPosition > 0) { - const float markEndPosition = math_clamp( + float markEndPosition = math_clamp( offset + static_cast(sampleEndPosition) * gain, 0.0f, static_cast(width())); + // If it's a Jump cue, end is later than start for a forward jump, + // so swap positions in this case to get a valid rect for + // painting the range. + if (pMark->isJump() && + markEndPosition < markStartPosition) { + std::swap(markStartPosition, markEndPosition); + } if (m_orientation == Qt::Horizontal) { - rect.setCoords(markPosition, 0, markEndPosition, height()); + rect.setCoords(markStartPosition, 0, markEndPosition, height()); } else { - rect.setCoords(0, markPosition, width(), markEndPosition); + rect.setCoords(0, markStartPosition, width(), markEndPosition); } } @@ -1029,9 +1040,18 @@ void WOverview::drawMarks(QPainter* pPainter, const float offset, const float ga pPainter->drawLine(line); if (rect.isValid()) { - QColor loopColor = pMark->fillColor(); - loopColor.setAlphaF(0.5f); - pPainter->fillRect(rect, loopColor); + QColor rangeColor = pMark->fillColor(); + // Less opacity for inactive jump cues to not unnecessarily obstruct + // the waveform image. + // TODO Use played color for forward jumps to clarify we'll skip that region? + if (pMark->getType() == mixxx::CueType::Jump && pMark->isActive()) { + rangeColor.setAlphaF(0.5f); + } else { + rangeColor.setAlphaF(0.2f); + } + // TODO Instead of uniform painting, use different types of gradients + // loops, jump, intro/outro + pPainter->fillRect(rect, rangeColor); } if (!pMark->m_text.isEmpty()) { diff --git a/src/widget/wsearchlineedit.cpp b/src/widget/wsearchlineedit.cpp index 1d72026aa0b8..f97df536d811 100644 --- a/src/widget/wsearchlineedit.cpp +++ b/src/widget/wsearchlineedit.cpp @@ -122,12 +122,6 @@ WSearchLineEdit::WSearchLineEdit(QWidget* pParent, UserSettingsPointer pConfig) this, &WSearchLineEdit::slotClearSearch); - QShortcut* setFocusShortcut = new QShortcut(QKeySequence(tr("Ctrl+F", "Search|Focus")), this); - connect(setFocusShortcut, - &QShortcut::activated, - this, - &WSearchLineEdit::slotSetShortcutFocus); - // Set up a timer to search after a few hundred milliseconds timeout. This // stops us from thrashing the database if you type really fast. m_debouncingTimer.setSingleShot(true); @@ -217,31 +211,35 @@ void WSearchLineEdit::setup(const QDomNode& node, const SkinContext& context) { setPalette(pal); m_clearButton->setToolTip(tr("Clear input") + "\n" + - tr("Clear the search bar input field") + "\n\n" + - - tr("Shortcut") + ": \n" + - tr("Ctrl+Backspace")); + tr("Clear the search bar input field")); +} +void WSearchLineEdit::setupToolTip(const QString& searchInCurrentViewShortcut, + const QString& searchInAllTracksShortcut) { setBaseTooltip(tr("Search", "noun") + "\n" + - tr("Enter a string to search for") + "\n" + - tr("Use operators like bpm:115-128, artist:BooFar, -year:1990") + - "\n" + tr("For more information see User Manual > Mixxx Library") + - "\n\n" + - tr("Shortcuts") + ": \n" + - tr("Ctrl+F") + " " + - tr("Focus", "Give search bar input focus") + "\n" + - tr("Return") + " " + - tr("Trigger search before search-as-you-type timeout or" - "jump to tracks view afterwards") + + tr("Enter a string to search for.") + " " + + tr("Use operators like bpm:115-128, artist:BooFar, -year:1990.") + + "\n" + tr("See User Manual > Mixxx Library for more information.") + + "\n\n" + searchInCurrentViewShortcut + ": " + + tr("Focus/Select All (Search in current view)", + "Give search bar input focus") + + "\n" + searchInAllTracksShortcut + ": " + + tr("Focus/Select All (Search in \'Tracks\' library view)") + + "\n\n" + tr("Additional Shortcuts When Focused:") + "\n" + + tr("Return") + ": " + + tr("Trigger search before search-as-you-type timeout or " + "focus tracks view afterwards") + "\n" + - tr("Ctrl+Backspace") + " " + - tr("Clear input", "Clear the search bar input field") + "\n" + - tr("Ctrl+Space") + " " + + tr("Esc or Ctrl+Return") + ": " + + tr("Immediately trigger search and focus tracks view", + "Exit search bar and leave focus") + + "\n" + tr("Ctrl+Space") + ": " + tr("Toggle search history", "Shows/hides the search history entries") + "\n" + - tr("Delete or Backspace") + " " + tr("Delete query from history") + "\n" + - tr("Esc") + " " + tr("Exit search", "Exit search bar and leave focus")); + tr("Delete or Backspace") + + " (" + tr("in search history") + "): " + + tr("Delete query from history")); } void WSearchLineEdit::loadQueriesFromConfig() { @@ -311,15 +309,12 @@ QString WSearchLineEdit::getSearchText() const { if (isEnabled()) { DEBUG_ASSERT(!currentText().isNull()); QString text = currentText(); - QCompleter* pCompleter = completer(); - if (pCompleter && hasSelectedText()) { - if (text.startsWith(pCompleter->completionPrefix()) && - pCompleter->completionPrefix().size() == lineEdit()->cursorPosition()) { - // Search for the entered text until the user has accepted the - // completion by pressing Enter or changed/deselected the selected - // completion text with Right or Left key - return pCompleter->completionPrefix(); - } + QString completionPrefix; + if (hasCompletionAvailable(&completionPrefix)) { + // Search for the entered text until the user has accepted the + // completion by pressing Enter or changed/deselected the selected + // completion text with Right or Left key + return completionPrefix; } return text; } else { @@ -402,7 +397,12 @@ void WSearchLineEdit::keyPressEvent(QKeyEvent* keyEvent) { if (slotClearSearchIfClearButtonHasFocus()) { return; } - if (hasSelectedText()) { + if (keyEvent->modifiers() & Qt::ControlModifier) { + // Esc and Ctrl+Enter should have the same effect + emit setLibraryFocus(FocusWidget::TracksTable); + return; + } + if (hasCompletionAvailable()) { QComboBox::keyPressEvent(keyEvent); slotTriggerSearch(); return; @@ -799,11 +799,18 @@ void WSearchLineEdit::slotTextChanged(const QString& text) { m_saveTimer.start(kSaveTimeoutMillis); } -void WSearchLineEdit::slotSetShortcutFocus() { - if (hasFocus()) { +void WSearchLineEdit::setFocus(Qt::FocusReason focusReason) { + if (!hasFocus()) { + // selectAll will be called by setFocus - but only if hasFocus + // was false previously and focusReason is Tab, Backtab or Shortcut + QWidget::setFocus(focusReason); + } else if (focusReason == Qt::TabFocusReason || + focusReason == Qt::BacktabFocusReason || + focusReason == Qt::ShortcutFocusReason) { + // If this widget already had focus (which can happen when the user + // presses the shortcut key while already in the searchbox), + // we need to manually simulate this behavior instead. lineEdit()->selectAll(); - } else { - setFocus(Qt::ShortcutFocusReason); } } @@ -819,3 +826,17 @@ void WSearchLineEdit::slotSetFont(const QFont& font) { bool WSearchLineEdit::hasSelectedText() const { return lineEdit()->hasSelectedText(); } + +bool WSearchLineEdit::hasCompletionAvailable(QString* completionPrefix) const { + QCompleter* pCompleter = completer(); + QString prefix = pCompleter ? pCompleter->completionPrefix() : QString(); + if (!prefix.isEmpty() && hasSelectedText() && + lineEdit()->text().startsWith(prefix) && + prefix.size() == lineEdit()->cursorPosition()) { + if (completionPrefix) { + *completionPrefix = prefix; + } + return true; + } + return false; +} diff --git a/src/widget/wsearchlineedit.h b/src/widget/wsearchlineedit.h index 110230d00808..f83f76647f04 100644 --- a/src/widget/wsearchlineedit.h +++ b/src/widget/wsearchlineedit.h @@ -36,6 +36,10 @@ class WSearchLineEdit : public QComboBox, public WBaseWidget { ~WSearchLineEdit(); void setup(const QDomNode& node, const SkinContext& context); + void setupToolTip(const QString& searchInCurrentViewShortcut, + const QString& searchInAllTracksShortcut); + + void setFocus(Qt::FocusReason focusReason); protected: void resizeEvent(QResizeEvent*) override; @@ -47,7 +51,8 @@ class WSearchLineEdit : public QComboBox, public WBaseWidget { signals: void search(const QString& text); - FocusWidget setLibraryFocus(FocusWidget newFocusWidget); + FocusWidget setLibraryFocus(FocusWidget newFocusWidget, + Qt::FocusReason focusReason = Qt::OtherFocusReason); public slots: void slotSetFont(const QFont& font); @@ -65,7 +70,6 @@ class WSearchLineEdit : public QComboBox, public WBaseWidget { void slotDeleteCurrentItem(); private slots: - void slotSetShortcutFocus(); void slotTextChanged(const QString& text); void slotIndexChanged(int index); @@ -92,6 +96,7 @@ class WSearchLineEdit : public QComboBox, public WBaseWidget { void deleteSelectedListItem(); void triggerSearchDebounced(); bool hasSelectedText() const; + bool hasCompletionAvailable(QString* completionPrefix = nullptr) const; inline int findCurrentTextIndex() { return findData(currentText().trimmed(), Qt::DisplayRole); diff --git a/src/widget/wspinnyglsl.cpp b/src/widget/wspinnyglsl.cpp index 6199f848e1de..3515e78a96c3 100644 --- a/src/widget/wspinnyglsl.cpp +++ b/src/widget/wspinnyglsl.cpp @@ -84,7 +84,11 @@ void WSpinnyGLSL::updateVinylSignalQualityImage( 0, m_iVinylScopeSize, m_iVinylScopeSize, +#if defined(GL_RED) GL_RED, +#else + GL_RED_EXT, +#endif GL_UNSIGNED_BYTE, data); m_qTexture.release(); diff --git a/tools/README b/tools/README index def2a3d4040b..3055fbed113c 100644 --- a/tools/README +++ b/tools/README @@ -20,3 +20,11 @@ cd build && gcc ../tools/dummy_hid_device.c -lhidapi-hidraw -o dummy_hid_device # Allow the created hidraw device to be accessed by the user. You may also set the write udev rules. Finally, you can also run Mixxx as root, but that's not recommended. sudo chown "$USER" "$(ls -1t /dev/hidraw* | head -n 1)" ``` + +## Traktor S4 Mk3 Screen drawing + +This small program can be used directly to draw arbitrary rectangles on the Traktor S4 Mk3 screens. It may also be useful for one to perform tests on top of the existing reversed engineered protocol. + +```sh +cd build && gcc ../tools/traktor_s4_mk3_screen_test.c `pkg-config --cflags --libs libusb-1.0` -o traktor_s4_mk3_screen_test && ./traktor_s4_mk3_screen_test +``` diff --git a/tools/android_buildenv.sh b/tools/android_buildenv.sh new file mode 100755 index 000000000000..0d2aafc9d1b7 --- /dev/null +++ b/tools/android_buildenv.sh @@ -0,0 +1,139 @@ +#!/usr/bin/env bash +# Ignored in case of a source call, but needed for bash specific sourcing detection + +set -eo pipefail + +# shellcheck disable=SC2091 +if [ -z "${GITHUB_ENV}" ] && ! $(return 0 2>/dev/null); then + echo "This script must be run by sourcing it:" + echo "source $0 $*" + exit 1 +fi + +realpath() { + OLDPWD="${PWD}" + cd "$1" || exit 1 + pwd + cd "${OLDPWD}" || exit 1 +} + +# Get script file location, compatible with bash and zsh +if [ -n "$BASH_VERSION" ]; then + THIS_SCRIPT_NAME="${BASH_SOURCE[0]}" +elif [ -n "$ZSH_VERSION" ]; then + # shellcheck disable=SC2296 + THIS_SCRIPT_NAME="${(%):-%N}" +else + THIS_SCRIPT_NAME="$0" +fi + +HOST_ARCH=$(uname -m) # One of x86_64, arm64, i386, ppc or ppc64 + +if [ "$HOST_ARCH" == "x86_64" ]; then + if [ -n "${BUILDENV_RELEASE}" ]; then + echo "ERROR: No release VCPKG for Android yet!" + exit 1 + else + VCPKG_TARGET_TRIPLET="arm64-android" + BUILDENV_BRANCH="2.7" + BUILDENV_NAME="mixxx-deps-2.7-arm64-android-9dcfaf7" + BUILDENV_SHA256="0821e7d4f6b989ed5acc3c9a8dafa00f479d9d8bfc8dea9f9b512816070c9bba" + fi +else + echo "ERROR: Unsupported architecture detected: $HOST_ARCH" + echo "Please refer to the following guide to manually build the vcpkg environment:" + echo "https://github.com/mixxxdj/mixxx/wiki/Compiling-dependencies-for-android" + exit 1 +fi + +BUILDENV_URL="https://downloads.mixxx.org/dependencies/${BUILDENV_BRANCH}/Linux/${BUILDENV_NAME}.zip" +MIXXX_ROOT="$(realpath "$(dirname "$THIS_SCRIPT_NAME")/..")" +ANDROID_API=35 +ANDROID_VERSION=35.0.0 +ANDROID_NDK=27.2.12479018 + +[ -z "$BUILDENV_BASEPATH" ] && BUILDENV_BASEPATH="${MIXXX_ROOT}/buildenv" + +case "$1" in + name) + if [ -n "${GITHUB_ENV}" ]; then + echo "BUILDENV_NAME=$BUILDENV_NAME" >> "${GITHUB_ENV}" + else + echo "$BUILDENV_NAME" + fi + ;; + + setup) + sudo apt-get update && sudo apt-get install -y --no-install-recommends -- \ + ccache \ + cmake \ + make \ + build-essential \ + '^libxcb.*-dev' \ + autoconf \ + autoconf-archive \ + bison \ + flex \ + google-android-cmdline-tools-13.0-installer \ + libasound2-dev \ + libegl1-mesa-dev \ + libghc-resolv-dev \ + libglu1-mesa-dev \ + libltdl-dev \ + libx11-xcb-dev \ + libxi-dev \ + libxkbcommon-dev \ + libxkbcommon-x11-dev \ + libxrender-dev \ + linux-libc-dev \ + openjdk-17-jdk \ + pkg-config \ + python3-jinja2 + (yes | sudo sdkmanager --licenses) || true + sudo sdkmanager "platforms;android-${ANDROID_API}" "platform-tools" "build-tools;${ANDROID_VERSION}" "ndk;${ANDROID_NDK}" + ANDROID_SDK=/usr/lib/android-sdk + ANDROID_NDK_HOME=/usr/lib/android-sdk/ndk/${ANDROID_NDK} + JAVA_HOME=$(find /usr/lib/jvm -maxdepth 1 -name 'java-17-openjdk*') + export ANDROID_SDK + export ANDROID_NDK_HOME + export JAVA_HOME + BUILDENV_PATH="${BUILDENV_BASEPATH}/${BUILDENV_NAME}" + + export BUILDENV_NAME + export BUILDENV_BASEPATH + export BUILDENV_URL + export BUILDENV_SHA256 + export MIXXX_VCPKG_ROOT="${BUILDENV_PATH}" + export VCPKG_TARGET_TRIPLET="${VCPKG_TARGET_TRIPLET}" + + echo_exported_variables() { + echo "ANDROID_SDK=${ANDROID_SDK}" + echo "ANDROID_NDK_HOME=${ANDROID_NDK_HOME}" + echo "JAVA_HOME=${JAVA_HOME}" + echo "BUILDENV_NAME=${BUILDENV_NAME}" + echo "BUILDENV_BASEPATH=${BUILDENV_BASEPATH}" + echo "BUILDENV_URL=${BUILDENV_URL}" + echo "BUILDENV_SHA256=${BUILDENV_SHA256}" + echo "MIXXX_VCPKG_ROOT=${MIXXX_VCPKG_ROOT}" + echo "VCPKG_TARGET_TRIPLET=${VCPKG_TARGET_TRIPLET}" + } + + if [ -n "${GITHUB_ENV}" ]; then + echo_exported_variables >> "${GITHUB_ENV}" + elif [ "$1" != "--profile" ]; then + echo "" + echo "Exported environment variables:" + echo_exported_variables + echo "You can now configure cmake from the command line in an EMPTY build directory via:" + echo "cmake -DCMAKE_TOOLCHAIN_FILE=${MIXXX_VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake -DCMAKE_SYSTEM_NAME=Android ${MIXXX_ROOT}" + fi + ;; + *) + echo "Usage: source android_buildenv.sh [options]" + echo "" + echo "options:" + echo " help Displays this help." + echo " name Displays the name of the required build environment." + echo " setup Setup the build environment variables for download during CMake configuration and install the build environment." + ;; +esac diff --git a/tools/clang_format.py b/tools/clang_format.py index 16076470c916..baeface76d29 100755 --- a/tools/clang_format.py +++ b/tools/clang_format.py @@ -49,7 +49,7 @@ def run_clang_format_on_lines(rootdir, file_to_format, stylepath=None): ", ".join("{}-{}".format(*x) for x in file_to_format.lines), ) - filename = os.path.join(rootdir, file_to_format.filename) + filename = os.path.join(rootdir, file_to_format.filename).strip() cmd = [ "clang-format", "--style=file", diff --git a/tools/flake.lock b/tools/flake.lock new file mode 100644 index 000000000000..552b01ade3a7 --- /dev/null +++ b/tools/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1743080597, + "narHash": "sha256-UQwJgAe80hyILxk8sNSH2DCGDpHTYjtzld8uZv0nUes=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "2332f3658f3f9c0b7c5c8357329c0737d5757331", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "release-24.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs", + "utils": "utils" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/tools/flake.nix b/tools/flake.nix new file mode 100644 index 000000000000..e6f33efa10c3 --- /dev/null +++ b/tools/flake.nix @@ -0,0 +1,86 @@ +{ + inputs = { + utils.url = "github:numtide/flake-utils"; + nixpkgs.url = "github:NixOS/nixpkgs/release-24.11"; + }; + outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system: + let + pkgs = nixpkgs.legacyPackages.${system}; + qt6Env = with pkgs.qt6; env "qt-custom-${qtbase.version}" + [ + qt5compat + qtshadertools + qtsvg + qtdeclarative + ]; + in + { + devShell = pkgs.mkShell { + buildInputs = with pkgs; [ + # Building Mixxx + qt6Env + cmake + chromaprint + glib + libebur128 + fftw + flac + lame + libogg + libvorbis + portaudio + portmidi + protobuf + rubberband + libsndfile + soundtouch + taglib + upower + openssl + microsoft-gsl + kdePackages.qtkeychain + hidapi + wavpack + libid3tag + libusb1 + libmad + libopus + opusfile + libshout + lilv + libxkbcommon + sqlite + gtest + clang-tools + mp4v2 + vulkan-loader + xorg.libX11 + ffmpeg + libmodplug + vamp-plugin-sdk + ccache + libGLU + pcre + libselinux + utillinux + libdjinterop + libkeyfinder + cups + lv2 + + # Git pre-commits + pre-commit + nodejs + rustup + stdenv.cc.cc + ]; + shellHook = '' + pre-commit install + pre-commit install -t pre-push + # Needed for clang-format pre-commit because it downloads and executes its own clang-format elf-binary + export LD_LIBRARY_PATH="${pkgs.stdenv.cc.cc.lib}/lib/:$LD_LIBRARY_PATH" + ''; + }; + } + ); +} diff --git a/tools/traktor_s4_mk3_screen_test.c b/tools/traktor_s4_mk3_screen_test.c new file mode 100644 index 000000000000..cf14fd3833a2 --- /dev/null +++ b/tools/traktor_s4_mk3_screen_test.c @@ -0,0 +1,110 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +#define VENDOR_ID 0x17cc +#define PRODUCT_ID 0x1720 +#define IN_EPADDR 0x00 +#define OUT_EPADDR 0x03 + +static const uint8_t header_data[] = { + 0x84, 0x0, 0x0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // Draw offset (y=0, x=0) + 0x1, + 0x40, + 0x0, + 0xf0, // Draw dimenssion (width=320, height=240) +}; +static const uint8_t footer_data[] = { + 0x40, 0x00, 0x00, 0x00}; + +int main(int argc, char** argv) { + libusb_context* context; + int transferred; + + if (argc != 7) { + fprintf(stderr, "Usage: %s \n", *argv); + return -1; + } + + libusb_init(&context); + + libusb_device_handle* handle = libusb_open_device_with_vid_pid( + context, VENDOR_ID, PRODUCT_ID); + + if (!handle) { + fprintf(stderr, "Unable to open USB Bulk device\n"); + return -1; + } + + uint8_t screen_idx = atoi(argv[1]); + + if (screen_idx != 0 && screen_idx != 1) { + fprintf(stderr, "Invalid screen ID %d\n", screen_idx); + return -1; + } + + uint16_t x = atoi(argv[2]); + uint16_t y = atoi(argv[3]); + uint16_t width = atoi(argv[4]); + uint16_t height = atoi(argv[5]); + uint16_t color = strtol(argv[6], NULL, 2); + + uint8_t* data = malloc(width * height * sizeof(uint16_t) + + sizeof(header_data) + sizeof(footer_data)); + uint8_t* header = data; + + memcpy(header, header_data, sizeof(header_data)); + + header[2] = screen_idx; + + header[8] = x >> 8; + header[9] = x & 0xff; + header[10] = y >> 8; + header[11] = y & 0xff; + + header[12] = width >> 8; + header[13] = width & 0xff; + header[14] = height >> 8; + header[15] = height & 0xff; + + printf("draw x=%d,y=%d,width=%d,height=%d with color %x\n", x, y, width, height, color); + + size_t payload_size = width * height * sizeof(uint16_t) + + sizeof(header_data) + sizeof(footer_data); + uint8_t* payload = data + sizeof(header_data); + uint8_t* footer = payload + width * height * sizeof(uint16_t); + + for (int px = 0; px < width * height; px++) { + payload[px * sizeof(uint16_t)] = color >> 8; + payload[px * sizeof(uint16_t) + 1] = color & 0xff; + } + + memcpy(footer, footer_data, sizeof(footer_data)); + + footer[2] = screen_idx; + + clock_t start, end; + double cpu_time_used; + + start = clock(); + int ret = libusb_bulk_transfer(handle, OUT_EPADDR, data, payload_size, &transferred, 0); + end = clock(); + cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC; + + if (ret < 0) { + fprintf(stderr, "Unable to send to USB Bulk device\n"); + + } else { + fprintf(stderr, "Sent %d bytes in %f ms\n", transferred, cpu_time_used); + } + + libusb_close(handle); + libusb_exit(context); + + return 0; +}